zeke (owner)

Revisions

gist: 215776 Download_button fork
public
Public Clone URL: git://gist.github.com/215776.git
Embed All Files: show embed
datamapper_scopes.rb #
1
2
3
4
5
6
7
8
9
10
11
class Zoo
  # all the keys and property setup here
  def self.open
    all(:open => true)
  end
  def self.big
    all(:animal_count => 1000)
  end
end
 
big_open_zoos = Zoo.big.open