therubyracer 0.4.9-x86-darwin-10 → 0.5.0-x86-darwin-10
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of therubyracer might be problematic. Click here for more details.
- data/History.txt +5 -1
- data/README.rdoc +1 -0
- data/Rakefile +1 -1
- data/ext/v8/extconf.rb +1 -1
- data/ext/v8/upstream/Makefile +1 -0
- data/ext/v8/upstream/fpic-on-linux-amd64.patch +13 -0
- data/lib/v8.rb +1 -1
- data/therubyracer.gemspec +2 -1
- metadata +2 -1
data/History.txt
CHANGED
data/README.rdoc
CHANGED
data/Rakefile
CHANGED
@@ -9,7 +9,7 @@ begin
|
|
9
9
|
require 'jeweler'
|
10
10
|
Jeweler::Tasks.new do |gemspec|
|
11
11
|
gemspec.name = gemspec.rubyforge_project = "therubyracer"
|
12
|
-
gemspec.version = "0.
|
12
|
+
gemspec.version = "0.5.0"
|
13
13
|
gemspec.summary = "Embed the V8 Javascript interpreter into Ruby"
|
14
14
|
gemspec.description = "Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript."
|
15
15
|
gemspec.email = "cowboyd@thefrontside.net"
|
data/ext/v8/extconf.rb
CHANGED
@@ -13,7 +13,7 @@ have_library('v8') or raise "Unable to find libv8 in #{BUILD}, was there an erro
|
|
13
13
|
|
14
14
|
$CPPFLAGS += " -Wall" unless $CPPFLAGS.split.include? "-Wall"
|
15
15
|
|
16
|
-
CONFIG['LDSHARED'] = '$(CXX) -shared'
|
16
|
+
CONFIG['LDSHARED'] = '$(CXX) -shared' unless RUBY_PLATFORM =~ /darwin/
|
17
17
|
|
18
18
|
create_makefile('v8')
|
19
19
|
|
data/ext/v8/upstream/Makefile
CHANGED
data/lib/v8.rb
CHANGED
data/therubyracer.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{therubyracer}
|
8
|
-
s.version = "0.
|
8
|
+
s.version = "0.5.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Charles Lowell", "Bill Robertson"]
|
@@ -412,6 +412,7 @@ Gem::Specification.new do |s|
|
|
412
412
|
"ext/v8/upstream/2.0.6/tools/windows-tick-processor.bat",
|
413
413
|
"ext/v8/upstream/2.0.6/tools/windows-tick-processor.py",
|
414
414
|
"ext/v8/upstream/Makefile",
|
415
|
+
"ext/v8/upstream/fpic-on-linux-amd64.patch",
|
415
416
|
"ext/v8/upstream/no-strict-aliasing.patch",
|
416
417
|
"ext/v8/upstream/scons/CHANGES.txt",
|
417
418
|
"ext/v8/upstream/scons/LICENSE.txt",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: therubyracer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: x86-darwin-10
|
6
6
|
authors:
|
7
7
|
- Charles Lowell
|
@@ -602,6 +602,7 @@ files:
|
|
602
602
|
- ext/v8/upstream/2.0.6/tools/visual_studio/v8_arm.sln
|
603
603
|
- ext/v8/upstream/2.0.6/src/allocation.cc
|
604
604
|
- ext/v8/v8_script.h
|
605
|
+
- ext/v8/upstream/fpic-on-linux-amd64.patch
|
605
606
|
- ext/v8/upstream/2.0.6/src/ia32/jump-target-ia32.cc
|
606
607
|
- ext/v8/upstream/scons/engine/SCons/Executor.py
|
607
608
|
- ext/v8/upstream/2.0.6/src/arm/builtins-arm.cc
|