User salt.racer - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T14:23:18Zhttp://stackoverflow.com/feeds/user/757http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1106078/rails-restful-routing-and-pluralization0Rails, RESTful routing, and pluralizationsalt.racer2009-07-09T19:48:17Z2009-11-01T20:58:10Z
<p>I am struggling with the pluralization of the RESTful route generation in Rails 2.3.2.</p>
<p>Specifically, I have a resource called <code>sitestatus</code>. This resource really is uncountable (deer is deer, not deers). When I specify it as uncountable in an intializer, I get some helpers, but the <code>sitestatuses_path</code> is unavailable (which would make sense).</p>
<p>So, in a gesture to conformity, I have allowed <code>sitestatus</code> to be countable. So now, Rails pluralizes <code>sitestatus</code> to <code>sitestatuses</code> (not too horrible), but it insists on <em>also</em> singularizing it to <code>sitestatu</code> (missing the 's', hilarious and horrible at the same time).</p>
<p>So, I whipped out my bigger hammer and added this code to the intializer:</p>
<pre><code>ActiveSupport::Inflector.inflections do |inflect|
inflect.plural "sitestatus", "sitestatuses"
inflect.singular "sitestatus", "sitestatus"
end
</code></pre>
<p>(Note: I tried using <code>irregular</code> and it didn't work right)</p>
<p>Doing this gives me the expected results in the console when I <code>"sitestatus".pluralize</code>, but when I attempt to make a call to <code>sitestatuses_path</code> in my view I get </p>
<pre><code>undefined local variable or method 'sitestatuses_path'
</code></pre>
<p>When I load up ActionController::UrlHelper in the console and call <code>sitestatus_path(123)</code> I get <code>sitestatus/123</code> as I would expect. However, when I call <code>sitestatuses_path</code> I get </p>
<pre><code>undefined method 'sitestatuses_path' for #<Object...
</code></pre>
<p>This name is the name of the model and the controller and it really is the only logical name for both as it lines up with the business name for the object perfectly.</p>
<p>What am I missing?</p>
http://stackoverflow.com/questions/413848/integrating-oulook-exchange-tasks-with-linux-based-rails0Integrating Oulook/Exchange Tasks with Linux-based Railssalt.racer2009-01-05T17:21:27Z2009-10-22T14:53:45Z
<p>Is it possible to integrate MS Outlook/Exchange tasks with Rails? I know how to send emails with Rails, but that isn't using anything "special" about exchange, just pointing it at the server.</p>
<p>What is "special" about an Outlook Task and how I can I create/read/update/delete them from Rails. (Even a subset of CRUD would be great.)</p>
<p>PS. I am on a linux based rails system, so solutions that rely on a windows-only function won't work for me.</p>
http://stackoverflow.com/questions/390188/c-telnet-library0C# Telnet Librarysalt.racer2008-12-23T21:59:10Z2009-10-08T14:56:33Z
<p>Is there a good, free telnet library available for C# (not ASP .NET)? I have found a few on google, but they all have one issue or another (don't support login/password, don't support a scripted mode).</p>
<p>I am assuming that MS still has not included a telnet library as part of .NET v3.5 as I couldn't find it if it was. I would loooooove to be wrong though.</p>
http://stackoverflow.com/questions/1480428/managing-rails-migrations-for-different-branches-on-the-same-machine0Managing Rails Migrations for different branches on the same machinesalt.racer2009-09-26T04:21:40Z2009-09-26T04:42:38Z
<p>I'm a one-man-band at the company I work for. I develop a Rails application for internal use within the company. Since the beginning of the project I have used SVN for source control and done most, but not all, development in trunk. Occasionally, when I have had very significant changes to make, I have branched and made the changes merging back in when done. All very typical.</p>
<p>However, none of those "significant changes" that I have had to make have ever touched the database migrations. They have always been view/controller stuff.</p>
<p>In this situation, with one development box, how do I play around with migrations and various database changes that I may or may not keep? I don't want to have to remember to revert all the migrations back to the beginning of the branch before I throw the branch out if it doesn't work.</p>
<p>I have considered setting up special development environments and databases (<code>app_branch</code> instead of <code>app_development</code>) but that seems to work strongly against the notion of "easy branching" that experimental development tends to rely on.</p>
<p>Are there best practices for this situation? What are others out there doing in this situation?</p>
http://stackoverflow.com/questions/28999/favorite-ide-feature3Favorite IDE feature?salt.racer2008-08-26T20:08:27Z2009-09-16T00:09:09Z
<p>What is your favorite feature of your IDE/code editor? What makes you like it so much? Is there a feature that it doesn't have that would be a strong enough pull to cause you to switch IDE's (code editors)?</p>
http://stackoverflow.com/questions/21574/what-is-the-difference-between-ruby-1-8-and-ruby-1-98What is the difference between Ruby 1.8 and Ruby 1.9salt.racer2008-08-22T01:32:54Z2009-09-15T09:31:30Z
<p>I'm not clear on the differences between the "current" version of Ruby (1.8) and the "new" version (1.9). Is there an "easy" or a "simple" explanation of the differences and why it is so different?</p>
http://stackoverflow.com/questions/699492/using-google-gears-with-rails1Using Google Gears with Railssalt.racer2009-03-30T23:44:50Z2009-07-31T02:23:55Z
<p>I have been tasked with exploring the possibility of offline access of my webapp. What are people's experiences using google gears with rails? I am aware of the <a href="http://gearsonrails.googlecode.com" rel="nofollow">gearsonrails</a> project, but it has some really strange constructs and doesn't appear to be under significant, active development.</p>
<p>Are there other options? Has anyone added gears to their existing rails app successfully? Is this super-painful?</p>
http://stackoverflow.com/questions/1169819/iphone-web-application-development3iPhone web application developmentsalt.racer2009-07-23T05:46:53Z2009-07-23T11:14:01Z
<p>I would like to create a website that is iPhone-friendly ... that looks like an iPhone app, but is really on the server, just like Gmail for iPhone. </p>
<p>My understanding is that this is how Apple originally had planned for application development to happen. However, I can't find documentation on how to do this. Is there a link or something?</p>
http://stackoverflow.com/questions/1106078/rails-restful-routing-and-pluralization/1106833#11068330Answer by salt.racer for Rails, RESTful routing, and pluralizationsalt.racer2009-07-09T22:47:27Z2009-07-09T22:47:27Z<p>Okay, as it turns out I didn't need to use the inflector. Rails was already doing the right thing with respect to the word <code>sitestatus</code>.</p>
<p>There were a couple problems and a couple solutions that I needed to employ.</p>
<p>Problem 1: I was using <code>map.resources :sitestatus</code>, not <code>map.resources :sitestatuses</code>. The "s" at the end of the word was making Rails think that it was already pluralized as it should be. Thus the funny <code>sitestatu_path</code> helpers.</p>
<p>Solution: Pluralize :sitestatus to :sitestatuses.</p>
<p>This created two problems:</p>
<p>Problem A: Rails now assumed that the controller was named "Sitestatuses" which it is not.
Solution A: Use the <code>:controller</code> hash_hey provided by the Rails router to rename the controller.</p>
<p>Problem B: Rails assumed that the url path that I wanted generated should be <code>/sitestatuses</code>, which it should not be.
Solution B: Use the <code>:as</code> hash_key to rename the url generated.</p>
<p>Now, everything works perfectly.</p>
http://stackoverflow.com/questions/990895/linktoremote-not-updating-div/991195#9911950Answer by salt.racer for link_to_remote not updating divsalt.racer2009-06-13T18:10:16Z2009-06-13T18:10:16Z<p>I have found it helpful to specify the div to be updated in an :update in the controller action.</p>
http://stackoverflow.com/questions/967484/does-linkto-have-before-and-or-after-like-linktoremote1Does link_to have :before and/or :after like link_to_remotesalt.racer2009-06-08T23:12:36Z2009-06-09T06:01:32Z
<p>I am converting some of my <code>link_to_remote</code> generators with <code>link_to</code> as the AJAX calls were creating issues with my browser back button. (Silly noob mistakes!)</p>
<p>My application has many pages that have a long wait cycle (for various reasons out of my control). I have been relying on the link_to_remote's ability to use <code>:before</code> and <code>:after</code> calls to display a spinner while the user is waiting. Does <code>link_to</code> have something similar? I was assuming to just toss the calls in like I was with <code>link_to_remote</code> ... but that really only makes sense for the <code>:before</code> call (and it doesn't seem to be working). What are my other options at this point?</p>
http://stackoverflow.com/questions/105721/how-to-move-to-end-of-line-in-vim3How to move to end of line in vimsalt.racer2008-09-19T21:19:47Z2009-05-31T08:34:31Z
<p>I am somewhat clumsy in my vi knowledge. I know how to generally move around in command mode, specifically, jumping to lines, etc. But what is the command to jump to the end of the line that I am currently on?</p>
http://stackoverflow.com/questions/885777/rails-and-mvc-metaphors3Rails and MVC metaphorssalt.racer2009-05-20T01:24:38Z2009-05-25T14:28:44Z
<p>I am working on re-writing my application based on things that I learned at RailsConf 2009. I understand that the Model, Controller and View relate to each other. However, one thing that I have struggled with is the "proper" level for a controller.</p>
<p>If the Rails Model maps (roughly) to a database table...
And if the Rails View maps (roughly) to a browser page...</p>
<p>What does the Rails Controller map to?</p>
http://stackoverflow.com/questions/904474/why-does-this-comment-create-a-compile-error-on-ruby-on-rails/904688#9046882Answer by salt.racer for why does this comment create a compile error on Ruby on Rails?salt.racer2009-05-24T21:20:42Z2009-05-24T21:20:42Z<p>The proper way to comment a <code><%= %></code> tag in Ruby/Rails is <code><%#= %></code> ... place the comment sign before the equals sign. Then everything will work like a charm.</p>
http://stackoverflow.com/questions/749477/testing-models-with-multiple-database-connections-in-rails-using-activerecord/754745#7547451Answer by salt.racer for Testing models with multiple database connections in Rails using ActiveRecordsalt.racer2009-04-16T04:22:53Z2009-04-16T04:22:53Z<p>In my experience, once the connection is established you can treat the model just like any other model. Since you are just consuming the data that will simplify some of the testing as you wont need to test for data validations.</p>
<p>Obviously because Rails is talking to two different databases from two different models, you won't be able to do joins between the databases and so there will be nothing to test there either.</p>
<p>So, to answer the question: what is the best way to test a model that is using a second database? I would say, exactly the same way that you would test it if it was your only database.</p>
<p>I find that in my models that wrap my legacy databases I have to add some special tie in code that makes things a little more "Rails-y" and makes the view and controller code look like there are <code>has_one</code> and <code>belongs_to</code> type code in there. I do have tests that exercise those custom methods.</p>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/706125/rails-not-loading-environment-rb-correctly0Rails not loading environment.rb correctlysalt.racer2009-04-01T15:44:15Z2009-04-01T19:48:43Z
<p>I recently upgraded my application from Rails version 2.1.2 to version 2.2.2. It was tested in on development and on my staging system. When I moved to production it fails to load all the way through the environment.rb file. (Why, oh why, is it always on production!?!)</p>
<p>Below is my environment.rb file</p>
<pre><code># Be sure to restart your web server when you modify this file.
# Uncomment below to force Rails into production mode when
# you don't control web/app server and can't set it the proper way
# ENV['RAILS_ENV'] ||= 'production'
# Specifies gem version of Rails to use when vendor/rails is not present
#RAILS_GEM_VERSION = '2.1.0' unless defined? RAILS_GEM_VERSION
RAILS_GEM_VERSION = '2.2.2' unless defined? RAILS_GEM_VERSION
puts "loading rails..."
# Bootstrap the Rails environment, frameworks, and default configuration
require File.join(File.dirname(__FILE__), 'boot')
puts "require boot file"
require 'socket'
puts "require socket"
Rails::Initializer.run do |config|
puts "inside config section"
# Settings in config/environments/* take precedence over those specified here
# Skip frameworks you're not going to use (only works if using vendor/rails)
# config.frameworks -= [ :action_web_service, :action_mailer ]
# Only load the plugins named here, by default all plugins in vendor/plugins are loaded
# config.plugins = %W( exception_notification ssl_requirement )
# Add additional load paths for your own custom dirs
# config.load_paths += %W( #{RAILS_ROOT}/extras )
# Force all environments to use the same logger level
# (by default production uses :info, the others :debug)
# config.log_level = :debug
# Use the database for sessions instead of the file system
# (create the session table with 'rake db:sessions:create')
config.action_controller.session_store = :active_record_store
puts "setting session store type"
# Use SQL instead of Active Record's schema dumper when creating the test database.
# This is necessary if your schema can't be completely dumped by the schema dumper,
# like if you have constraints or database-specific column types
# config.active_record.schema_format = :sql
# Activate observers that should always be running
# config.active_record.observers = :cacher, :garbage_collector
# Make Active Record use UTC-base instead of local time
# config.active_record.default_timezone = :utc
#config.gem "will_paginate", :source => "http://gems.rubyforge.org"
#config.gem "packet"
#config.gem "chronic"
#config.gem "geonames"
#config.gem "mysql"
#config.gem "activerecord-odbc-adapter"
# Action Mailer configuration - from page 567-568 of the Agile Development book
# config.action_mailer.delivery_method = :smtp
#
config.action_mailer.smtp_settings = {
:address => "smtp.redacted.com",
:port => "25",
:domain => "redacted.com"
# # :authentication => :plain
# # :authentication => :login,
# # :user_name => "suisvc",
# # :password => "L@keh0use"
}
puts "setting smtp settings"
# See Rails::Configuration for more options
end
puts "outside config section ... before inflectors"
# Add new inflection rules using the following format
# (all these examples are active by default):
ActiveSupport::Inflector.inflections do |inflect|
# inflect.plural /^(ox)$/i, '\1en'
# inflect.singular /^(ox)en/i, '\1'
# inflect.irregular 'person', 'people'
# inflect.uncountable %w( fish sheep )
inflect.uncountable %w( sid fcc )
end
puts "after inflectors"
# Add new mime types for use in respond_to blocks:
# Mime::Type.register "text/richtext", :rtf
# Mime::Type.register "application/x-mobile", :mobile
# Include your application configuration below
require 'will_paginate'
puts "require will paginate"
# insert at top of ActiveRecord::Base.rb
# Indicates whether field names should be lowercased for legacy databse fields.
# If true, the field Product_Name will be +product_name+. If false, it will remain +Product_Name+.
# This is false, by default.
#cattr_accessor :downcase_legacy_field_names, :instance_writer => false
#@@downcase_legacy_field_names = false
# insert into column_methods_hash of ActiveRecord::Base.rb
# attr_final = downcase_legacy_field_names ? attr.to_s.downcase : attr
puts "here comes the monkey patch"
module ActiveRecord
class Base
# Indicates whether field names should be lowercased for legacy databse fields.
# If true, the field Product_Name will be +product_name+. If false, it will remain +Product_Name+.
# This is false, by default.
cattr_accessor :downcase_legacy_field_names, :instance_writer => false
@@downcase_legacy_field_names = false
end
end
puts "monkey patch part 2"
# set all accessor methods to lowercase (underscore)
# add set_columns_to_lower to each model that needs it
class << ActiveRecord::Base
# Returns a hash of all the methods added to query each of the columns in the table with the name of the method as the key
# and true as the value. This makes it possible to do O(1) lookups in respond_to? to check if a given method for attribute
# is available.
def column_methods_hash #:nodoc:
@dynamic_methods_hash ||= column_names.inject(Hash.new(false)) do |methods, attr|
attr_final = downcase_legacy_field_names ? attr.to_s.downcase : attr
attr_name = attr_final
methods[attr_final.to_sym] = attr_name
methods["#{attr_final}=".to_sym] = attr_name
methods["#{attr_final}?".to_sym] = attr_name
methods["#{attr_final}_before_type_cast".to_sym] = attr_name
methods
end
end
# adapted from: http://wiki.rubyonrails.org/rails/pages/HowToUseLegacySchemas
def downcase_legacy_field_methods
column_names.each do |name|
next if name == primary_key
a = name.to_s.underscore
define_method(a.to_sym) do
read_attribute(name)
end
define_method("#{a}=".to_sym) do |value|
write_attribute(name, value)
end
define_method("#{a}?".to_sym) do
self.send("#{name}?".to_sym)
end
end
end
end
puts "monkey patch part 3"
ActiveRecord::Base.downcase_legacy_field_names = true
puts "monkey patch part 4"
module ActiveSupport
module Inflector
def textize(str)
str.to_s.gsub(/'/, '').downcase
#gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
#gsub(/([a-z\d])([A-Z])/,'\1_\2').
#tr("-", "_").
#downcase
end
end
end
puts "monkey patch part 5"
module ActiveSupport #:nodoc:
module CoreExtensions #:nodoc:
module String #:nodoc:
module Inflections
def textize
Inflector.textize(self)
end
end
end
end
end
###################################################################
### Code moved to the specific environment files.
### This way the schema gets reloaded on a deploy
###################################################################
## Establishes connections for the root classes of the various databases that
## must be connected to for SUI.
puts "load the database if we are in test mode"
if RAILS_ENV == "test" then
puts "if I see this and I'm not loading test, we have a problem"
Ird.load_database
end
puts "setting up the execption notifier"
ExceptionNotifier.exception_recipients = %w(me@redacted.com)
if RAILS_ENV == "Production"
ExceptionNotifier.sender_address = %("SUI Service" <service@redacted.com>)
ExceptionNotifier.email_prefix = "[SUI ERROR] "
else
ExceptionNotifier.sender_address = %("SUI #{RAILS_ENV.to_s.humanize} Service" <service@redacted.com>)
ExceptionNotifier.email_prefix = "[#{RAILS_ENV.to_s.humanize}: SUI ERROR] "
end
puts "local_ip function"
def local_ip
orig, Socket.do_not_reverse_lookup = Socket.do_not_reverse_lookup, true
UDPSocket.open do |s|
s.connect '64.233.187.99', 1
s.addr.last
end
ensure
Socket.do_not_reverse_lookup = orig
end
puts "I am located at:#{local_ip}:"
puts "environment.rb is loaded"
</code></pre>
<p>If I set the rails gem to be used to version 2.1.2 everything loads and all the <code>puts</code> statements print as expected. When I change the gem version to 2.2.2 the last statement that I see printed is "<code>setting smtp settings</code>".</p>
<p>When I move the <code>Rails::Initializer do |config|</code> section to the bottom it fails in ways worse than where it is right now.</p>
<p>The ruby version that is loaded on the system is Ruby 1.8.6 patchlevel 111. It is running on RHEL5-64bit.</p>
<p>I'm stumped. Ideas? Suggestions?</p>
http://stackoverflow.com/questions/687758/understanding-ruby-on-rails-render-times4Understanding Ruby on Rails render timessalt.racer2009-03-26T22:12:15Z2009-03-27T07:11:46Z
<p>I am working on an "optimization" on my application and I am trying to understand the output that rails (version 2.2.2) gives at the end of the render.</p>
<p>Here is the "old" way:</p>
<pre><code>Rendered user/_old_log (25.7ms)
Completed in 466ms (View: 195, DB: 8) | 200 OK
</code></pre>
<p>And the "new" way:</p>
<pre><code>Rendered user/_new_log (48.6ms)
Completed in 337ms (View: 192, DB: 33) | 200 OK
</code></pre>
<p>These queries were exactly the same, the difference is the old way is parsing log files while the new way is querying the database log table.</p>
<p>The actual speed of the page is not the issue (the user understands that this is a slow request) ... but I would like the page to respond as quickly as possible even though it is a "slow" page.</p>
<p>So, my question is, what do the numbers represent/mean? In other words, which way was the faster method and why?</p>
http://stackoverflow.com/questions/646768/saving-updates-to-objects-in-rails/646946#6469460Answer by salt.racer for Saving updates to objects in railssalt.racer2009-03-14T23:41:37Z2009-03-14T23:41:37Z<p>I have run into this problem rather frequently. (I was about to say consistently, but I cannot, as that would imply that I would know when it was about to happen.)</p>
<p>While I have no solution to the underlying issue, I have found that it seems to happen to me only when I am trying to update <code>mysql text</code> fields. My workaround has been to set the field to do something like:</p>
<pre><code>qm.position = ""
qm.save
qm.position = x
qm.save
</code></pre>
<p>And to answer everyone else... when I run <code>qm.save!</code> I get no errors. I have not tried <code>qm.save?</code></p>
<p>When I run through my code in the rails console everything works perfectly as evidenced by re-finding the object using the same query brings the expected results.</p>
<p>I have the same issue when using <code>qm.update_attribute(...</code> as well</p>
<p>My workaround has gotten me limping this far, but hopefully someone on this thread will be able to help.</p>
http://stackoverflow.com/questions/508678/best-practice-for-rails-app-to-run-a-long-task-in-the-background/567521#5675210Answer by salt.racer for Best practice for Rails App to run a long task in the background?salt.racer2009-02-19T22:27:34Z2009-02-19T22:27:34Z<p>There is the brand new <a href="http://www.writebetterbits.com/2009/01/update-to-growl4rails.html" rel="nofollow">Growl4Rails</a> ... that is for this specific use case (among others as well).</p>
<p><a href="http://www.writebetterbits.com/2009/01/update-to-growl4rails.html" rel="nofollow">http://www.writebetterbits.com/2009/01/update-to-growl4rails.html</a></p>
http://stackoverflow.com/questions/559592/vcs-and-single-developer-team0VCS and single developer "team"salt.racer2009-02-18T02:13:04Z2009-02-18T18:05:56Z
<p>I am a single developer working on a project for my company. I use subversion and Trac (for bug-tracking and communication with management types). I have a staging server and a production server. Today I checked in some code and discovered that my FSFS-based svn (v1.4) repository is irreparably corrupt. While this is quite a bummer it has afforded me the opportunity to move my VCS/staging system to a more modern distro (currently on a 2-year old system). (As far as the repo is concerned I do have a non-corrupted current version of the code, so while I lose all the history and comments of the development I don't lose any code. Whew.)</p>
<p>Currently I develop on Ubuntu and production runs RHEL5-64. My hardware will be staying the same, a 32-bit x86 single-core system.</p>
<p>I am familiar with SVN and it's constructs, but am feeling a little burned by the FSFS corruption issue. I don't know much about git except that it's rather popular. I currently use Trac to manage issues and I really like it's integration with svn. It appears that there are plugins to enable support for Git, but I'm not sure of the maturity of that development.</p>
<p>I'm currently thinking of building the following:</p>
<ol>
<li>Ubuntu 8.10 Desktop (and then adding
apache2 and other packages...the
last time I tried adding a GUI to
the server edition I just about
pulled my hair out) </li>
<li>SVN (because I'm
familiar with it and Git seems to be
a bit overkill for a one person
team) </li>
<li>Trac (because I'm familiar
with it and it works with SVN).</li>
</ol>
<p>I would like some suggestions and thoughts regarding my "new" vcs system. Is there a reason that I should move to Git? Is there something "better" than Trac?</p>
http://stackoverflow.com/questions/553648/what-is-the-best-way-to-schedule-a-sending-email-task-with-ruby-on-rails/554991#5549911Answer by salt.racer for What is the best way to schedule a sending-email task with Ruby on Rails?salt.racer2009-02-16T23:17:14Z2009-02-16T23:17:14Z<p>BackgroundRB is what I use and it works perfect. I have several emails being sent, generated by BackgroundRB. I also have other tasks as well. Because it enables both scheduled tasks and asynchronous tasks (tasks that take longer than the normal client/server response cycle).</p>
<p>I use it and I am very happy with it.</p>
http://stackoverflow.com/questions/538793/legacy-schema-and-dynamic-find-ruby-on-rails/540096#5400964Answer by salt.racer for Legacy Schema and dynamic find (Ruby on Rails)salt.racer2009-02-12T05:00:38Z2009-02-12T16:21:01Z<p>Your issue is that the finders are case sensitive. I have the same exact issue with my legacy database.</p>
<p>Try this to watch it work:</p>
<pre><code>Person.find_by_Last_Name("Smith")
</code></pre>
<p>That should do the trick.</p>
<p>I have code that I have written to fix issues like this. It's a little monkey-patch for ActiveRecord that you can insert into the specific models that you want to modify.</p>
<pre><code>module ActiveRecord
class Base
# Indicates whether field names should be lowercased for legacy databse fields.
# If true, the field Product_Name will be +product_name+. If false, it will remain +Product_Name+.
# This is false, by default.
cattr_accessor :downcase_legacy_field_names, :instance_writer => false
@@downcase_legacy_field_names = false
end
end
</code></pre>
<p>The code above creates a new accessor on ActiveRecord called downcase_legacy_field_names. It defaults to false. When this accessor is set to true at the top of a model it will trigger the code below.</p>
<pre><code># set all accessor methods to lowercase (underscore)
# add set_columns_to_lower to each model that needs it
class << ActiveRecord::Base
# Returns a hash of all the methods added to query each of the columns in the table with the name of the method as the key
# and true as the value. This makes it possible to do O(1) lookups in respond_to? to check if a given method for attribute
# is available.
def column_methods_hash #:nodoc:
@dynamic_methods_hash ||= column_names.inject(Hash.new(false)) do |methods, attr|
attr_final = downcase_legacy_field_names ? attr.to_s.downcase : attr
attr_name = attr_final
methods[attr_final.to_sym] = attr_name
methods["#{attr_final}=".to_sym] = attr_name
methods["#{attr_final}?".to_sym] = attr_name
methods["#{attr_final}_before_type_cast".to_sym] = attr_name
methods
end
end
# adapted from: http://wiki.rubyonrails.org/rails/pages/HowToUseLegacySchemas
def downcase_legacy_field_methods
column_names.each do |name|
next if name == primary_key
a = name.to_s.underscore
define_method(a.to_sym) do
read_attribute(name)
end
define_method("#{a}=".to_sym) do |value|
write_attribute(name, value)
end
define_method("#{a}?".to_sym) do
self.send("#{name}?".to_sym)
end
end
end
end
ActiveRecord::Base.downcase_legacy_field_names = true
</code></pre>
<p>This code was adapted from: <a href="http://wiki.rubyonrails.org/rails/pages/HowToUseLegacySchemas" rel="nofollow">http://wiki.rubyonrails.org/rails/pages/HowToUseLegacySchemas</a></p>
<p>In <code>column_methods_hash</code> we are overriding the ActiveRecord method. This method is used to generated the list of method names that are created at runtime for your database model. We don't want to override any earlier in the process because we would be messing with ActiveRecord's ability to convert our dynamic finders (and other methods) to proper SQL statements for the legacy database.</p>
<p>The second method, <code>downcase_legacy_field_methods</code>, is a new method that will actually generate the code that the downcase'd method will execute.</p>
<p>All of the above code patches ActiveRecord. It's a monkey patch so it can be required anywhere after ActiveRecord is loaded. I have mine in environment.rb.</p>
<p>Once you have patched ActiveRecord, there is one more step that you will need to do. At the top of your legacy database model you need to have the line <code>downcase_legacy_field_methods</code>. It should look something like this:</p>
<pre><code>class LegacyDatabaseModel < ActiveRecord::Base
downcase_legacy_field_methods
def cubits_to_feet
#conversion code goes here
end
end
</code></pre>
http://stackoverflow.com/questions/529869/non-working-rails-link-in-firefox0Non-working Rails link in Firefoxsalt.racer2009-02-09T20:48:34Z2009-02-10T18:01:28Z
<p>I have the following Rails link generating code</p>
<p>(I have removed potentially 'industry secret' stuff, sorry for the odd names, but the length of variable names and values match)</p>
<pre><code><%= link_to_remote "FOUR", :method => "get", :url => {:action => "testing01_four_log_info", :fourth_name => "LA1", :testing01_num => "123"} %>
</code></pre>
<p>This code generates:</p>
<pre><code>new Ajax.Request('/traffic/testing01_four_log_info?testing01_num=123&fourth_name=LA1', {asynchronous:true, evalScripts:true, method:'get'});
</code></pre>
<p>The issue is that the link works and returns values when clicked in IE and Safari and Chrome and Opera. It does not from Firefox (Version 3.0.6). In fact the Firebug console seems to indicate that nothing is even getting sent. However, when I do click on the link the <code>:before</code> code (that I left out of the <code>link_to_remote</code> code above) does actually get executed.</p>
<p>So, what am I doing wrong?</p>
<p>EDIT: Okay, so after working on this issue more it is an issue with Firefox and how it is handling the code. I can request the URL directly from within Firefox and it will work. So it's either a bug with Firefox or a bug with my code. Duh! :) As a side note, I have run into this issue once before. In that case though it was because the URL was too long and in that case Apache wasn't happy. In this case it's Firefox that isn't happy about something.</p>
<p>And debugging with Wireshark shows that there ain't nothing going across the wire. Other links will go across the wire, but not this one. From Firefox only.</p>
<p>EDIT: Solved. Adblock Plus was the culprit. Disabling it for my site fixed the issue. Thank you Stack Overflow!</p>
http://stackoverflow.com/questions/33174/accessing-sharepoint-from-outside-the-webui1Accessing Sharepoint from outside the WebUIsalt.racer2008-08-28T19:20:38Z2009-02-05T13:58:43Z
<p>Is it possible to access the database backend of a sharepoint server? My company uses Sharepoint to store data and pictures of various assets. Ideally I would be able to access the data and display it in my application to allow users both methods of access.</p>
<p>Before I go talk to the IT department I would like to find out if this is even possible?</p>
<p>Edit: From rails on linux? (Yes, I know I'm crazy)</p>
http://stackoverflow.com/questions/400470/what-are-the-major-differences-between-rails-1-x-and-2-x/400845#4008457Answer by salt.racer for What are the major differences between Rails 1.X and 2.Xsalt.racer2008-12-30T17:02:34Z2008-12-30T17:02:34Z<p>One of my favorite books is the "skateboard" book from The Pragmatic Programmers, "Agile Web Development with Rails". Many of the things that have changed were moved from core into plugins, so if they are features that you want or need, then you can still use them. Most of the new features were adding, rather than removing things.</p>
<p>As mentioned in other comments, to find out more you can visit these links:</p>
<ul>
<li><a href="http://weblog.rubyonrails.org/2007/9/30/rails-2-0-0-preview-release" rel="nofollow">http://weblog.rubyonrails.org/2007/9/30/rails-2-0-0-preview-release</a></li>
<li><a href="http://www.infoq.com/news/2007/12/rails-20-docs" rel="nofollow">http://www.infoq.com/news/2007/12/rails-20-docs</a></li>
</ul>
<p>That said, I also have "The Rails Way" by Obie Fernandez which covers Rails 2.0. However, I still find myself reaching for the Agile book more often. You can get it, and the soon-to-come 3rd Edition here: <a href="http://pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition" rel="nofollow">http://pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition</a>.</p>
<p>Because development on Rails is so fast paced, it is very difficult for books to actually keep up with the framework. I find that reading blogs is the best way to stay abreast of new features that have been added or to find out about not-new features that I didn't know about.</p>
<p>Some of the blogs that I subscribe to (there are many, many more available than these):</p>
<ul>
<li><a href="http://weblog.rubyonrails.com/" rel="nofollow">http://weblog.rubyonrails.com/</a></li>
<li><a href="http://delicious.com/jnunemaker/railstips" rel="nofollow">http://delicious.com/jnunemaker/railstips</a></li>
<li><a href="http://railstips.org/" rel="nofollow">http://railstips.org/</a></li>
<li><a href="http://blog.hasmanythrough.com/" rel="nofollow">http://blog.hasmanythrough.com/</a></li>
<li><a href="http://ryandaigle.com/" rel="nofollow">http://ryandaigle.com/</a></li>
<li><a href="http://railspikes.com/" rel="nofollow">http://railspikes.com/</a></li>
<li><a href="http://www.railsontherun.com/" rel="nofollow">http://www.railsontherun.com/</a></li>
<li><a href="http://agilewebdevelopment.com/plugins" rel="nofollow">http://agilewebdevelopment.com/plugins</a></li>
</ul>
http://stackoverflow.com/questions/398915/are-web-operating-systems-practical-yet/398941#3989415Answer by salt.racer for Are Web Operating Systems practical yet?salt.racer2008-12-29T22:38:44Z2008-12-29T22:38:44Z<p>Allow me to be the first to say that a "WebOS" is a bit of a misnomer. What is really meant is a web "application" that looks and feels like a modern operating system because it has folders and other widgets.</p>
<p>I think that for some things a "webos" will eventually be practical, but for now, a "traditional" html layout that incorporates traditional desktop application type concepts via AJAX is the current level of practical.</p>
http://stackoverflow.com/questions/398347/whats-the-best-way-to-generate-environment-specific-files-for-a-rails-project/398523#3985232Answer by salt.racer for What's the best way to generate environment-specific files for a Rails project?salt.racer2008-12-29T20:03:55Z2008-12-29T20:03:55Z<p>Can you do something like this?</p>
<pre><code><% javascript_include_file "#{RAILS_ENV}.js" %>
</code></pre>
<p>I do something similar, though it is not with a JS file, but with some RB files ... and I do it for the same reason, determining which servers to connect to.</p>
<p>For me, I have an rb file in my <code>"lib"</code> directory called <code>"constants.rb"</code>. This file has a few if statements that switch based on environment (development, test, staging, or production) that switch out the values of the ip addresses that I need to attach to. It is peppy enough for my purposes on the behemoth of a machine that I have the application running on.</p>
<p>Here is a sample:</p>
<pre><code>if ENV['RAILS_ENV'] != "production" ## if the rails environment is development or staging then use the test server
@@IP_ADDRESS = "10.16.121.173" ## the test server
else ## if the Rails environment is production, then use the live server.
@@IP_ADDRESS = "10.16.8.44" ## The is the shared IP address
end
</code></pre>
http://stackoverflow.com/questions/390188/c-telnet-library/390454#3904540Answer by salt.racer for C# Telnet Librarysalt.racer2008-12-24T00:04:30Z2008-12-24T00:04:30Z<p>I ended up finding <a href="http://www.codeproject.com/KB/IP/MinimalisticTelnet.aspx" rel="nofollow">MinimalistTelnet</a> and adapted it to my uses. I ended up needing to be able to heavily modify the code due to the unique** device that I am attempting to attach to.</p>
<p>** Unique in this instance can be validly interpreted as brain-dead.</p>
http://stackoverflow.com/questions/388016/spinning-background-tasks-in-rails/388140#3881400Answer by salt.racer for Spinning Background Tasks in Railssalt.racer2008-12-23T03:59:42Z2008-12-23T03:59:42Z<p>While I don't know if it is becoming a standard, I have had great success with <a href="http://backgroundrb.rubyforge.org" rel="nofollow">BackgroundRB</a>. I have several workers, some are long running tasks triggered by a user action while others are started on a schedule.</p>
http://stackoverflow.com/questions/379797/how-to-turn-off-periodicallycallremote1How to turn off "periodically_call_remote"salt.racer2008-12-19T00:24:12Z2008-12-19T18:04:56Z
<p>I have <code>periodically_call_remote</code> updating a div (<code>main_div</code>) in my web app. This <code>main_div</code> contains links that the user can click that invokes an action that overwrites data within <code>main_div</code>.</p>
<p>My problem is that the timer is running on the <code>periodically_call_remote</code> function and even though the user has navigated away from the page, that function call still wants to return. If the <code>main_div</code> is present on the page the function call wipes out the data that was currently being displayed. If the <code>main_div</code> is not on the page then the javascript returns an error dialog.</p>
<p>So, my question is, when the user navigates away from the div that is periodically being updated, how do I stop the function call?</p>
http://stackoverflow.com/questions/413848/integrating-oulook-exchange-tasks-with-linux-based-rails/1607810#1607810Comment by salt.racer on Integrating Oulook/Exchange Tasks with Linux-based Railssalt.racer2009-10-26T22:22:17Z2009-10-26T22:22:17ZThis sounds promising. It might actually get onto github.http://stackoverflow.com/questions/390188/c-telnet-library/1538358#1538358Comment by salt.racer on C# Telnet Librarysalt.racer2009-10-09T17:59:39Z2009-10-09T17:59:39ZThat's exactly the one that worked for me for the very reasons you outlined. I'm glad I'm not alone in liking it. :)http://stackoverflow.com/questions/398915/are-web-operating-systems-practical-yetComment by salt.racer on Are Web Operating Systems practical yet?salt.racer2009-08-04T17:18:50Z2009-08-04T17:18:50Z@bismuth - Keep in mind that this question was asked before the Pre was announced.http://stackoverflow.com/questions/1106078/rails-restful-routing-and-pluralizationComment by salt.racer on Rails, RESTful routing, and pluralizationsalt.racer2009-07-09T20:43:35Z2009-07-09T20:43:35ZNo. The get route exists as sitestatus_index, but the post route is actually blank.http://stackoverflow.com/questions/967484/does-linkto-have-before-and-or-after-like-linktoremote/967529#967529Comment by salt.racer on Does link_to have :before and/or :after like link_to_remotesalt.racer2009-06-09T16:36:36Z2009-06-09T16:36:36ZOf course! I feel like an idiot. Thanks.http://stackoverflow.com/questions/749477/testing-models-with-multiple-database-connections-in-rails-using-activerecordComment by salt.racer on Testing models with multiple database connections in Rails using ActiveRecordsalt.racer2009-04-15T04:43:53Z2009-04-15T04:43:53ZIf it's read-only ... what exactly are you testing? I presume (because it's read-only) that the data is input from somewhere else and Rails is just consuming it?http://stackoverflow.com/questions/706125/rails-not-loading-environment-rb-correctly/707053#707053Comment by salt.racer on Rails not loading environment.rb correctlysalt.racer2009-04-01T22:52:20Z2009-04-01T22:52:20ZHilariously enough ... moving the extra code to initializers did the trick ... thanks for the pointer!http://stackoverflow.com/questions/706125/rails-not-loading-environment-rb-correctly/707053#707053Comment by salt.racer on Rails not loading environment.rb correctlysalt.racer2009-04-01T21:17:34Z2009-04-01T21:17:34ZYes, I did run rake rails:updatehttp://stackoverflow.com/questions/687758/understanding-ruby-on-rails-render-times/687783#687783Comment by salt.racer on Understanding Ruby on Rails render timessalt.racer2009-03-26T22:48:19Z2009-03-26T22:48:19ZCan you breakdown (or point me to a write up) of how to interpret these on my own?http://stackoverflow.com/questions/559592/vcs-and-single-developer-team/560304#560304Comment by salt.racer on VCS and single developer "team"salt.racer2009-02-18T20:26:13Z2009-02-18T20:26:13ZYes, I knew better. :( Redmine looks good. And considering that I am developing a Rails App... I like that as well.http://stackoverflow.com/questions/559592/vcs-and-single-developer-team/562197#562197Comment by salt.racer on VCS and single developer "team"salt.racer2009-02-18T20:24:56Z2009-02-18T20:24:56ZUnfortunately my software is developed under NDA with another third party. My employer would not support outsourcing to a code-hosting service (although I would love to).http://stackoverflow.com/questions/529869/non-working-rails-link-in-firefox/531132#531132Comment by salt.racer on Non-working Rails link in Firefoxsalt.racer2009-02-10T17:59:58Z2009-02-10T17:59:58ZMakes sense. To answer the questions: Yes, javascript is enabled. I don't have any script blockers or anything like that installed...except for Adblock Plus. <scurries to disable on this page> AH THAT DID IT! PERFECT!http://stackoverflow.com/questions/529869/non-working-rails-link-in-firefoxComment by salt.racer on Non-working Rails link in Firefoxsalt.racer2009-02-09T23:54:46Z2009-02-09T23:54:46ZYes. Cleared the cache. No response. Any other ideas?http://stackoverflow.com/questions/529869/non-working-rails-link-in-firefoxComment by salt.racer on Non-working Rails link in Firefoxsalt.racer2009-02-09T21:13:38Z2009-02-09T21:13:38ZI updated. Sorry about the error. I'm really, really pathetic at JavaScript.http://stackoverflow.com/questions/211426/what-punishment-do-you-have-when-someone-on-the-team-breaks-the-build/236775#236775Comment by salt.racer on What punishment do you have when someone on the team breaks the build?salt.racer2009-02-06T19:01:28Z2009-02-06T19:01:28ZI once worked on a team where one developer <i>always</i> broke the build. EVERY check in. And he was a senior developer. Because there was no policy, there was no discipline. And discipline was most certainly needed.