User Jordan Brough - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T16:14:06Zhttp://stackoverflow.com/feeds/user/58876http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/702236/rails-aftersave-callback-to-create-an-associated-model-based-on-columnchanged/1709956#17099560Answer by Jordan Brough for Rails after_save callback to create an associated model based on column_changed?Jordan Brough2009-11-10T18:02:43Z2009-11-10T18:02:43Z<p>This may have changed since the question was posted, but the after_save callback should have the <code>*_changed?</code> dynamic methods available and set correctly:</p>
<pre><code>class Order
after_save :handle_status_changed, :if => :status_changed?
end
</code></pre>
<p>or</p>
<pre><code>class Order
after_save :handle_status_changed
def handle_status_changed
return unless status_changed?
...
end
end
</code></pre>
<p>Works correctly for me w/ Rails 2.3.2.</p>
http://stackoverflow.com/questions/716767/how-to-add-a-single-backslash-character-to-a-string-in-ruby/717057#7170574Answer by Jordan Brough for How to add a single backslash character to a string in Ruby?Jordan Brough2009-04-04T13:13:52Z2009-04-08T17:08:40Z<p>from <a href="http://www.ruby-doc.org/core/classes/String.html#M000832" rel="nofollow">ruby-doc.org</a> about the replacement pattern for <code>gsub</code>:</p>
<blockquote>
<p>the sequences \1, \2, and so on may be used to interpolate successive groups in the match</p>
</blockquote>
<p>This includes the sequence <code>\'</code>, which means "everything following what I matched". </p>
<p>Either <code>"\\'"</code> or <code>'\\\''</code> will both produce <code>\'</code> (remember that <code>\</code> has to be escaped in both double <em>and</em> single quoted strings, and that <code>'</code> has to be escaped in single-quoted strings, so using single-quotes in this case actually makes things <em>more</em> verbose). E.g.:</p>
<pre><code>puts "before*after".gsub("*", "\\'")
"beforeafterafter"
puts "before*after".gsub("*", '\\\'')
"beforeafterafter"
</code></pre>
<p>What you want <code>gsub</code> to see then is actually <code>\\'</code>, which can be produced by both <code>"\\\\'"</code> and <code>'\\\\\''</code>. So:</p>
<pre><code>puts s.gsub("'", "\\\\'")
children\'s world
puts s.gsub("'", '\\\\\'')
children\'s world
</code></pre>
<p>or if you have to do a lot with <code>\</code> you could take advantage of the fact that when you use <code>/.../</code> (or <code>%r{...}</code>) you don't have to double-escape the backslashes:</p>
<pre><code>puts s.gsub("'", /\\'/.source)
children\'s world
</code></pre>
http://stackoverflow.com/questions/687535/subclassed-model-results-in-nameerror-in-development-environment-but-not-in-test/687779#6877791Answer by Jordan Brough for Subclassed model results in NameError in development environment but not in testJordan Brough2009-03-26T22:21:21Z2009-04-08T15:55:43Z<p>It's not saying that <code>Fold</code> exists in the <code>Deal</code> namespace, it's saying that it's looking for the constant <code>Fold</code> and it's currently inside <code>Deal</code>. For example, try this:</p>
<pre><code>class Foo
def test; puts Bar; end
end
Foo.new.test
</code></pre>
<p>and you'll get this:</p>
<pre><code>NameError: uninitialized constant Foo::Bar
from (irb):3:in `test'
from (irb):7
from :0
</code></pre>
<p>Rails has stuff to auto-load constants for you and I'm guessing the problem is that you don't have the <code>Fold</code> class in its own file. Try putting the <code>Fold</code> class definition into it's own file -- <code>app/models/fold.rb</code> and see if that helps. If so, try putting it back in the action.rb file and then doing something that would cause the <code>Action</code> file to load before you do the <code>case</code> statement, like <code>x = Action</code> right before the case statment. If that works then you need to <code>require "action.rb"</code> in <code>deal.rb</code> because the issue is that your test code is loading action.rb (possibly through some other test) but your production code isn't.</p>
http://stackoverflow.com/questions/690664/rails-validatesuniquenessof-case-sensitivity/690851#6908516Answer by Jordan Brough for Rails "validates_uniqueness_of" Case SensitivityJordan Brough2009-03-27T18:03:07Z2009-04-06T16:59:05Z<p><code>validates_uniqueness_of :name, :case_sensitive => false</code> does the trick, but you should keep in mind that <code>validates_uniqueness_of</code> does <em>not</em> guarantee uniqueness if you have multiple servers/server processes (e.g. running Phusion Passenger, multiple Mongrels, etc) or a multi-threaded server. That's because you might get this sequence of events (the order is important):</p>
<ol>
<li>Process A gets a request to create a new user with the name 'foo'</li>
<li>Process B does the same thing</li>
<li>Process A validates the uniqueness of 'foo' by asking the DB if that name exists yet and the DB says the name doesn't exist yet.</li>
<li>Process B does the same thing and gets the same response</li>
<li>Process A submits the <code>insert</code> statement for the new record and succeeds</li>
<li>If you have a database constraint requiring uniqueness for that field, Process B will submit the <code>insert</code> statement for the new record and <em>fail</em> with a ugly server exception that comes back from the SQL adapter. If you do not have a database constraint, the insert will succeed and you now have two rows with 'foo' as the name.</li>
</ol>
<p>See also "Concurrency and integrity" in the <a href="http://api.rubyonrails.org/classes/ActiveRecord/Validations/ClassMethods.html#M002110" rel="nofollow"><code>validates_uniqueness_of</code></a> Rails documentation.</p>
<p>From <a href="http://pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition" rel="nofollow">Ruby on Rails 3rd Edition</a>:</p>
<blockquote>
<p>...despite its name, validates_uniqueness_of doesn’t really guarantee that column values will be unique. All it can do is verify that no column has the same value as that in the record being validated at the time the validation is performed. It’s possible for two records to be created at the same time, each with the same value for a column that should be unique, and for both records to pass validation. The most reliable way to enforce uniqueness is with a database-level constraint."</p>
</blockquote>
<p>See also <a href="http://blog.insoshi.com/2008/06/26/working-around-the-validates%5Funiqueness%5Fof-bug-in-ruby-on-rails/" rel="nofollow">this programmer's experience</a> with <code>validates_uniqueness_of</code>.</p>
<p>One way this commonly happens is accidental double-submissions from a web page when creating a new account. This is a hard one to solve because what the user will get back is the second (ugly) error and it will make them think their registration failed, when in reality it succeeded. The best way I've found to prevent this is just to use javascript to try to prevent double-submission.</p>
http://stackoverflow.com/questions/715179/passing-param-values-to-redirectto-as-querystring-in-rails/717119#7171193Answer by Jordan Brough for Passing param values to redirect_to as querystring in railsJordan Brough2009-04-04T13:49:41Z2009-04-06T16:54:59Z<p>The 'Record' form of <a href="http://api.rubyonrails.org/classes/ActionController/Base.html#M000637" rel="nofollow"><code>redirect_to</code></a> uses the second argument only for the response status. You'll have to use another form of redirect_to, like the 'String' form. e.g.:</p>
<pre><code>redirect_to thing_path(@thing, :foo => params[:foo])
</code></pre>
<p>which will work for nested <code>params[:foo]</code> params like you mentioned. Or, as Drew commented below, you can use <a href="http://api.rubyonrails.org/classes/ActionController/PolymorphicRoutes.html#M000466" rel="nofollow">polymorphic_url</a> (or _path):</p>
<pre><code>redirect_to polymorphic_path(@thing, :foo => params[:foo])
</code></pre>
http://stackoverflow.com/questions/715010/ruby-eval-behaves-differently-in-irb-versus-in-a-file/715159#7151595Answer by Jordan Brough for Ruby eval behaves differently in irb versus in a fileJordan Brough2009-04-03T18:46:22Z2009-04-03T18:46:22Z<p>It's because the <code>machine</code> variable was not already defined when <code>eval</code> was run. A more concise example:</p>
<h3>Works in IRB but not as a script</h3>
<pre><code>eval 'x = 3'
puts x # throws an exception when run as a script
=> 3
</code></pre>
<h3>Works in IRB and as a script</h3>
<pre><code>x = 1
eval 'x = 3'
puts x
=> 3
</code></pre>
<p>To <a href="http://groups.google.com/group/comp.lang.ruby/browse%5Fthread/thread/a954f8aaf698a0b9/e1c761b71b63b82e?#422ad5daee216181" rel="nofollow">quote Matz</a>:</p>
<blockquote>
<p>local variables should be determined at compile time, thus local
variables defined first in the eval'ed string, can only be accessed from
other eval'ed strings. In addition, they will be more ephemeral in
Ruby2, so that these variables will not be accessed from outside. </p>
</blockquote>
<p>The difference is that in IRB <em>everything</em> is being eval'd, so it's all in the same scope. That is, you're essentially doing this in IRB:</p>
<pre><code>eval 'x = 3'
eval 'puts x'
</code></pre>
<p>Which works both in IRB and as a script.</p>
http://stackoverflow.com/questions/707830/can-you-force-activerecord-associations-to-update-without-saving-them/710950#7109500Answer by Jordan Brough for Can you force activerecord associations to update without saving them?Jordan Brough2009-04-02T18:14:34Z2009-04-02T18:26:01Z<p>If you start off like this:</p>
<pre><code>client1 = the_server.clients.build(:name => 'a client', ...)
</code></pre>
<p>Then you should get what you're looking for I think.</p>
<p>EDIT:</p>
<p>Oops, I re-read your post and realized that <code>the_server</code> hasn't been saved yet either. In that case perhaps:</p>
<pre><code>client1.server = the_server
the_server.clients << client1
</code></pre>
<p>(be aware that this will save client1 if the_server is already saved)</p>
<p>or:</p>
<pre><code>the_server.clients.build(:name => 'some client', ..., :server => the_server)
</code></pre>
<p>A bit redundant so perhaps there's a better way out there.</p>
http://stackoverflow.com/questions/703876/linking-two-models-together-in-ruby-on-rails/704266#7042663Answer by Jordan Brough for Linking Two Models Together in Ruby on RailsJordan Brough2009-04-01T06:13:22Z2009-04-02T02:10:45Z<p>Unfortunately Rails doesn't let you nest has_many's more than 2 deep.. Forgetting about naming it <code>friends</code> for a moment (let's call it <code>users</code> instead), this would theoretically be what you'd want:</p>
<pre><code>has_many :group_memberships
has_many :groups, :through => :group_memberships
has_many :users, :through => groups
</code></pre>
<p>Except that this doesn't work. If you try it you'll see <a href="http://github.com/rails/rails/blob/v2.3.2/activerecord/lib/active%5Frecord/associations.rb#L33" rel="nofollow">this</a> not-so-helpful error message which comes from <a href="http://github.com/rails/rails/blob/v2.3.2/activerecord/lib/active%5Frecord/reflection.rb#L300-302" rel="nofollow">this</a> bit of code, specifically <code>source_reflection.options[:through].nil?</code>. That is, the <code>through</code> isn't allowed to have a <code>through</code> itself.</p>
<p>Instead, you may want to do something like this:</p>
<h2>Solution 1</h2>
<pre><code>class User < ActiveRecord::Base
has_many :group_memberships
has_many :groups, :through => :group_memberships
def friends
groups.with_users.map(&:users).flatten.uniq.reject{|u| u == self}
end
end
class Group < ActiveRecord::Base
has_many :group_memberships
has_many :users, :through => :group_memberships
named_scope :with_users, :include => :users
end
</code></pre>
<h2>Solution 2</h2>
<p>Use the <a href="http://github.com/ianwhite/nested_has_many_through/tree/master" rel="nofollow"><code>nested_has_many_through</code></a> plugin that Radar mentioned. It looks like at least <a href="http://github.com/ianwhite/nested_has_many_through/network" rel="nofollow">one fork</a> of it on github has been updated to work on the latest Rails.</p>
<h2>Solution 3 (just for kicks)</h2>
<p>or, just for kicks, you could do it with one big SQL query:</p>
<pre><code>class User < ActiveRecord::Base
has_many :group_memberships
has_many :groups, :through => :group_memberships
def friends
sql = <<-SQL
SELECT users.* FROM users, (
SELECT DISTINCT gm2.user_id AS user_id
FROM group_memberships gm, groups g, group_memberships gm2
WHERE gm.user_id = ? AND g.id = gm.group_id AND gm2.group_id = g.id AND gm2.user_id != ?
) AS user_ids
WHERE users.id = user_ids.user_id
SQL
User.find_by_sql([sql, id, id])
end
end
</code></pre>
http://stackoverflow.com/questions/698961/autofill-ids-in-a-form-with-a-relation/699942#6999420Answer by Jordan Brough for Autofill IDs in a form with a relationJordan Brough2009-03-31T03:56:58Z2009-03-31T04:14:06Z<p>If you want to ensure that a blogger's posts are associated with the correct user, then don't use a form field for this at all, since their values can be changed by the end user. Better to rely on the login system that you have and do something like this when the blog-post form is submitted:</p>
<pre><code>def create
@post = current_user.posts.build(params[:post])
if @post.save
...
else
...
end
end
</code></pre>
<p>This is assuming that you have a <code>current_user</code> method, perhaps in application.rb, that fetches the current user via your login system. Perhaps something like:</p>
<pre><code>def current_user
@current_user ||= User.find(session[:user_id])
end
</code></pre>
<p>and also assuming that you have put <code>has_many :posts</code> in User.rb.</p>
http://stackoverflow.com/questions/543868/including-spaces-while-using-w/689708#6897080Answer by Jordan Brough for including spaces while using %wJordan Brough2009-03-27T13:09:30Z2009-03-27T13:15:05Z<pre><code>def explain
puts "double quote equivalents"
p "a b c", %Q{a b c}, %Q(a b c), %(a b c), %<a b c>, %!a b c! # & etc
puts
puts "single quote equivalents"
p 'a b c', %q{a b c}, %q(a b c), %q<a b c>, %q!a b c! # & etc.
puts
puts "single-quote whitespace split equivalents"
p %w{a b c}, 'a b c'.split, 'a b c'.split(" ")
puts
puts "double-quote whitespace split equivalents"
p %W{a b c}, "a b c".split, "a b c".split(" ")
puts
end
explain
def extra_credit
puts "Extra Credit"
puts
test_class = Class.new do
def inspect() 'inspect was called' end
def to_s() 'to_s was called' end
end
puts "print"
print test_class.new
puts "(print calls to_s and doesn't add a newline)"
puts
puts "puts"
puts test_class.new
puts "(puts calls to_s and adds a newline)"
puts
puts "p"
p test_class.new
puts "(p calls inspect and adds a newline)"
puts
end
extra_credit
</code></pre>
http://stackoverflow.com/questions/687758/understanding-ruby-on-rails-render-times/687975#6879755Answer by Jordan Brough for Understanding Ruby on Rails render timesJordan Brough2009-03-26T23:47:36Z2009-03-26T23:47:36Z<p>This:</p>
<pre><code>Rendered user/_old_log (25.7ms)
</code></pre>
<p>is the time to render <em>just</em> the <code>_old_log</code> partial template, and comes from <a href="http://github.com/rails/rails/blob/v2.2.2/actionpack/lib/action%5Fview/renderable%5Fpartial.rb#L19" rel="nofollow">renderable_partial.rb:19</a> which ends up calling <a href="http://github.com/rails/rails/blob/v2.2.2/actionpack/lib/action%5Fcontroller/benchmarking.rb#L27" rel="nofollow">benchmarking.rb:27</a></p>
<p>This:</p>
<pre><code>Completed in 466ms
</code></pre>
<p>Is the total time for the entire request and comes from <a href="http://github.com/rails/rails/blob/v2.2.2/actionpack/lib/action%5Fcontroller/benchmarking.rb#L72" rel="nofollow">benchmarking.rb:72</a></p>
<p>These:</p>
<pre><code>(View: 195, DB: 8) | 200 OK
</code></pre>
<p>are the total times for rendering the entire view (partials & everything) and all database requests, respectively, and come from <a href="http://github.com/rails/rails/blob/v2.2.2/actionpack/lib/action%5Fcontroller/benchmarking.rb#L74-84" rel="nofollow">benchmarking.rb:74-84</a></p>
http://stackoverflow.com/questions/1627582/ruby-1-9-1-p234-passenger-2-2-5-rails-2-3-stable-closed-stream-on-post-request/1661661#1661661Comment by Jordan Brough on Ruby 1.9.1-p234, Passenger 2.2.5, Rails 2.3-stable closed stream on POST requestJordan Brough2009-11-23T00:07:15Z2009-11-23T00:07:15Zworked perfect, thankshttp://stackoverflow.com/questions/212425/creating-routes-with-an-optional-path-prefix/221125#221125Comment by Jordan Brough on Creating routes with an optional path prefixJordan Brough2009-06-30T19:22:33Z2009-06-30T19:22:33ZHere's another option I ran across today, haven't looked into it (routing-filter is working great) but might be of interest to others: <a href="http://github.com/raul/translate_routes" rel="nofollow">github.com/raul/translate_routes</a>http://stackoverflow.com/questions/212425/creating-routes-with-an-optional-path-prefix/221125#221125Comment by Jordan Brough on Creating routes with an optional path prefixJordan Brough2009-06-29T21:32:02Z2009-06-29T21:32:02ZThanks for the tip, this worked great for some translation/localization/internationalization work I'm doing. FYI, you don't have to add that file to your library -- the 'locale' filter is already included in the plugin. All you should have to do is:
1. Install the plugin.
2. Add <code>map.filter 'locale'</code> to your routes.rb.
After that it just starts working! Nice.
I also added <code>RoutingFilter::Locale.include_default_locale = false</code> to my environment.rb to avoid <code>/en</code> being in my links.
Works great, I hope Sven's plugin gets pulled into the Rails I18n codebase.http://stackoverflow.com/questions/715010/ruby-eval-behaves-differently-in-irb-versus-in-a-file/715159#715159Comment by Jordan Brough on Ruby eval behaves differently in irb versus in a fileJordan Brough2009-04-06T16:49:02Z2009-04-06T16:49:02ZYes, it seems to behave a lot like this: <code>1.times {a = 3}; puts a; # NameError: undefined local variable or method 'a' for main:Object</code> versus <code>a = 1; 1.times {a = 3}; puts a; # 3</code> Judging by the linked thread, Matz made it work this way out of convenience of implementation.http://stackoverflow.com/questions/716543/what-is-the-significance-for-ruby-programmers-of-saps-new-implementation-of-ruby/716625#716625Comment by Jordan Brough on What is the significance for Ruby programmers of SAP's new implementation of Ruby?Jordan Brough2009-04-04T13:22:42Z2009-04-04T13:22:42ZNote: Ruby 1.9 uses YARV (<a href="http://en.wikipedia.org/wiki/YARV" rel="nofollow">en.wikipedia.org/wiki/YARV</a>) (aka KRI). They're not still calling it MRI in 1.9, are they?http://stackoverflow.com/questions/703876/linking-two-models-together-in-ruby-on-rails/704266#704266Comment by Jordan Brough on Linking Two Models Together in Ruby on RailsJordan Brough2009-04-02T02:16:34Z2009-04-02T02:16:34ZThe solution w/ ugly SQL was just for fun. The first solution just has a named scope and some filtering, no SQL at all. The plugin you mentioned does look cool though.http://stackoverflow.com/questions/703876/linking-two-models-together-in-ruby-on-rails/707553#707553Comment by Jordan Brough on Linking Two Models Together in Ruby on RailsJordan Brough2009-04-02T01:43:47Z2009-04-02T01:43:47Z<code>delegate</code> would only work if it were <code>group</code>, not <code>groups</code>. Since <code>user.groups.users</code> doesn't work, <code>delegate :users, :to => 'groups'</code> wouldn't work either. <a href="http://api.rubyonrails.org/classes/Module.html#M000102" rel="nofollow">api.rubyonrails.org/classes/Module.html#M000102/…</a>