1
0
Fork 0
mirror of https://github.com/rubyjs/therubyrhino synced 2023-03-27 23:21:34 -04:00

update manifest so that it successfully builds the gem.

This commit is contained in:
Charles Lowell 2010-08-09 14:29:41 -05:00
parent a6dfaf3488
commit b4cc982aec
2 changed files with 11 additions and 7 deletions

View file

@ -15,9 +15,10 @@ lib/rhino/wormhole.rb
script/console
script/destroy
script/generate
spec/redjs/README.txt
spec/redjs/jsapi_spec.rb
spec/redjs_helper.rb
spec/rhino/context_spec.rb
spec/rhino/native_object_spec.rb
spec/rhino/ruby_object_spec.rb
spec/rhino/wormhole_spec.rb
spec/spec.opts
spec/spec_helper.rb

View file

@ -7,7 +7,7 @@ Gem::Specification.new do |s|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Charles Lowell"]
s.date = %q{2009-11-30}
s.date = %q{2010-08-09}
s.description = %q{Embed the Mozilla Rhino Javascript interpreter into Ruby}
s.email = ["cowboyd@thefrontside.net"]
s.extra_rdoc_files = ["History.txt", "Manifest.txt"]
@ -16,7 +16,7 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{therubyrhino}
s.rubygems_version = %q{1.3.5}
s.rubygems_version = %q{1.3.6}
s.summary = %q{Embed the Rhino Javascript engine into JRuby}
if s.respond_to? :specification_version then
@ -24,11 +24,14 @@ Gem::Specification.new do |s|
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<hoe>, [">= 2.3.3"])
s.add_development_dependency(%q<rubyforge>, [">= 2.0.4"])
s.add_development_dependency(%q<hoe>, [">= 2.6.1"])
else
s.add_dependency(%q<hoe>, [">= 2.3.3"])
s.add_dependency(%q<rubyforge>, [">= 2.0.4"])
s.add_dependency(%q<hoe>, [">= 2.6.1"])
end
else
s.add_dependency(%q<hoe>, [">= 2.3.3"])
s.add_dependency(%q<rubyforge>, [">= 2.0.4"])
s.add_dependency(%q<hoe>, [">= 2.6.1"])
end
end