Skip to content

Commit d050fcc

Browse files
committed
gemspec for the locomotive version
1 parent 58128e2 commit d050fcc

File tree

1 file changed

+67
-0
lines changed

1 file changed

+67
-0
lines changed
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Generated by jeweler
2+
# DO NOT EDIT THIS FILE DIRECTLY
3+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4+
# -*- encoding: utf-8 -*-
5+
6+
Gem::Specification.new do |s|
7+
s.name = %q{locomotive_mongoid_acts_as_tree}
8+
s.version = "0.1.5.1"
9+
10+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11+
s.authors = ["Jakob Vidmar, Aliaksandr Rahalevich"]
12+
s.date = %q{2010-10-13}
13+
s.description = %q{Port of the old, venerable ActsAsTree with a bit of a twist}
14+
s.email = ["saksmlz@gmail.com", "didier@nocoffee.fr"]
15+
s.extra_rdoc_files = [
16+
"LICENSE",
17+
"README.rdoc"
18+
]
19+
s.files = [
20+
".document",
21+
".gitignore",
22+
"CHANGELOG",
23+
"LICENSE",
24+
"README.rdoc",
25+
"Rakefile",
26+
"VERSION",
27+
"lib/mongoid_acts_as_tree.rb",
28+
"mongoid_acts_as_tree.gemspec",
29+
"test/helper.rb",
30+
"test/models/category.rb",
31+
"test/models/ordered_category.rb",
32+
"test/test_order.rb",
33+
"test/test_tree.rb"
34+
]
35+
s.homepage = %q{http://github.com/saks/mongoid_acts_as_tree}
36+
s.rdoc_options = ["--charset=UTF-8"]
37+
s.require_paths = ["lib"]
38+
s.rubygems_version = %q{1.3.7}
39+
s.summary = %q{ActsAsTree plugin for Mongoid}
40+
s.test_files = [
41+
"test/helper.rb",
42+
"test/models/category.rb",
43+
"test/models/ordered_category.rb",
44+
"test/test_order.rb",
45+
"test/test_tree.rb"
46+
]
47+
48+
if s.respond_to? :specification_version then
49+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
50+
s.specification_version = 3
51+
52+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
53+
s.add_runtime_dependency(%q<mongoid>, ["<= 2.0.0.beta.19"])
54+
s.add_runtime_dependency(%q<bson>, [">= 0.20.1"])
55+
s.add_development_dependency(%q<shoulda>, [">= 2.10.2"])
56+
else
57+
s.add_dependency(%q<mongoid>, ["<= 2.0.0.beta.19"])
58+
s.add_dependency(%q<bson>, [">= 0.20.1"])
59+
s.add_dependency(%q<shoulda>, [">= 2.10.2"])
60+
end
61+
else
62+
s.add_dependency(%q<mongoid>, ["<= 2.0.0.beta.19"])
63+
s.add_dependency(%q<bson>, [">= 0.20.1"])
64+
s.add_dependency(%q<shoulda>, [">= 2.10.2"])
65+
end
66+
end
67+

0 commit comments

Comments
 (0)