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

0.7.3: fix problem with gem bundle. don't catch serious exceptions

This commit is contained in:
Charles Lowell 2010-06-16 14:08:45 +03:00
parent adfe16d428
commit 991e671d1d
6 changed files with 12 additions and 7 deletions

View file

@ -1,3 +1,8 @@
=== 0.7.3 2010-06-15
* 2 minor enhancements
* don't catch SystemExit and NoMemoryError
* fix bug bundling gem
=== 0.7.2 2010-06-14
* 5 major enhancements
* embed ruby classes as constructors

View file

@ -3,11 +3,11 @@ require 'rubygems'
UPSTREAM = "ext/v8/upstream"
manifest = Rake::FileList.new("**/*")
manifest.exclude "lib/v8/*.bundle", "lib/v8/*.so", "ext/**/test/*", "ext/**/test/*", "ext/**/samples/*", "ext/**/benchmarks/*", "#{UPSTREAM}/build/", "tmp", "tmp/**/*", "**/*.gem"
manifest.exclude "lib/v8/*.bundle", "lib/v8/*.so", "ext/**/test/*", "ext/**/test/*", "ext/**/samples/*", "ext/**/benchmarks/*", "#{UPSTREAM}/build", "tmp", "tmp/**/*", "**/*.gem"
Gem::Specification.new do |gemspec|
$gemspec = gemspec
gemspec.name = gemspec.rubyforge_project = "therubyracer"
gemspec.version = "0.7.2"
gemspec.version = "0.7.3"
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

@ -5,7 +5,7 @@ V8SRC=build/v8
LIBV8=build/v8/libv8.a
LIBV8_G=build/v8/libv8_g.a
GCC_VERSION=$(shell ruby -e 'puts %x{gcc --version} =~ /(\d)\.(\d)\.\d/ ? $$1 + $$2 : "UNKNOWN"')
ARCH=$(shell ruby build_cpu.rb)
ARCH=$(shell ruby detect_cpu.rb)
all: $(LIBV8)

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

File diff suppressed because one or more lines are too long