jdl

1,744
reputation
172 views

Registered User

name jdl
member for 1 year
seen 1 hour ago
website
location Minneapolis, MN
age
Programmer, disc golfer, board gamer
1d
accepted handling BC dates in Ruby on Rails
Dec
18
accepted Move this logic into the find method?
Dec
18
answered Move this logic into the find method?
Dec
18
answered handling BC dates in Ruby on Rails
Nov
11
comment Safe ERB Language?
You're letting your end users enter the template language code itself? I'm not sure what you're trying to accomplish here.
Nov
8
accepted Automatically set child.parent_id when parent.children<< child ?
Nov
8
comment Automatically set child.parent_id when parent.children<< child ?
See my edit above about validations. Posting your model code would help, if that isn't it.
Nov
8
revised Automatically set child.parent_id when parent.children<< child ?
added 185 characters in body; added 2 characters in body
Nov
7
comment Automatically set child.parent_id when parent.children<< child ?
Could 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?
Nov
7
answered Automatically set child.parent_id when parent.children<< child ?
Oct
25
revised How to format this international phone number in Rails?
edited tags
Oct
22
comment Variable that’s accessible to anything in the controller in Rails
I 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.
Oct
22
answered How do I check between 2 arrays of different objects?
Oct
14
answered How to programmatically list all controllers in Rails
Oct
13
awarded  Fanatic
Oct
9
comment Ruby on Rails and jeditable (jquery)
You can un-clunk that case statement and simply return this: format.js { render :text => @email.send(params[:wants]) }
Oct
8
comment Letting a template and multiple partials add to the layout
It sure seems like content_for is exactly what you need here. Can you post an example of it not working?
Oct
5
accepted [Rails] Routing: resource_path or resource_url?
Oct
4
answered [Rails] Routing: resource_path or resource_url?
Oct
4
comment has_many while respecting build strategy in factory_girl
Nice. 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)}
Sep
30
answered Rails console scrollback
Sep
29
accepted How do you access the session from within an ActionMailer class?
Sep
27
comment has_many :through issue with new records
Also, 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.
Sep
27
comment has_many :through issue with new records
That 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.
Sep
27
answered has_many :through issue with new records
Sep
26
accepted How can I update a record if it is added to an association?
Sep
26
answered How can I update a record if it is added to an association?
Sep
26
accepted validates_uniqueness_of passes on nil or blank (without allow_nil and allow_blank)
Sep
26
revised validates_uniqueness_of passes on nil or blank (without allow_nil and allow_blank)
added 339 characters in body
Sep
26
comment validates_uniqueness_of passes on nil or blank (without allow_nil and allow_blank)
+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.
Sep
26
answered validates_uniqueness_of passes on nil or blank (without allow_nil and allow_blank)
Sep
25
accepted (Rails) Managing a tree without javascript?
Sep
24
answered Multiple multi-line HAML blocks
Sep
24
accepted How to reference a relative path in Rails?
Sep
24
accepted How do attribute query methods work?
Sep
24
accepted Get the value of a model field as it is in the database
Sep
24
answered How do attribute query methods work?
Sep
24
answered Get the value of a model field as it is in the database
Sep
23
comment Creating and testing a default record in Rails
Agreed, especially if "different data" is coming from a factory for the unit tests.
Sep
23
answered How do you access the session from within an ActionMailer class?
Sep
23
comment Rails app - how to enter events in local time zone
Right. Take the example that he gave for users and apply that to events.
Sep
23
comment How to reference a relative path in Rails?
Rails sets RAILS_ROOT for you when the app starts.
Sep
23
answered How to reference a relative path in Rails?
Sep
23
answered Rails app - how to enter events in local time zone
Sep
19
accepted Is Rails-2.3 stable? Does anyone have any problems with it?
Sep
19
revised Is Rails-2.3 stable? Does anyone have any problems with it?
added 203 characters in body; added 62 characters in body
Sep
19
answered Is Rails-2.3 stable? Does anyone have any problems with it?
Sep
16
comment rails and jquery: script displayed instead of execution
Can you try it with bind instead of live, just to rule out a jQuery oddity?
Sep
16
answered Using Passenger 2.2.5, why am I getting the following error on my Ruby on Rails page about an unreferenced “/” ?
Sep
16
comment Using Passenger 2.2.5, why am I getting the following error on my Ruby on Rails page about an unreferenced “/” ?
The error message says "unexpected" not "unreferenced." Unless you post your controller code, how is anyone supposed to know what you did wrong?