Method: Her::Model::Relation#method_missing
- Defined in:
- lib/castle-her/model/relation.rb
#method_missing(method, *args, &blk) ⇒ Object
Bubble all methods to the fetched collection
44 45 46 |
# File 'lib/castle-her/model/relation.rb', line 44 def method_missing(method, *args, &blk) fetch.send(method, *args, &blk) end |