1
2
3
4
def method_missing(m, *args)      
  unless m.to_s[0, 8] == 'deliver_'
    from params[:email]
...

Ruby On Action Mailer - It has to b...

by namxam, March 02, 2008 20:36

Haven't had much sleep and ...

991b8de70c5edb062ddfe8cd9b59277e Talk
1
<%= add_associated_link 'Email', "Add another" %>

Ruby On Combining add/remove links

by namxam, October 17, 2007 21:02 Star_fullStar_fullStar_full

If you look a little bit cl...

991b8de70c5edb062ddfe8cd9b59277e Talk
1
2
3
4
class String
	def to_clean_english(bad_words = %w(stupid moron dumbass retard))
	  bad_words.inject(self) { |clean_sentence, insult| clean_sentence.gsub /#{insult}/i, '*' * insult.size }
...

Ruby On Rubyize this : 3rd edition

by namxam, October 17, 2007 11:01 Star_fullStar_fullStar_fullStar_full

Based on the nice code from...

991b8de70c5edb062ddfe8cd9b59277e Talk