0
votes
Learning Ruby on Rails
There is a site called Softies on Rails that is written by a couple of ex-.NET developers that may be of some use. They have a book calle …
9
votes
What is the easiest way to duplicate an activerecord record?
To get a copy, use the clone method:
new_record = old_record.clone
Then you can change whichever fields you want.
…
2
votes
Multi page forms in Rails
For overall design, you might want to look into the concept of a Presenter layer (Jay Fields defines it in his blog entry …
3
votes
Organisation of routes in Rails — restful_authentication, session and /login
map.resource :session creates a few named resources for you including new_session_path (see …
1
vote
How do I access a nested model from view?
One way to do this would be to create a method in your Episode class called show_name like so:
def show_name
show.name
end
The last symbol you are p …
1
vote
Sort tag cloud alphabetically in acts_as_taggable_on_steroids
Here is what I am doing on my site to sort my tags by name:
<% tag_cloud Post.tag_counts.sort { |x, y| x.name <=> y.name }, %w(x-small small normal large x-large) do |tag, …
0
votes
Getting renders to recognize custom routing paths
Change render :action => 'new' to redirect_to login_path
…
2
votes
RedCloth’s odd support of the <del> tag
Looks like RedCloth needs a little more syntax to interpret the delete tag as the first element after a list item...
>> RedCloth.new("foobar\n* [-blah-]").to_html
=> "<p …
1
vote
Rails: Is there an equivalent to save_without_validation which skips after_save filters?
There is a good example of extending ActiveRecord to provide callback skipping here: http://integrumbles.com/tags/ActiveRecord …
4
votes
undefined method rails question
In config/routes.rb you will need to add:
map.resources :questions
to fix the undefined method questions_path problem.
One way to get /q …
3
votes
Cycling through array of objects within view in Rails: unexpected behaviour
You should be using @garden.plants.each instead of collect. Collect should be used to filter array results not to loop over them.
…
3
votes
Layer Supertype in ActiveRecord (Rails)
Try using an abstract class for your domain object.
class DomainObject < ActiveRecord::Base
self.abstract_class = true
# your stuff goes here
end
With an ab …
1
vote
Layer Supertype in ActiveRecord (Rails)
Another method that I used at a previous job for stripping HTML tags from models is to create a plugin. We stripped a lot more than just HTML tags, but here is the HTML stripping portion:
T …
0
votes
Find Project by Permalink, 404 if not found
I assume are getting a 500 error because your show action is trying to reference attributes of @project when the find is returning nil
You need to check to make su …
1
vote
does cloning affect activerecord callbacks?
From the look of your class descriptions, I would not expect a cascading delete when you destroy a Schedule object. If you delete a Project object, then Rails should go through child Tasks and Sche …
