User jdl - Stack Overflowmost recent 30 from stackoverflow.com2009-11-08T06:07:47Zhttp://stackoverflow.com/feeds/user/9465http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1693817/set-the-child-parentid-automatically-when-parent-children-child/1694296#16942961Answer by jdl for Set the child.parent_id automatically when parent.children<< child ?jdl2009-11-07T20:26:19Z2009-11-07T20:26:19Z<p>Some code from you would be appropriate, since what you're asking should be working automatically.</p>
<pre><code>class Parent < ActiveRecord::Base
has_many :children
end
class Child < ActiveRecord::Base
belongs_to :parent
end
</code></pre>
<p>If your code doesn't resemble that, then please post a more specific question.</p>
http://stackoverflow.com/questions/1604932/how-do-i-check-between-2-arrays-of-different-objects/1604971#16049711Answer by jdl for How do I check between 2 arrays of different objects?jdl2009-10-22T04:08:58Z2009-10-22T04:08:58Z<pre><code>@claim.items.include? @items_assets
</code></pre>
<p>What you're asking here is "Does the array <code>@claim.items</code> contain an element equal to the <code>@item_assets</code> object?"</p>
<p>What you seem to want to ask is "Does the array <code>@claim.items</code> contain an element equal to any element in another array, <code>@item_assets</code>?"</p>
<p><code>@claim.items != @claim.items - @item_assets</code> would return true if any element in <code>@item_assets</code> matched any element in <code>@claim.items</code>, but the performance of doing that will likely be terrible.</p>
<p>I would look at storing your <code>@item_assets</code> in a <code>Set</code>, assuming you really do want to yank them all into memory. Then checks to see if your <code>@claim.items</code> elements appear in that <code>Set</code> will be much faster.</p>
http://stackoverflow.com/questions/1564278/how-to-programmatically-list-all-controllers-in-rails/1564401#15644014Answer by jdl for How to programmatically list all controllers in Railsjdl2009-10-14T05:26:06Z2009-10-14T05:26:06Z<pre><code>ApplicationController.subclasses
</code></pre>
<p>It'll get you started, but keep in mind that in development mode you won't see much, because it will only show you what's actually been loaded. Fire it up in production mode, and you should see a list of all of your controllers.</p>
http://stackoverflow.com/questions/1517722/rails-routing-resourcepath-or-resourceurl/1517738#15177382Answer by jdl for [Rails] Routing: resource_path or resource_url?jdl2009-10-04T23:49:53Z2009-10-04T23:49:53Z<p><code>foo_url</code> includes the domain and protocol. <code>foo_path</code> only outputs the relative path.</p>
<pre><code>>> foo_url(:id => 1)
http://localhost:3000/foo/1
>> foo_path(:id => 1)
/foo/1
</code></pre>
<p>Most of the time, you want "_path" but you have the choice.</p>
http://stackoverflow.com/questions/1100443/rails-render-text-proc-in-2-2-2-versus-2-3-21Rails "render :text => proc" in 2.2.2 versus 2.3.2jdl2009-07-08T20:40:13Z2009-09-30T08:58:19Z
<p>I'm experiencing something that I can't explain with Rails 2.3.2. I've created a new app, with one controller and one action to try narrowing this down. My entire controller is as follows.</p>
<pre><code>class LinesController < ApplicationController
def show
respond_to do |format|
format.html { render :text => proc {|response, output|
10.times do |i|
output.write("This is line #{i}\n")
output.flush
end
}
}
end
end
end
</code></pre>
<p>When I run this under Rails 2.2.2 I see the following response.</p>
<pre><code>$ curl http://localhost:3002/lines
This is line 0
This is line 1
This is line 2
This is line 3
This is line 4
This is line 5
This is line 6
This is line 7
This is line 8
This is line 9
</code></pre>
<p>However, when I run this under Rails 2.3.2, I get this instead.</p>
<pre><code>$ curl http://localhost:3002/lines
curl: (18) transfer closed with outstanding read data remaining
</code></pre>
<p>If I hit this with a browser I see only the first line.</p>
<pre><code>This is line 0
</code></pre>
<p>Note that my example code is directly out of the Rails documentation for <a href="http://api.rubyonrails.org/classes/ActionController/Base.html#M000676" rel="nofollow">render</a>, except that I reduced the number of lines from 10 million to 10.</p>
<p>I suspect that the answer lies somewhere in the flush() method, but I'm currently stuck trying to dig an explanation out of the source code.</p>
http://stackoverflow.com/questions/1496001/rails-console-scrollback/1496046#14960460Answer by jdl for Rails console scrollbackjdl2009-09-30T03:55:25Z2009-09-30T03:55:25Z<p>You probably have the <a href="http://pablotron.org/software/wirble/" rel="nofollow">wirble</a> gem installed on one machine and not the other.</p>
http://stackoverflow.com/questions/1482556/hasmany-through-issue-with-new-records/1482580#14825800Answer by jdl for has_many :through issue with new recordsjdl2009-09-27T01:42:44Z2009-09-27T01:42:44Z<p>There's not much that you can do about the association not being recognized until you save. Arguably, it doesn't really exist until you save, validations pass, and the relevant transaction(s) are completed.</p>
<p>Regarding your question of cleaning up your <code>primary_artist</code> method, you could model it something like this.</p>
<pre><code>class Song < ActiveRecord::Base
has_many :performances
has_many :artists, :through => :performances
has_one :primary_artist, :through => :performances, :conditions => ["performances.roll = ?", "primary"], :source => :artist
end
</code></pre>
<p>It's unclear if you want one or many primary artists, but you can easily switch that <code>has_one</code> to <code>has_many</code> as needed.</p>
http://stackoverflow.com/questions/1481379/how-can-i-update-a-record-if-it-is-added-to-an-association/1481434#14814341Answer by jdl for How can I update a record if it is added to an association?jdl2009-09-26T15:16:34Z2009-09-26T15:16:34Z<p>Manually, yes. But it's still a clear and clean way of expressing what you're trying to do.</p>
<p><code>c.children.new(:root_id => c.root_id)</code></p>
http://stackoverflow.com/questions/1480227/validatesuniquenessof-passes-on-nil-or-blank-without-allownil-and-allowblank/1480330#14803302Answer by jdl for validates_uniqueness_of passes on nil or blank (without allow_nil and allow_blank)jdl2009-09-26T03:11:19Z2009-09-26T13:52:16Z<p>You are mistaken about the default behavior. From the docs:</p>
<pre><code>:allow_nil - If set to true, skips this validation if the attribute is nil (default is false).
:allow_blank - If set to true, skips this validation if the attribute is blank (default is false).
</code></pre>
<p>Setting both of those to true, I see the following behavior with Rails 2.3.4.</p>
<pre><code>class Thing < ActiveRecord::Base
validates_uniqueness_of :identification, :allow_blank => true, :allow_nil => true
end
>> Thing.create! :identification => ""
=> #<Thing id: 6, identification: "", created_at: "2009-09-26 03:09:48", updated_at: "2009-09-26 03:09:48">
>> Thing.create! :identification => ""
=> #<Thing id: 7, identification: "", created_at: "2009-09-26 03:09:49", updated_at: "2009-09-26 03:09:49">
>> Thing.create! :identification => nil
=> #<Thing id: 8, identification: nil, created_at: "2009-09-26 03:09:52", updated_at: "2009-09-26 03:09:52">
>> Thing.create! :identification => nil
=> #<Thing id: 9, identification: nil, created_at: "2009-09-26 03:09:53", updated_at: "2009-09-26 03:09:53">
</code></pre>
<p><strong>Edit: Addressing your clarification.</strong>
Adding a <code>validates_presence_of</code> would be correct for what you're trying to do. It's not redundant, since it's checking for a completely different error case. It also has its own error message, which will be important for the user.</p>
<pre><code>class Thing < ActiveRecord::Base
validates_uniqueness_of :identification, :allow_nil => true, :allow_blank => true
validates_presence_of :identification
end
</code></pre>
http://stackoverflow.com/questions/1474418/multiple-multi-line-haml-blocks/1474472#14744721Answer by jdl for Multiple multi-line HAML blocksjdl2009-09-24T22:16:22Z2009-09-24T22:16:22Z<p>It's a hack (sort-of), but you could always use a "+" instead of a "=" on your 2nd, 3rd, etc. lines in the chain.</p>
<pre><code>= call_to_helper :foo1 => 'bar1', :foo2 => 'bar2', :foo3 => 'bar3', |
:foo4 => 'bar4', :foo5 => 'bar5' |
+ call_to_helper :foo1 => 'bar1', :foo2 => 'bar2', :foo3 => 'bar3', |
:foo4 => 'bar4', :foo5 => 'bar5' |
</code></pre>
http://stackoverflow.com/questions/1469354/how-do-attribute-query-methods-work/1469391#14693912Answer by jdl for How do attribute query methods work?jdl2009-09-24T01:34:36Z2009-09-24T01:34:36Z<p>No.</p>
<p><code>Object#present?</code> is the same thing as calling <code>!obj.blank?</code>.</p>
<p>The "attribute?" method might end up calling the same code, but it might not, and it depends on the column type that you're dealing with.</p>
<p>The easiest way to see these not return the same value is to access a numeric column. Say you had <code>foo.score</code> as a decimal column in your db, and you set it to zero. You'd see the following behavior.</p>
<pre><code>foo.score = 0
foo.score? # false
foo.score.present? # true
</code></pre>
<p>The code for the "?" method is in ActiveRecord::AttributeMethods.</p>
<pre><code>def query_attribute(attr_name)
unless value = read_attribute(attr_name)
false
else
column = self.class.columns_hash[attr_name]
if column.nil?
if Numeric === value || value !~ /[^0-9]/
!value.to_i.zero?
else
return false if ActiveRecord::ConnectionAdapters::Column::FALSE_VALUES.include?(value)
!value.blank?
end
elsif column.number?
!value.zero?
else
!value.blank?
end
end
end
</code></pre>
http://stackoverflow.com/questions/1469341/get-the-value-of-a-model-field-as-it-is-in-the-database/1469352#14693522Answer by jdl for Get the value of a model field as it is in the databasejdl2009-09-24T01:11:42Z2009-09-24T01:11:42Z<p><code>a.body_was</code></p>
<p>You can also check to see if it's dirty with <code>a.changed?</code> and/or <code>a.body_changed?</code></p>
http://stackoverflow.com/questions/1467696/how-do-you-access-the-session-from-within-an-actionmailer-class/1467822#14678221Answer by jdl for How do you access the session from within an ActionMailer class?jdl2009-09-23T18:31:00Z2009-09-23T18:31:00Z<p>Whether you can shoehorn a reference to the session into the mailer or not, I think you've already hit upon the correct solution. Passing in the context you want to use would be preferable for a couple of reasons.</p>
<ol>
<li>The mailer probably shouldn't know about the session in the first place.</li>
<li>Assume that someday you have to send a lot of mail, and batch process it. You'll be right back to where you are now -- having to pass in your context.</li>
</ol>
http://stackoverflow.com/questions/1463854/how-to-reference-a-relative-path-in-rails/1463939#14639393Answer by jdl for How to reference a relative path in Rails?jdl2009-09-23T04:21:32Z2009-09-23T04:21:32Z<p>You could stuff it into /script and then reference <code>RAILS_ROOT/script/usage.rb</code> in your code. <code>RAILS_ROOT</code> is a constant that contains the absolute path to your application.</p>
http://stackoverflow.com/questions/1463865/rails-app-how-to-enter-events-in-local-time-zone/1463929#14639290Answer by jdl for Rails app - how to enter events in local time zone jdl2009-09-23T04:17:55Z2009-09-23T04:17:55Z<p>Geoff Buesing wrote a <a href="http://mad.ly/2008/04/09/rails-21-time-zone-support-an-overview/" rel="nofollow">great primer</a> on Rails support of time zones back when 2.1 was released.</p>
http://stackoverflow.com/questions/1448981/is-rails-2-3-stable-does-anyone-have-any-problems-with-it/1449088#14490885Answer by jdl for Is Rails-2.3 stable? Does anyone have any problems with it?jdl2009-09-19T17:48:20Z2009-09-19T18:05:30Z<p>Compared to two years ago, you should be impressed with where Rails is at. Here are some things to take note of.</p>
<ul>
<li>mongrel is still fine as a server, but many (most?) people are using Phusion Passenger. I'm running a few apps in production mode with Passenger, and it's great. It plugs into Apache with a very small and simple set of directives. You won't have to set up balancers or rewriters like you used to.</li>
<li>Phusion also offers RubyEE, which is their own, more efficient version of Ruby. The installer works in such a way that if you decide you don't like, it can be removed by simply deleting its directory. It's all self-contained.</li>
<li>rmagick is still just as awful to install as it ever was, but now there is Paperclip as an alternative.</li>
<li>You'll love how fast 2.3 loads the console.</li>
<li>named_scopes are a huge step forward. Be sure to read up on them.</li>
</ul>
<p>There are dozens of other reasons to upgrade, most of which can be found on this site. Unless you have an axe to grind with Rails, I doubt that you'll be disappointed with it.</p>
<p>Now, when you ask about stability, the answer is "sure, it's stable." However, you gave no information regarding what types of user loads you're trying to support. More detailed questions could lead to more detailed answers.</p>
<p><strong>Edit</strong>
Answering your comment.
<a href="http://railspikes.com/2009/3/30/10-cool-things-in-rails-23" rel="nofollow">10 Cool Things in Rails 2.3</a> by <a href="http://stackoverflow.com/users/17965/luke-francl">Luke Francl</a>. This is a nice summary of the latest highlights.</p>
http://stackoverflow.com/questions/1434537/using-passenger-2-2-5-why-am-i-getting-the-following-error-on-my-ruby-on-rails-p/1435175#14351750Answer by jdl for Using Passenger 2.2.5, why am I getting the following error on my Ruby on Rails page about an unreferenced "/" ?jdl2009-09-16T20:07:05Z2009-09-16T20:07:05Z<p>These are not valid Ruby method names.</p>
<pre><code>def app/controllers
end
def app/controllers/greetings_controller.rb
end
# etc...
</code></pre>
<p>Aside from probably needing to read some documentation, I would strongly suggest that you run this in a clean Rails project:</p>
<pre><code>./script/generate scaffold greetings
</code></pre>
<p>And then take a look at what it generates. You can learn a lot about how a basic Rails app is structured that way.</p>
http://stackoverflow.com/questions/1429960/rails-how-to-add-dynamic-days-or-minutes/1430194#14301942Answer by jdl for Rails: How to add dynamic days or minutes?jdl2009-09-15T23:42:25Z2009-09-15T23:42:25Z<p><code>minutes</code> isn't a method on String. You need to convert your param to a number first.</p>
<pre><code>@presentation.date = @category.date + @addtime.to_f.minutes
</code></pre>
http://stackoverflow.com/questions/1429799/ruby-on-rails-rendering-text-and-html-within-ruby-tags-only-renders-one-line/1429828#14298283Answer by jdl for Ruby-on-rails: rendering text and html within ruby tags only renders one linejdl2009-09-15T21:54:57Z2009-09-15T21:54:57Z<p>You really don't need to call render, unless it's located in another partial.</p>
<p>In erb:</p>
<pre><code><% if session[:user].nil? -%>
welcome new user
<%= link_to( 'Sign in', login_path) %>
<% else -%>
user name
<%= h(session[:user].name) %>
<% end -%>
</code></pre>
<p>Or in Haml:</p>
<pre><code>- if session[:user].nil?
welcome new user
= link_to( 'Sign in', login_path)
- else
user name
= h(session[:user].name)
</code></pre>
http://stackoverflow.com/questions/1427664/activerecord-find-with-association-details/1428020#14280201Answer by jdl for ActiveRecord find with association detailsjdl2009-09-15T15:49:52Z2009-09-15T20:36:56Z<p>Named scopes are your friend here.</p>
<p>For example:</p>
<pre><code>class Game < ActiveRecord::Base
has_and_belongs_to_many :users
named_scope :for_status, lambda {|s| {:conditions => {:status => s}}}
named_scope :excluding_user, lambda {|u| {:conditions => ["gu.game_id is null or gu.game_id not in (select game_id from games_users where user_id = ?) ", u.id], :joins => "left outer join games_users gu on gu.game_id = games.id", :group => "games.id" }}
end
</code></pre>
<p>This will let you do things like the following:</p>
<pre><code>user = User.first # Or whoever.
games_in_progress = Game.for_status("playing")
games_in_progress_for_others = Game.excluding_user(user).for_status("playing")
# etc...
</code></pre>
<p>Also, since you say that you're new to Rails, you might not realize that these named scopes will also work when you're traversing associations. For example:</p>
<pre><code>user = User.first
users_games_in_waiting = user.games.for_status("waiting")
</code></pre>
http://stackoverflow.com/questions/1427707/alias-table-name-to-facilitate-3-column-join-table-mysql-or-postgresql/1428549#14285492Answer by jdl for Alias table name to facilitate 3 column join table (MySQL or PostgreSQL)jdl2009-09-15T17:31:15Z2009-09-15T17:31:15Z<p>I'm assuming that you have something like this joining your models together:</p>
<pre><code> def self.up
create_table :my_join_table, :id => false do |t|
t.integer :employee_id
t.integer :role_id
t.integer :project_id
t.timestamps
end
end
</code></pre>
<p>If so you, simply need to specify the name of the join table to use with your habtm.</p>
<pre><code>class Employee < ActiveRecord::Base
has_and_belongs_to_many :roles, :join_table => "my_join_table"
has_and_belongs_to_many :projects, :join_table => "my_join_table"
end
class Project < ActiveRecord::Base
has_and_belongs_to_many :roles, :join_table => "my_join_table"
has_and_belongs_to_many :employees, :join_table => "my_join_table"
end
class Role < ActiveRecord::Base
has_and_belongs_to_many :employees, :join_table => "my_join_table"
has_and_belongs_to_many :projects, :join_table => "my_join_table"
end
</code></pre>
http://stackoverflow.com/questions/1402861/how-can-i-make-a-cascade-deletion-in-a-onetomany-relatonship-in-rails-activerec/1402871#14028710Answer by jdl for How can I make a cascade deletion in a one_to_many relatonship in Rails ActiveRecord?jdl2009-09-10T00:44:07Z2009-09-10T00:44:07Z<p>What you're looking for is the <code>:dependent => :destroy</code> option on <code>has_many</code>.</p>
<p><a href="http://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html#M001833" rel="nofollow">has_many docs</a></p>
http://stackoverflow.com/questions/1402556/how-to-make-fixtures-updateable-in-rails-tests/1402705#14027053Answer by jdl for How to make fixtures updateable in Rails' tests?jdl2009-09-09T23:38:47Z2009-09-09T23:38:47Z<pre><code>posts(:one)
</code></pre>
<p>That means "fetch the fixture named ":one" in posts.yml. That's never going to change during a test, barring some extremely weird and destructive code that has no place in sane tests.</p>
<p>What you want to do is check the object that the controller is assigning.</p>
<pre><code>post = assigns(:post)
assert post.updated_at.between?(before, after)
</code></pre>
http://stackoverflow.com/questions/1391721/activerecorded-associated-model-back-reference/1391774#13917740Answer by jdl for ActiveRecorded associated model back referencejdl2009-09-08T03:12:54Z2009-09-09T13:19:30Z<blockquote>
<p>...given an actor instance obtained
through the actors association...</p>
</blockquote>
<p>If you're using the actors association, you already have the <code>movie</code> object. What is the problem that you're trying to solve here?</p>
<p>My suspicion is that if we finally get to the bottom of what you're trying to accomplish, the answer is going to be "read the docs on '<code>has_and_belongs_to_many</code>' and/or '<code>has_many :through</code>'."</p>
<p><strong>Edit:</strong></p>
<p>I just now noticed your clarification below (although movies and plots could be considered many-to-many as well, since they get recycled endlessly).</p>
<p>Assuming that you really are trying to use a many-to-one relationship, is the root of your problem that you forgot the following?</p>
<pre><code>class Plot < ActiveRecord::Base
belongs_to :movie
end
</code></pre>
http://stackoverflow.com/questions/1391648/ror-lookup-example/1391693#13916930Answer by jdl for RoR Lookup examplejdl2009-09-08T02:35:36Z2009-09-08T02:35:36Z<pre><code><%= f.collection_select :state_id, State.find(:all), :id, :name, :prompt => "Select a State" %>
</code></pre>
<p><code>:state_id</code> not <code>:state</code></p>
http://stackoverflow.com/questions/1390587/generating-urls-from-form-params-in-rails/1390616#13906162Answer by jdl for Generating URLs from form params in Railsjdl2009-09-07T19:00:03Z2009-09-07T19:00:03Z<blockquote>
<p>I also do not understand why the params are not in the the url as</p>
<blockquote>
<p>"?client_id=ID&make=MAKE&model=MODEL"</p>
</blockquote>
<p>It it my understanding that this will
allow me to do the same thing</p>
</blockquote>
<p>From the documentation for <code>form_tag</code>:</p>
<blockquote>
<p>The method for the form defaults to
POST.</p>
</blockquote>
<p>You need to add :method => "get" to your <code>form_tag</code> options if you want to have the options passed in the query string.</p>
http://stackoverflow.com/questions/1390124/how-do-i-write-that-join-query-with-activerecord/1390159#13901597Answer by jdl for how do I write that join query with ActiveRecord?jdl2009-09-07T16:45:27Z2009-09-07T16:45:27Z<p>The assumption here is that you have something that looks like this:</p>
<pre><code>class Band < ActiveRecord::Base
has_many :memberships
has_many :users, :through => :memberships
end
class User < ActiveRecord::Base
has_many :memberships
has_many :bands, :through => :memberships
end
class Membership < ActiveRecord::Base
belongs_to :user
belongs_to :band
end
</code></pre>
<p>In which case, you can perform this query easily.</p>
<pre><code>user = User.find(1)
user.bands
</code></pre>
<p>Your question is quite vague, however, so if this isn't what you're looking for please considering expanding your question with some more details. You are also referencing an alias "g" in your question which is never defined.</p>
http://stackoverflow.com/questions/1359696/how-to-share-code-between-model-and-controller-in-rails/1359706#13597061Answer by jdl for How to share code between model and controller in Rails?jdl2009-08-31T22:37:13Z2009-09-01T00:46:20Z<p>If you really need to do this, you could place a module in /lib and <code>include</code> it where needed. </p>
<p>However, if possible you should have your model take care of it. If you can supply some more details, it would be easier to steer you in the correct direction.</p>
http://stackoverflow.com/questions/1353261/how-to-require-a-value-is-entered-in-a-search-form/1353299#13532991Answer by jdl for How to require a value is entered in a search formjdl2009-08-30T07:07:56Z2009-08-30T07:31:25Z<pre><code>def index
@profiles = Profile.search(params[:search]) unless params[:search].blank?
end
</code></pre>
<p>You probably don't want to throw an error if the search field is blank, because the user will see that error the first time he comes to the index page. To properly handle that type of error message, you'll need to do one of several things.</p>
<ul>
<li>Split the form generation and the actual search into two separate actions. In a RESTful app, this would typically be a new and create action. (new for the form, create for the actual search).</li>
<li>Add a check for a post, as opposed to a get. Only attempt the search, or throw the error, if it's a post. Otherwise, just show the form. You'll typically see this in older Rails examples (like pre- 2.0 tutorials).</li>
<li>Add some hidden field that says "Hey, I'm submitting a search." This is the same idea as checking for a post, but would still work if you wanted all gets for some reason.</li>
</ul>
<p>My choice would be the first one. It'd roughly look like this.</p>
<pre><code>def new
end
def create
if params[:search].blank?
flash.now[:error] = "Please enter a zip code to search for."
render :new
else
@profiles = Profile.search(params[:search])
render :show
end
end
</code></pre>
<p>In your views, new.html.erb (or .haml or whatever) would contain your search form and show.html.erb would contain your search results. Usually there's a search form partial that both of them would share.</p>
http://stackoverflow.com/questions/1353203/display-search-query-in-results-of-basic-search-in-rails/1353312#13533121Answer by jdl for Display search query in results of basic search in Railsjdl2009-08-30T07:14:01Z2009-08-30T07:14:01Z<p>Just set it to an instance variable and use that.</p>
<pre><code>def index
@search = params[:search]
@profiles = Profile.search(@search)
end
</code></pre>
<p>In your view, you can reference @search.</p>
<p>Also, as a friendly tip, please use an indent of 2 spaces for Rails code. It's the standard way to do it, and others who are reading your code will appreciate it.</p>
http://stackoverflow.com/questions/1693817/set-the-child-parentid-automatically-when-parent-children-childComment by jdl on Set the child.parent_id automatically when parent.children<< child ?jdl2009-11-07T20:27:07Z2009-11-07T20:27:07ZCould someone with mod powers please edit that to "ActiveRecord"? I realize that this question is a lost cause in its current state, but maybe it can be salvaged a bit?http://stackoverflow.com/questions/1609604/variable-thats-accessible-to-anything-in-the-controller-in-rails/1609834#1609834Comment by jdl on Variable that's accessible to anything in the controller in Railsjdl2009-10-22T20:46:02Z2009-10-22T20:46:02ZI deleted my answer and gave this a +1. I hadn't thought about a different file per session, but that's clearly going to be an issue which this method solves nicely.http://stackoverflow.com/questions/221385/ruby-on-rails-and-jeditable-jquery/551392#551392Comment by jdl on Ruby on Rails and jeditable (jquery)jdl2009-10-09T06:06:23Z2009-10-09T06:06:23ZYou can un-clunk that case statement and simply return this: format.js { render :text => @email.send(params[:wants]) }http://stackoverflow.com/questions/1535945/letting-a-template-and-multiple-partials-add-to-the-layoutComment by jdl on Letting a template and multiple partials add to the layoutjdl2009-10-08T06:48:16Z2009-10-08T06:48:16ZIt sure seems like content_for is exactly what you need here. Can you post an example of it not working?http://stackoverflow.com/questions/1506556/hasmany-while-respecting-build-strategy-in-factorygirl/1506967#1506967Comment by jdl on has_many while respecting build strategy in factory_girljdl2009-10-04T17:23:18Z2009-10-04T17:23:18ZNice. I'll let you know if I find any bugs with it. FYI: You can clean up your after_build code with something like o.items = (1..2).map{Factory.build(:item, :user => o)}http://stackoverflow.com/questions/1489274/script-generate-on-windows-script-is-not-recognized-as-an-internal-or-external/1489285#1489285Comment by jdl on script/generate on Windows: 'script' is not recognized as an internal or external commandjdl2009-09-29T00:19:20Z2009-09-29T00:19:20ZWell, that's a step in the right direction anyway. Good to know.http://stackoverflow.com/questions/1482556/hasmany-through-issue-with-new-records/1482580#1482580Comment by jdl on has_many :through issue with new recordsjdl2009-09-27T12:52:59Z2009-09-27T12:52:59ZAlso, I think you have this "featuring" thing backwards. That should be the special case via a roll. Everyone else can just be an "artist." You're going to run into trouble with your primary artists as soon as you try to create a performance object for a duet.http://stackoverflow.com/questions/1482556/hasmany-through-issue-with-new-records/1482580#1482580Comment by jdl on has_many :through issue with new recordsjdl2009-09-27T12:51:32Z2009-09-27T12:51:32ZThat doesn't seem like a reasonable thing to check for. The way that you have this modeled, a song can have multiple performances. The 2nd performance would imply a 2nd primary artist. A song should not always have exactly one primary artist.http://stackoverflow.com/questions/1480227/validatesuniquenessof-passes-on-nil-or-blank-without-allownil-and-allowblankComment by jdl on validates_uniqueness_of passes on nil or blank (without allow_nil and allow_blank)jdl2009-09-26T03:14:11Z2009-09-26T03:14:11Z+1 because this is a model of how to ask a question. You clearly stated what you did, what you saw, and what you expected.http://stackoverflow.com/questions/1468080/creating-and-testing-a-default-record-in-rails/1468103#1468103Comment by jdl on Creating and testing a default record in Railsjdl2009-09-23T20:49:50Z2009-09-23T20:49:50ZAgreed, especially if "different data" is coming from a factory for the unit tests.http://stackoverflow.com/questions/1463865/rails-app-how-to-enter-events-in-local-time-zone/1463929#1463929Comment by jdl on Rails app - how to enter events in local time zone jdl2009-09-23T12:59:37Z2009-09-23T12:59:37ZRight. Take the example that he gave for users and apply that to events. http://stackoverflow.com/questions/1463854/how-to-reference-a-relative-path-in-rails/1463939#1463939Comment by jdl on How to reference a relative path in Rails?jdl2009-09-23T12:57:36Z2009-09-23T12:57:36ZRails sets RAILS_ROOT for you when the app starts.http://stackoverflow.com/questions/1435278/rails-and-jquery-script-displayed-instead-of-executionComment by jdl on rails and jquery: script displayed instead of executionjdl2009-09-16T21:42:34Z2009-09-16T21:42:34ZCan you try it with bind instead of live, just to rule out a jQuery oddity?
http://stackoverflow.com/questions/1434537/using-passenger-2-2-5-why-am-i-getting-the-following-error-on-my-ruby-on-rails-pComment by jdl on Using Passenger 2.2.5, why am I getting the following error on my Ruby on Rails page about an unreferenced "/" ?jdl2009-09-16T18:32:22Z2009-09-16T18:32:22ZThe error message says "unexpected" not "unreferenced." Unless you post your controller code, how is anyone supposed to know what you did wrong?http://stackoverflow.com/questions/1430247/passing-parameters-in-rails-redirectto/1430309#1430309Comment by jdl on Passing parameters in rails redirect_tojdl2009-09-16T01:11:18Z2009-09-16T01:11:18ZYou can't redirect with a POST. From the HTTP 1.1 docs under the 3xx definitions: "The action required MAY be carried out by the user agent without interaction with the user if and only if the method used in the second request is GET or HEAD."
Expand on what you're really trying to accomplish and we can probably push you in the correct direction.