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

prep files for 1.72.3 release

This commit is contained in:
Charles Lowell 2009-11-11 01:54:35 -05:00
parent 6239a0ba60
commit 11d42b3e3a
4 changed files with 17 additions and 4 deletions

View file

@ -1,3 +1,10 @@
=== 1.72.3 2009 11-11
* 1 major enhancement
* greatly simplified interface to context by unifying context and scope
* remove Context#open_std()
* remove Context#standard
* remove Context#init_standard_objects
=== 1.72.2 2009-11-10 === 1.72.2 2009-11-10
* 1 major enhancement: * 1 major enhancement:
* ability to limit the instruction count for a context * ability to limit the instruction count for a context

View file

@ -5,12 +5,18 @@ Rakefile
lib/rhino.rb lib/rhino.rb
lib/rhino/context.rb lib/rhino/context.rb
lib/rhino/java.rb lib/rhino/java.rb
lib/rhino/native_object.rb
lib/rhino/rhino-1.7R2.jar lib/rhino/rhino-1.7R2.jar
lib/rhino/ruby_object.rb
lib/rhino/wormhole.rb
script/console script/console
script/destroy script/destroy
script/generate script/generate
spec/rhino/context_spec.rb spec/rhino/context_spec.rb
spec/rhino/native_object_spec.rb
spec/rhino/wormhole_spec.rb
spec/spec.opts spec/spec.opts
spec/spec_helper.rb spec/spec_helper.rb
tasks/jruby.rake tasks/jruby.rake
tasks/rspec.rake tasks/rspec.rake
therubyrhino.gemspec

View file

@ -3,7 +3,7 @@ $:.unshift(File.dirname(__FILE__)) unless
module Rhino module Rhino
VERSION = '1.72.2' VERSION = '1.72.3'
require 'rhino/java' require 'rhino/java'
require 'rhino/context' require 'rhino/context'
require 'rhino/wormhole' require 'rhino/wormhole'

View file

@ -2,16 +2,16 @@
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{therubyrhino} s.name = %q{therubyrhino}
s.version = "1.72.1" s.version = "1.72.3"
s.platform = %q{jruby} s.platform = %q{jruby}
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Charles Lowell"] s.authors = ["Charles Lowell"]
s.date = %q{2009-11-09} s.date = %q{2009-11-11}
s.description = %q{Embed the Mozilla Rhino Javascript interpreter into Ruby} s.description = %q{Embed the Mozilla Rhino Javascript interpreter into Ruby}
s.email = ["cowboyd@thefrontside.net"] s.email = ["cowboyd@thefrontside.net"]
s.extra_rdoc_files = ["History.txt", "Manifest.txt"] s.extra_rdoc_files = ["History.txt", "Manifest.txt"]
s.files = ["History.txt", "Manifest.txt", "README.rdoc", "Rakefile", "lib/rhino.rb", "lib/rhino/context.rb", "lib/rhino/java.rb", "lib/rhino/rhino-1.7R2.jar", "script/console", "script/destroy", "script/generate", "spec/rhino/context_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/jruby.rake", "tasks/rspec.rake"] s.files = ["History.txt", "Manifest.txt", "README.rdoc", "Rakefile", "lib/rhino.rb", "lib/rhino/context.rb", "lib/rhino/java.rb", "lib/rhino/native_object.rb", "lib/rhino/rhino-1.7R2.jar", "lib/rhino/ruby_object.rb", "lib/rhino/wormhole.rb", "push.sh", "script/console", "script/destroy", "script/generate", "spec/rhino/context_spec.rb", "spec/rhino/native_object_spec.rb", "spec/rhino/wormhole_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/jruby.rake", "tasks/rspec.rake", "therubyrhino.gemspec"]
s.homepage = %q{http://github.com/cowboyd/therubyrhino} s.homepage = %q{http://github.com/cowboyd/therubyrhino}
s.rdoc_options = ["--main", "README.rdoc"] s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"] s.require_paths = ["lib"]