mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
0.5.0: Support for Linux 64bit
This commit is contained in:
parent
681b02e08c
commit
95be39a32f
3 changed files with 7 additions and 3 deletions
|
@ -1,6 +1,10 @@
|
|||
=== 0.5.0 2010-02-17
|
||||
* 1 major enhancement
|
||||
* support for Linux 64 bit
|
||||
|
||||
=== 0.4.9 2010-02-16
|
||||
* 1 major enhancement
|
||||
* support for Linux 32/64 bit
|
||||
* support for Linux 32 bit
|
||||
|
||||
=== 0.4.8 2010-02-08
|
||||
* 1 major enhancement
|
||||
|
|
2
Rakefile
2
Rakefile
|
@ -9,7 +9,7 @@ begin
|
|||
require 'jeweler'
|
||||
Jeweler::Tasks.new do |gemspec|
|
||||
gemspec.name = gemspec.rubyforge_project = "therubyracer"
|
||||
gemspec.version = "0.4.9"
|
||||
gemspec.version = "0.5.0"
|
||||
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"
|
||||
|
|
|
@ -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.9'
|
||||
VERSION = '0.5.0'
|
||||
require 'v8/v8' #native glue
|
||||
require 'v8/to'
|
||||
require 'v8/context'
|
||||
|
|
Loading…
Add table
Reference in a new issue