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

0.8.0.pre3 -- includes js setters from ruby.

This commit is contained in:
Charles Lowell 2010-11-01 13:37:36 -05:00
parent 1593a644f7
commit 514ce122fa
3 changed files with 5 additions and 5 deletions

View file

@ -7,7 +7,7 @@ manifest.exclude "lib/v8/*.bundle", "lib/v8/*.so", "ext/**/test/*", "ext/**/test
Gem::Specification.new do |gemspec|
$gemspec = gemspec
gemspec.name = gemspec.rubyforge_project = "therubyracer"
gemspec.version = "0.8.0.pre2"
gemspec.version = "0.8.0.pre3"
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"

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.8.0.pre2'
VERSION = '0.8.0.pre3'
require 'v8/v8' #native glue
require 'v8/portal'
require 'v8/portal/functions'

File diff suppressed because one or more lines are too long