gist: 1096 Download_button fork
public
Public Clone URL: git://gist.github.com/1096.git
Ruby
1
2
3
4
5
6
7
module WithScopes
  def with_scopes(*named_scopes)
    named_scopes.inject(self) { |klass, scope| klass.send(scope) }
  end
end
 
ActiveRecord::Base.extend(WithScopes)

Owner

nakajima

Revisions