1
vote
2answers
103 views
RedCloth’s odd support of the <del> tag
I am using RedCloth with Rails 2.1.1. The Textile <del> tag markup format (i.e. -delete-) was not translating at all. Tried a few choice options.
> x=RedCloth …
4
votes
2answers
101 views
Getting renders to recognize custom routing paths
So I have a snazzy custom route for login
# routes.rb
map.login '/login', :controller => 'sessions', :action => 'new'
Visit www.asite.com/login and you're th …
1
vote
3answers
147 views
Sharing code in respond_to blocks
I have the following before_filter:
def find_current_membership
respond_to do |wants|
wants.html { @current_membership = @group.memberships.for(@current_use …
2
votes
Name of class from its object
If you want to test for an instance of a specific class, I'd go with something like:
@list.is_a?(List)
…
1
vote
