mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
0.7.4: patch release for rvm rubies
This commit is contained in:
parent
dcb90f40c2
commit
dab6eda397
4 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
=== 0.7.4 2010-06-15
|
||||||
|
* 1 minor enhancement
|
||||||
|
* bug fix for rvm ruby installs incorrectly detected as 32bit
|
||||||
|
|
||||||
=== 0.7.3 2010-06-15
|
=== 0.7.3 2010-06-15
|
||||||
* 2 minor enhancements
|
* 2 minor enhancements
|
||||||
* don't catch SystemExit and NoMemoryError
|
* don't catch SystemExit and NoMemoryError
|
||||||
|
|
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.7.3"
|
gemspec.version = "0.7.4"
|
||||||
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.7.3'
|
VERSION = '0.7.4'
|
||||||
require 'v8/v8' #native glue
|
require 'v8/v8' #native glue
|
||||||
require 'v8/to'
|
require 'v8/to'
|
||||||
require 'v8/context'
|
require 'v8/context'
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
s.name = %q{therubyracer}
|
s.name = %q{therubyracer}
|
||||||
s.version = "0.7.3"
|
s.version = "0.7.4"
|
||||||
|
|
||||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") 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"]
|
||||||
|
|
Loading…
Reference in a new issue