public
Description: A collection of utilitarian named scopes for your ActiveRecord models.
Homepage:
Clone URL: git://github.com/yfactorial/utility_scopes.git
utility_scopes / utility_scopes.gemspec
100644 22 lines (16 sloc) 1.137 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Gem::Specification.new do |s|
  
  s.name = "utility_scopes"
  s.version = "0.2.3"
  s.date = "2009-09-16"
  
  s.summary = "A collection of utilitarian named scopes providing common functionality for ActiveRecord models"
  s.email = "ryan@yfactorial.com"
  s.homepage = "http://github.com/yfactorial/utility_scopes"
  s.description = "A collection of utilitarian named scopes providing common functionality for ActiveRecord models."
  
  
  s.authors = ["Ryan Daigle"]
  s.has_rdoc = true
  s.rdoc_options = ['--main', 'README.textile']
  s.rdoc_options << '--inline-source' << '--charset=UTF-8'
  s.extra_rdoc_files = ['README.textile', 'Rakefile', 'LICENSE', 'CHANGELOG']
 
  s.add_dependency 'activerecord', ['>= 2.1.0']
  
  s.files = %w(README.textile Rakefile LICENSE CHANGELOG init.rb lib lib/utility_scopes lib/utility_scopes.rb lib/utility_scopes/eager.rb lib/utility_scopes/except.rb lib/utility_scopes/limited.rb lib/utility_scopes/ordered.rb spec spec/abstract_spec.rb spec/eager_spec.rb spec/except_spec.rb spec/limit_spec.rb spec/ordered_spec.rb spec/spec_helper.rb spec/fixtures spec/fixtures/article.rb)
end