therubyracer 0.5.0-x86-darwin-10 → 0.5.1-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.

@@ -1,3 +1,7 @@
1
+ === 0.5.1 2010-02-17
2
+ * 1 minor enhancement
3
+ * fix bug in 1.8.6 by creating Object#tap if it does not exist
4
+
1
5
  === 0.5.0 2010-02-17
2
6
  * 1 major enhancement
3
7
  * support for Linux 64 bit
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.5.0"
12
+ gemspec.version = "0.5.1"
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"
@@ -34,6 +34,12 @@ rescue LoadError
34
34
  puts "Rake Compiler not available. Install it with: gem install rake-compiler"
35
35
  end
36
36
 
37
+ require 'spec/rake/spectask'
38
+ Spec::Rake::SpecTask.new(:spec) do |spec|
39
+ spec.libs << 'lib' << 'spec'
40
+ spec.spec_files = FileList['spec/**/*_spec.rb']
41
+ end
42
+
37
43
  desc "Build gem"
38
44
  task :gem => :build
39
45
 
data/lib/v8.rb CHANGED
@@ -2,9 +2,10 @@ $:.unshift(File.dirname(__FILE__)) unless
2
2
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
3
 
4
4
  module V8
5
- VERSION = '0.5.0'
5
+ VERSION = '0.5.1'
6
6
  require 'v8/v8' #native glue
7
7
  require 'v8/to'
8
8
  require 'v8/context'
9
9
  require 'v8/object'
10
+ require 'v8/tap'
10
11
  end
File without changes
@@ -1,4 +1,4 @@
1
- require "#{File.dirname(__FILE__)}/tap.rb"
1
+
2
2
  require "#{File.dirname(__FILE__)}/../redjs_helper.rb"
3
3
 
4
4
  describe "Ruby Javascript API" do
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{therubyracer}
8
- s.version = "0.5.0"
8
+ s.version = "0.5.1"
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"]
12
- s.date = %q{2010-02-16}
12
+ s.date = %q{2010-02-17}
13
13
  s.description = %q{Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript.}
14
14
  s.email = %q{cowboyd@thefrontside.net}
15
15
  s.extensions = ["ext/v8/extconf.rb"]
@@ -639,6 +639,7 @@ Gem::Specification.new do |s|
639
639
  "lib/v8.rb",
640
640
  "lib/v8/context.rb",
641
641
  "lib/v8/object.rb",
642
+ "lib/v8/tap.rb",
642
643
  "lib/v8/to.rb",
643
644
  "script/console",
644
645
  "script/destroy",
@@ -662,7 +663,6 @@ Gem::Specification.new do |s|
662
663
  "spec/ext/cxt_spec.rb",
663
664
  "spec/ext/obj_spec.rb",
664
665
  "spec/redjs/jsapi_spec.rb",
665
- "spec/redjs/tap.rb",
666
666
  "spec/redjs_helper.rb",
667
667
  "spec/spec_helper.rb",
668
668
  "spec/v8/to_spec.rb"
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.5.0
4
+ version: 0.5.1
5
5
  platform: x86-darwin-10
6
6
  authors:
7
7
  - Charles Lowell
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2010-02-16 00:00:00 -06:00
13
+ date: 2010-02-17 00:00:00 -06:00
14
14
  default_executable:
15
15
  dependencies: []
16
16
 
@@ -606,6 +606,7 @@ files:
606
606
  - ext/v8/upstream/2.0.6/src/ia32/jump-target-ia32.cc
607
607
  - ext/v8/upstream/scons/engine/SCons/Executor.py
608
608
  - ext/v8/upstream/2.0.6/src/arm/builtins-arm.cc
609
+ - lib/v8/tap.rb
609
610
  - ext/v8/v8_template.cpp
610
611
  - spec/v8/to_spec.rb
611
612
  - ext/v8/upstream/scons/engine/SCons/Node/__init__.py
@@ -658,7 +659,6 @@ files:
658
659
  - ext/v8/upstream/2.0.6/src/disassembler.cc
659
660
  - ext/v8/upstream/2.0.6/src/objects-debug.cc
660
661
  - spec/redjs/jsapi_spec.rb
661
- - spec/redjs/tap.rb
662
662
  - lib/v8/v8.bundle
663
663
  has_rdoc: true
664
664
  homepage: http://github.com/cowboyd/therubyracer
@@ -692,7 +692,6 @@ test_files:
692
692
  - spec/ext/cxt_spec.rb
693
693
  - spec/ext/obj_spec.rb
694
694
  - spec/redjs/jsapi_spec.rb
695
- - spec/redjs/tap.rb
696
695
  - spec/redjs_helper.rb
697
696
  - spec/spec_helper.rb
698
697
  - spec/v8/to_spec.rb