mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
0.5.1: minor bug fix for 1.8.6
This commit is contained in:
parent
7024f18503
commit
3ef6f0355a
4 changed files with 9 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
|||
=== 0.5.1 2010-02-17
|
||||
* 1 minor enhancement
|
||||
* fix bug in 1.8.6 by creating Object#tap if it does not exist
|
||||
|
||||
=== 0.5.0 2010-02-17
|
||||
* 1 major enhancement
|
||||
* support for Linux 64 bit
|
||||
|
|
2
Rakefile
2
Rakefile
|
@ -9,7 +9,7 @@ begin
|
|||
require 'jeweler'
|
||||
Jeweler::Tasks.new do |gemspec|
|
||||
gemspec.name = gemspec.rubyforge_project = "therubyracer"
|
||||
gemspec.version = "0.5.0"
|
||||
gemspec.version = "0.5.1"
|
||||
gemspec.summary = "Embed the V8 Javascript interpreter into Ruby"
|
||||
gemspec.description = "Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript."
|
||||
gemspec.email = "cowboyd@thefrontside.net"
|
||||
|
|
|
@ -2,7 +2,7 @@ $:.unshift(File.dirname(__FILE__)) unless
|
|||
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
||||
|
||||
module V8
|
||||
VERSION = '0.5.0'
|
||||
VERSION = '0.5.1'
|
||||
require 'v8/v8' #native glue
|
||||
require 'v8/to'
|
||||
require 'v8/context'
|
||||
|
|
|
@ -5,11 +5,11 @@
|
|||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = %q{therubyracer}
|
||||
s.version = "0.5.0"
|
||||
s.version = "0.5.1"
|
||||
|
||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||
s.authors = ["Charles Lowell", "Bill Robertson"]
|
||||
s.date = %q{2010-02-16}
|
||||
s.date = %q{2010-02-17}
|
||||
s.description = %q{Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript.}
|
||||
s.email = %q{cowboyd@thefrontside.net}
|
||||
s.extensions = ["ext/v8/extconf.rb"]
|
||||
|
@ -639,6 +639,7 @@ Gem::Specification.new do |s|
|
|||
"lib/v8.rb",
|
||||
"lib/v8/context.rb",
|
||||
"lib/v8/object.rb",
|
||||
"lib/v8/tap.rb",
|
||||
"lib/v8/to.rb",
|
||||
"script/console",
|
||||
"script/destroy",
|
||||
|
@ -662,7 +663,6 @@ Gem::Specification.new do |s|
|
|||
"spec/ext/cxt_spec.rb",
|
||||
"spec/ext/obj_spec.rb",
|
||||
"spec/redjs/jsapi_spec.rb",
|
||||
"spec/redjs/tap.rb",
|
||||
"spec/redjs_helper.rb",
|
||||
"spec/spec_helper.rb",
|
||||
"spec/v8/to_spec.rb"
|
||||
|
|
Loading…
Reference in a new issue