mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
version 0.4.5: ruby getter and setter love
This commit is contained in:
parent
1dd55ffa77
commit
1bca954576
4 changed files with 11 additions and 6 deletions
10
History.txt
10
History.txt
|
@ -1,6 +1,10 @@
|
|||
=== 0.X.X 2010-01-XX
|
||||
* N major enhancements
|
||||
* N minor enhancements
|
||||
=== 0.4.5 2010-01-18
|
||||
* 3 major enhancements
|
||||
* case munging so that ruby methods(perl_case) are accessed through javascript in camelCase.
|
||||
* access 0-arity ruby methods as javascript properties
|
||||
* invoke ruby setters from javascript as properties
|
||||
* 1 minor enhancements
|
||||
* contexts detect whether they are open or not and open when needed
|
||||
|
||||
=== 0.4.4 2010-01-14
|
||||
* 2 major enhancements:
|
||||
|
|
|
@ -48,5 +48,6 @@ spec/redjs/jsapi_spec.rb
|
|||
spec/redjs_helper.rb
|
||||
spec/spec.opts
|
||||
spec/spec_helper.rb
|
||||
spec/v8/to_spec.rb
|
||||
tasks/rspec.rake
|
||||
therubyracer.gemspec
|
||||
|
|
|
@ -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.4'
|
||||
VERSION = '0.4.5'
|
||||
require 'v8/v8' #native glue
|
||||
require 'v8/to'
|
||||
require 'v8/context'
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = %q{therubyracer}
|
||||
s.version = "0.4.4"
|
||||
s.version = "0.4.5"
|
||||
|
||||
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-14}
|
||||
s.date = %q{2010-01-18}
|
||||
s.description = %q{Embed the V8 Javascript interpreter into Ruby.}
|
||||
s.email = ["cowboyd@thefrontside.net", "billrobertson42@gmail.com"]
|
||||
s.extensions = ["ext/v8/extconf.rb"]
|
||||
|
|
Loading…
Reference in a new issue