forked from yfactorial/utility_scopes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utility_scopes.gemspec
22 lines (16 loc) · 1.11 KB
/
utility_scopes.gemspec
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.2"
s.date = "2008-10-28"
s.summary = "A collection of utilitarian named scopes providing common functionality for ActiveRecord models"
s.email = "[email protected]"
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