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

0.7.1: call JavaScript methods and constructors from Ruby. Add Jasmine testing framework to contrib

This commit is contained in:
Charles Lowell 2010-06-03 16:27:15 +03:00
parent 5d8ef087c9
commit ed1d49ad7e
4 changed files with 18 additions and 4 deletions

View file

@ -1,3 +1,17 @@
=== 0.7.1 2010-06-03
* 5 major enhancements
* Function#call() now uses the global scope for 'this' by default
* Function#methodcall() added to allow passing in 'this' object
* Function#new() method to invoke javascript constructor from ruby
* access javascript properties and call javascript methods from ruby
* bundled Jasmine DOM-Less browser testing framework.
* 3 minor enhancements
* added Object::GetHiddenValue() to v8 metal
* added Handle::IsEmpty() to v8 metal
* fixed bug where iterating over arrays sometimes failed
* numerous bug /segfault fixes.
=== 0.7.0 2010-05-31
* 10 major enhancements
* upgraded to V8 2.1.10

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.7.1.pre"
gemspec.version = "0.7.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"

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.7.1.pre'
VERSION = '0.7.1'
require 'v8/v8' #native glue
require 'v8/to'
require 'v8/context'

View file

@ -2,9 +2,9 @@
Gem::Specification.new do |s|
s.name = %q{therubyracer}
s.version = "0.7.1.pre"
s.version = "0.7.1"
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.date = %q{2010-06-03}
s.description = %q{Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript.}