Displaying 2 results from an estimated 2 matches for "raphinou".
Did you mean:
raphink
2009 Dec 03
1
Ann: ArEvents
...nd the object fireing the
event:
class ArEventCommentListener
def self.trigger(evt, obj)
puts "event #{evt} triggered by object #{obj.inspect}"
end
end
I''m not yet using it in production, but tests pass as expected.
You can find the code at http://github.com/raphinou/ArEvents
All comments and suggestions are of course welcome!
Raphaƫl
--
Web database: http://www.myowndb.com
Free Software Developers Meeting: http://www.fosdem.org
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to...
2004 Oct 25
1
Rails 0.8: Just shy of 100 additions, changes, tweaks, and fixes!
...escaping to text_area helper.
* Added :overwrite_params to url_for and friends to keep the parameters
as they were passed to the current action and only overwrite a subset.
The regular :params will clear the slate so you need to manually add in
existing parameters if you want to reuse them. [raphinou]
* Fixed scaffolding problem with composite named objects [Moo Jester]
* Added the possibility for shared partials. Example:
<%= render_partial "advertisement/ad", ad %>
This will render the partial "advertisement/_ad.rhtml" regardless of
which controller this is...