forked from benedikt/mongoid-tree
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmongoid-tree.gemspec
More file actions
21 lines (18 loc) · 930 Bytes
/
mongoid-tree.gemspec
File metadata and controls
21 lines (18 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |s|
s.name = 'mongoid-tree'
s.version = '0.2.1'
s.platform = Gem::Platform::RUBY
s.authors = ['Benedikt Deicke']
s.email = ['benedikt@synatic.net']
s.homepage = 'http://github.com/benedikt/mongoid-tree'
s.summary = 'A tree structure for Mongoid documents'
s.description = 'A tree structure for Mongoid documents using the materialized path pattern'
s.has_rdoc = true
s.rdoc_options = ['--main', 'README.rdoc', '--charset=UTF-8']
s.extra_rdoc_files = ['README.rdoc', 'LICENSE']
s.files = Dir.glob('{lib,spec}/**/*') + %w(LICENSE README.rdoc Rakefile Gemfile Gemfile.lock .rspec)
s.add_runtime_dependency('mongoid', ['>= 2.0.0.beta.14'])
s.add_development_dependency('rspec', ['>= 2.0.0.beta.18'])
s.add_development_dependency('autotest', ['>= 4.3.2'])
s.add_development_dependency('hanna', ['>= 0.1.12'])
end