mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
version 0.6 is more fun
This commit is contained in:
parent
62bcbc47c0
commit
99441513dc
2 changed files with 2 additions and 4 deletions
4
Rakefile
4
Rakefile
|
@ -9,7 +9,7 @@ manifest.exclude "ext/**/test/*", "ext/**/test/*", "ext/**/samples/*", "ext/**/b
|
|||
Gem::Specification.new do |gemspec|
|
||||
$gemspec = gemspec
|
||||
gemspec.name = gemspec.rubyforge_project = "therubyracer"
|
||||
gemspec.version = "0.5.5"
|
||||
gemspec.version = "0.6.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"
|
||||
|
@ -22,8 +22,6 @@ Gem::Specification.new do |gemspec|
|
|||
gemspec.files = manifest.to_a
|
||||
end
|
||||
|
||||
|
||||
|
||||
desc "Build gem"
|
||||
task :gem do
|
||||
Gem::Builder.new($gemspec).build
|
||||
|
|
|
@ -2,7 +2,7 @@ $:.unshift(File.dirname(__FILE__)) unless
|
|||
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
||||
|
||||
module V8
|
||||
VERSION = '0.5.5'
|
||||
VERSION = '0.6.0'
|
||||
require 'v8/v8' #native glue
|
||||
require 'v8/to'
|
||||
require 'v8/context'
|
||||
|
|
Loading…
Add table
Reference in a new issue