1
vote
Subclassed model results in NameError in development environment but not in test
It's not saying that Fold exists in the Deal namespace, it's saying that it's looking for the constant Fold and it's currently inside Deal. For …
0
votes
including spaces while using %w
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 …
6
votes
Rails “validates_uniqueness_of” Case Sensitivity
validates_uniqueness_of :name, :case_sensitive => false does the trick, but you should keep in mind that validates_uniqueness_of does not guarantee uniqueness …
0
votes
Autofill IDs in a form with a relation
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 …
3
votes
Linking Two Models Together in Ruby on Rails
Unfortunately Rails doesn't let you nest has_many's more than 2 deep.. Forgetting about naming it friends for a moment (let's call it users instead), this would theoretic …
5
votes
Ruby eval behaves differently in irb versus in a file
It's because the machine variable was not already defined when eval was run. A more concise example:
Works in IRB but not as a script
eval 'x = …
4
votes
How to add a single backslash character to a string in Ruby?
from ruby-doc.org about the replacement pattern for gsub:
the sequences \1, …
3
votes
Passing param values to redirect_to as querystring in rails
The 'Record' form of redirect_to uses the second argument only for the response statu …
