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

release 0.4.3

This commit is contained in:
Charles Lowell 2010-01-11 09:45:45 +02:00
parent edcfb33699
commit 63ad2a239d
3 changed files with 21 additions and 5 deletions

View file

@ -1,4 +1,20 @@
=== 0.0.1 2009-12-14
=== 0.4.3 2010-10-11
* N major enhancements:
* access properties on Ruby objects with their camel case equivalents
* reflect JavaScript objects into Ruby and access their properties
* load JavaScript source from an IO object or by filename
=== 0.4.2 2010-10-10
* 1 major enhancement:
* Initial release
* embed Ruby Objects into Javascript and call their methods
=== 0.4.1 2010-01-09
* 3 major enhancements:
* embed bare Proc and Method objects into JavaScript and call them
* catch JavaScript exceptions from Ruby
=== 0.4.0 2009-12-21
* 1 major enhancements:
* evaluate JavaScript code from inside Ruby.

View file

@ -2,7 +2,7 @@ $:.unshift(File.dirname(__FILE__)) unless
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
module V8
VERSION = '0.4.2'
VERSION = '0.4.3'
require 'v8/v8' #native glue
require 'v8/to'
require 'v8/context'

View file

@ -2,11 +2,11 @@
Gem::Specification.new do |s|
s.name = %q{therubyracer}
s.version = "0.4.1"
s.version = "0.4.3"
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-01-10}
s.date = %q{2010-01-11}
s.description = %q{Embed the V8 Javascript interpreter into Ruby.}
s.email = ["cowboyd@thefrontside.net", "billrobertson42@gmail.com"]
s.extensions = ["ext/v8/extconf.rb"]