Skip to content
This repository has been archived by the owner on Sep 9, 2021. It is now read-only.

Commit

Permalink
gemspec generated
Browse files Browse the repository at this point in the history
  • Loading branch information
saks committed Jun 15, 2010
1 parent 7eb56b5 commit bd9ac0c
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions mongoid_acts_as_tree.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{mongoid_acts_as_tree}
s.version = "0.1.1"
s.version = "0.1.3"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jakob Vidmar, Aliaksandr Rahalevich"]
s.date = %q{2010-04-05}
s.date = %q{2010-06-15}
s.description = %q{Port of the old, venerable ActsAsTree with a bit of a twist}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
Expand All @@ -35,29 +35,32 @@ Gem::Specification.new do |s|
s.homepage = %q{http://github.com/saks/mongoid_acts_as_tree}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.6}
s.rubygems_version = %q{1.3.7}
s.summary = %q{ActsAsTree plugin for Mongoid}
s.test_files = [
"test/test_tree.rb",
"test/test_order.rb",
"test/models/category.rb",
"test/test_order.rb",
"test/models/ordered_category.rb",
"test/helper.rb"
"test/models/category.rb",
"test/helper.rb",
"test/test_tree.rb"
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<mongoid>, ["<= 2.0.0"])
s.add_runtime_dependency(%q<bson>, [">= 0.20.1"])
s.add_development_dependency(%q<shoulda>, [">= 2.10.2"])
else
s.add_dependency(%q<mongoid>, ["<= 2.0.0"])
s.add_dependency(%q<bson>, [">= 0.20.1"])
s.add_dependency(%q<shoulda>, [">= 2.10.2"])
end
else
s.add_dependency(%q<mongoid>, ["<= 2.0.0"])
s.add_dependency(%q<bson>, [">= 0.20.1"])
s.add_dependency(%q<shoulda>, [">= 2.10.2"])
end
end
Expand Down

0 comments on commit bd9ac0c

Please sign in to comment.