From 3ef6f0355a53dad217763a46e1b503b44af3933b Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Wed, 17 Feb 2010 07:08:45 -0600 Subject: [PATCH] 0.5.1: minor bug fix for 1.8.6 --- History.txt | 4 ++++ Rakefile | 2 +- lib/v8.rb | 2 +- therubyracer.gemspec | 6 +++--- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/History.txt b/History.txt index 26ae45e..7558186 100644 --- a/History.txt +++ b/History.txt @@ -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 diff --git a/Rakefile b/Rakefile index 8063af1..7537560 100644 --- a/Rakefile +++ b/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" diff --git a/lib/v8.rb b/lib/v8.rb index 68d3567..fb998bf 100644 --- a/lib/v8.rb +++ b/lib/v8.rb @@ -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' diff --git a/therubyracer.gemspec b/therubyracer.gemspec index b5b6fec..efdf428 100644 --- a/therubyracer.gemspec +++ b/therubyracer.gemspec @@ -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"