459 reputation
1516
bio website
location London, United Kingdom
age
visits member for 3 years, 11 months
seen Jul 8 '12 at 21:41
stats profile views 74

May
7
awarded  Self-Learner
Jan
11
awarded  Yearling
Sep
12
awarded  Nice Question
Aug
3
awarded  Popular Question
Jul
29
awarded  Popular Question
Jun
26
accepted Rails asset pipeline - how to include asset not in asset path?
Jun
24
answered Rails asset pipeline - how to include asset not in asset path?
Jun
24
comment Rails asset pipeline - how to include asset not in asset path?
And it's not possible to use render() either - see this question
Jun
24
revised Rails asset pipeline - how to include asset not in asset path?
More details
Jun
24
comment Rails asset pipeline - how to include asset not in asset path?
I thought maybe adding the .erb extension to the File.read() CSS filename would solve it (since it's being included in a file which is also an .erb file) but it's never that simple, is it?
Jun
24
revised Rails asset pipeline - how to include asset not in asset path?
added 6 characters in body
Jun
24
awarded  Yearling
Jun
24
asked Rails asset pipeline - how to include asset not in asset path?
Jun
13
accepted Setting which items are accepted by jQuery sortable
Jun
13
answered Setting which items are accepted by jQuery sortable
Jun
8
comment Setting which items are accepted by jQuery sortable
Thanks Thomas, that solves the initial dragging - but once an item has been dropped in a sortable there is nothing that stops users from dragging it into a list of the wrong class.
Jun
7
asked Setting which items are accepted by jQuery sortable
May
29
awarded  Famous Question
May
25
comment Tableless model with ActiveRecord associations in Rails 3.2
@mu: Yeah, I've now tortured myself with trying to use a hash constant as the data store (manually matching up with my models) but the pain became unbearable. Trying to do a list of checkboxes to toggle some values became an epic four hour battle and I'm forced to admit defeat. A tableless model as per my original plan would have been perfect, and conceptually very close to inserting the data at boot, but if it can't be done then your suggestion is the second best. Thanks for the input!
May
24
comment Tableless model with ActiveRecord associations in Rails 3.2
@mu: The data is app instance configuration data; part of it defines a list of what "things" are available in this particular instance. The convenience of being able to do instance.things (things are actual DB objects) instead of having to do things.where("stuff_id = #{STUFF[:id]}") would be nice, but the settings need to remain in a text file for ease of editing, deployment and backup.