mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
cli was calling removed open method
This commit is contained in:
parent
68e8fc1454
commit
ea6bd6f942
2 changed files with 3 additions and 3 deletions
|
@ -31,7 +31,7 @@ module V8
|
||||||
elsif options.selftest
|
elsif options.selftest
|
||||||
self.test
|
self.test
|
||||||
end
|
end
|
||||||
Context.open(:with => Shell.new) do |cxt|
|
Context.new(:with => Shell.new) do |cxt|
|
||||||
for libfile in options.libs do
|
for libfile in options.libs do
|
||||||
load(cxt,libfile)
|
load(cxt,libfile)
|
||||||
end
|
end
|
||||||
|
|
|
@ -16,14 +16,14 @@ Gem::Specification.new do |s|
|
||||||
s.homepage = %q{http://github.com/cowboyd/therubyracer}
|
s.homepage = %q{http://github.com/cowboyd/therubyracer}
|
||||||
s.require_paths = ["lib", "ext"]
|
s.require_paths = ["lib", "ext"]
|
||||||
s.rubyforge_project = %q{therubyracer}
|
s.rubyforge_project = %q{therubyracer}
|
||||||
s.rubygems_version = %q{1.3.5}
|
s.rubygems_version = %q{1.3.7}
|
||||||
s.summary = %q{Embed the V8 Javascript interpreter into Ruby}
|
s.summary = %q{Embed the V8 Javascript interpreter into Ruby}
|
||||||
|
|
||||||
if s.respond_to? :specification_version then
|
if s.respond_to? :specification_version then
|
||||||
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
||||||
s.specification_version = 3
|
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
|
||||||
else
|
else
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue