therubyracer 0.7.2.pre → 0.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of therubyracer might be problematic. Click here for more details.
- data/History.txt +13 -0
- data/Rakefile +1 -1
- data/ext/v8/rr.h +1 -1
- data/ext/v8/v8_array.h +1 -1
- data/ext/v8/v8_callbacks.h +1 -1
- data/ext/v8/v8_cxt.h +1 -1
- data/ext/v8/v8_date.h +1 -1
- data/ext/v8/v8_exception.h +1 -1
- data/ext/v8/v8_external.h +1 -1
- data/ext/v8/v8_func.h +1 -1
- data/ext/v8/v8_msg.h +1 -1
- data/ext/v8/v8_obj.h +1 -1
- data/ext/v8/v8_ref.h +1 -1
- data/ext/v8/v8_script.h +1 -1
- data/ext/v8/v8_str.h +1 -1
- data/ext/v8/v8_template.h +1 -1
- data/ext/v8/v8_try_catch.h +1 -1
- data/ext/v8/v8_value.h +1 -1
- data/lib/v8.rb +1 -1
- data/lib/v8/error.rb +1 -1
- data/therubyracer.gemspec +2 -2
- metadata +7 -10
data/History.txt
CHANGED
@@ -1,3 +1,16 @@
|
|
1
|
+
=== 0.7.2 2010-06-14
|
2
|
+
* 5 major enhancements
|
3
|
+
* embed ruby classes as constructors
|
4
|
+
* support for rubinius
|
5
|
+
* uniform backtrace() function on JSError mixes the ruby
|
6
|
+
* String::NewSymbol() is now scriptable
|
7
|
+
* InstanceTemplate(), PrototypeTemplate(), Inherit() methods on v8::FunctionTemplate now scriptable.
|
8
|
+
|
9
|
+
* 3 minor enhancements
|
10
|
+
* reuse the standard ruby object access template
|
11
|
+
* fix a bunch of compile warnings
|
12
|
+
* Store any ruby object in V8 with V8::C::External
|
13
|
+
|
1
14
|
=== 0.7.1 2010-06-03
|
2
15
|
* 5 major enhancements
|
3
16
|
* Function#call() now uses the global scope for 'this' by default
|
data/Rakefile
CHANGED
@@ -7,7 +7,7 @@ manifest.exclude "lib/v8/*.bundle", "lib/v8/*.so", "ext/**/test/*", "ext/**/test
|
|
7
7
|
Gem::Specification.new do |gemspec|
|
8
8
|
$gemspec = gemspec
|
9
9
|
gemspec.name = gemspec.rubyforge_project = "therubyracer"
|
10
|
-
gemspec.version = "0.7.2
|
10
|
+
gemspec.version = "0.7.2"
|
11
11
|
gemspec.summary = "Embed the V8 Javascript interpreter into Ruby"
|
12
12
|
gemspec.description = "Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript."
|
13
13
|
gemspec.email = "cowboyd@thefrontside.net"
|
data/ext/v8/rr.h
CHANGED
data/ext/v8/v8_array.h
CHANGED
data/ext/v8/v8_callbacks.h
CHANGED
data/ext/v8/v8_cxt.h
CHANGED
data/ext/v8/v8_date.h
CHANGED
data/ext/v8/v8_exception.h
CHANGED
data/ext/v8/v8_external.h
CHANGED
data/ext/v8/v8_func.h
CHANGED
data/ext/v8/v8_msg.h
CHANGED
data/ext/v8/v8_obj.h
CHANGED
data/ext/v8/v8_ref.h
CHANGED
data/ext/v8/v8_script.h
CHANGED
data/ext/v8/v8_str.h
CHANGED
data/ext/v8/v8_template.h
CHANGED
data/ext/v8/v8_try_catch.h
CHANGED
data/ext/v8/v8_value.h
CHANGED
data/lib/v8.rb
CHANGED
data/lib/v8/error.rb
CHANGED
@@ -16,7 +16,7 @@ module V8
|
|
16
16
|
def initialize_unsafe(try)
|
17
17
|
message = nil
|
18
18
|
ex = To.rb(try.Exception())
|
19
|
-
@boundaries = [Boundary.new
|
19
|
+
@boundaries = [Boundary.new(:rbframes => caller(3), :jsframes => parse_js_frames(try))]
|
20
20
|
if V8::Object === ex
|
21
21
|
if msg = ex['message']
|
22
22
|
message = msg
|
data/therubyracer.gemspec
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{therubyracer}
|
5
|
-
s.version = "0.7.2
|
5
|
+
s.version = "0.7.2"
|
6
6
|
|
7
|
-
s.required_rubygems_version = Gem::Requirement.new("
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Charles Lowell", "Bill Robertson"]
|
9
9
|
s.date = %q{2010-06-14}
|
10
10
|
s.description = %q{Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript.}
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: therubyracer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 7
|
5
|
+
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 7
|
9
9
|
- 2
|
10
|
-
|
11
|
-
version: 0.7.2.pre
|
10
|
+
version: 0.7.2
|
12
11
|
platform: ruby
|
13
12
|
authors:
|
14
13
|
- Charles Lowell
|
@@ -780,14 +779,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
780
779
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
781
780
|
none: false
|
782
781
|
requirements:
|
783
|
-
- - "
|
782
|
+
- - ">="
|
784
783
|
- !ruby/object:Gem::Version
|
785
|
-
hash:
|
784
|
+
hash: 3
|
786
785
|
segments:
|
787
|
-
-
|
788
|
-
|
789
|
-
- 1
|
790
|
-
version: 1.3.1
|
786
|
+
- 0
|
787
|
+
version: "0"
|
791
788
|
requirements: []
|
792
789
|
|
793
790
|
rubyforge_project: therubyracer
|