mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
version 0.8.0: better isolation of contexts, numerous stability fixes. more accurate representation of the ruby runtime in javascript.
This commit is contained in:
parent
59ac87f37d
commit
1ae132a14e
4 changed files with 15 additions and 5 deletions
10
History.txt
10
History.txt
|
@ -1,3 +1,13 @@
|
||||||
|
=== 0.8.0 2010-12-02
|
||||||
|
* 3 major enhancements
|
||||||
|
* every V8 Context gets its own unique access strategy
|
||||||
|
* ruby methods and procs embedded in javascript always return the same function per context.
|
||||||
|
* ruby classes and subclasses are now all connected via the javascript prototype chain
|
||||||
|
* 3 minor enhancements
|
||||||
|
* better error reporting on syntax errors
|
||||||
|
* upgrade to rspec 2
|
||||||
|
* several bug fixes and stability fixes
|
||||||
|
|
||||||
=== 0.7.5 1010-08-03
|
=== 0.7.5 1010-08-03
|
||||||
* 4 major enhancements
|
* 4 major enhancements
|
||||||
* upgrade to V8 2.3.3
|
* upgrade to V8 2.3.3
|
||||||
|
|
2
Rakefile
2
Rakefile
|
@ -7,7 +7,7 @@ manifest.exclude "lib/v8/*.bundle", "lib/v8/*.so", "ext/**/test/*", "ext/**/test
|
||||||
Gem::Specification.new do |gemspec|
|
Gem::Specification.new do |gemspec|
|
||||||
$gemspec = gemspec
|
$gemspec = gemspec
|
||||||
gemspec.name = gemspec.rubyforge_project = "therubyracer"
|
gemspec.name = gemspec.rubyforge_project = "therubyracer"
|
||||||
gemspec.version = "0.8.0.pre3"
|
gemspec.version = "0.8.0"
|
||||||
gemspec.summary = "Embed the V8 Javascript interpreter into Ruby"
|
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.description = "Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript."
|
||||||
gemspec.email = "cowboyd@thefrontside.net"
|
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__)))
|
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
||||||
|
|
||||||
module V8
|
module V8
|
||||||
VERSION = '0.8.0.pre3'
|
VERSION = '0.8.0'
|
||||||
require 'v8/v8' #native glue
|
require 'v8/v8' #native glue
|
||||||
require 'v8/portal'
|
require 'v8/portal'
|
||||||
require 'v8/portal/functions'
|
require 'v8/portal/functions'
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
|
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
s.name = %q{therubyracer}
|
s.name = %q{therubyracer}
|
||||||
s.version = "0.8.0.pre3"
|
s.version = "0.8.0"
|
||||||
|
|
||||||
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") 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", "Bill Robertson"]
|
s.authors = ["Charles Lowell", "Bill Robertson"]
|
||||||
s.date = %q{2010-11-01}
|
s.date = %q{2010-12-03}
|
||||||
s.description = %q{Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript.}
|
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.email = %q{cowboyd@thefrontside.net}
|
||||||
s.executables = ["therubyracer", "v8"]
|
s.executables = ["therubyracer", "v8"]
|
||||||
|
|
Loading…
Add table
Reference in a new issue