libv8 3.11.8.13 → 3.11.8.16

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f969047e355c3f61e710ef10e4340821a548e640
4
+ data.tar.gz: 3ab0b9e163833f7208895ae218ccbb5a1025a279
5
+ SHA512:
6
+ metadata.gz: db9fae3fce7f1a68b675f7143ba65928fe5bb366dd46a8605537c7bd7fdf160b86ab83ff85310e3b7697210b5c188e5abbce2418798a62b7e34f0373711cb7aa
7
+ data.tar.gz: d3b4a53e5d83d3679adea8ea60c24aa8b51839f214e6015940116ac2ce61f479fca089e13a45a00ddccf33e0afe889cd94f0c0f559eb8c3a698fa80edc4ee210
@@ -1,4 +1,5 @@
1
1
  rvm:
2
+ - 2.0.0
2
3
  - 1.9.2
3
4
  - 1.9.3
4
5
  - 1.8.7
data/README.md CHANGED
@@ -1,31 +1,66 @@
1
- ##libv8
1
+ # libv8
2
2
 
3
- A gem for distributing the v8 runtime libraries and headers in both source and binary form.
3
+ A gem for distributing the v8 runtime libraries and headers in both
4
+ source and binary form.
4
5
 
5
6
  ### Why?
6
7
 
7
- The goal of libv8 is two fold: provide a binary gem containing the a pre-compiled libv8.a for as many
8
- platforms as possible while at the same time supporting for an automated compilation for all others.
8
+ The goal of libv8 is two fold: provide a binary gem containing the a
9
+ pre-compiled libv8.a for as many platforms as possible while at the
10
+ same time supporting for an automated compilation for all others.
9
11
 
10
- Not only does this drastically reduce gem install times, but it also reduces dependencies on the local
11
- machine receiving the gem. It also opens the door for supporting Windows.
12
+ Not only does this drastically reduce gem install times, but it also
13
+ reduces dependencies on the local machine receiving the gem. It also
14
+ opens the door for supporting Windows.
12
15
 
13
- ### Do I Get a Binary?
16
+ ### Do I get a binary?
14
17
 
15
- That depends on your platform. Right now, we support the following platforms.
18
+ That depends on your platform. Right now, we support the following
19
+ platforms.
16
20
 
17
21
  * x86_64-darwin10.7.0
22
+ * x86_64-darwin-10
23
+ * x86_64-darwin-11
24
+ * x86_64-darwin-10
18
25
  * x86_64-linux
19
26
  * x86-linux
27
+ * x86_64-freebsd-9
20
28
 
21
- If you don't see your platform on this list, first, make sure that it installs from source, and second
22
- talk to us about setting up a binary distro for you.
29
+ If you don't see your platform on this list, first, make sure that it
30
+ installs from source, and second talk to us about setting up a binary
31
+ distro for you.
23
32
 
33
+ ### Versioning
24
34
 
25
- ### What if I can't install from source?
35
+ Versions of the libv8 gem track the version of v8 itself, adding its
36
+ own point release after the main v8 version. So libv8 `3.11.8.5` and
37
+ `3.11.8.14` both correspond to v8 version `3.11.8`. Another way to
38
+ think about it would be that `3.11.8.14` is the 14th release of the
39
+ libv8 rubygem based on v8 version `3.11.8`
40
+
41
+ #### Source and Binary Releases
42
+
43
+ Starting with libv8 `3.11.8.0`, all even point releases contain
44
+ only a source-based distribution, while odd point releases contain both
45
+ a source-based distribution *and* binary distributions. However both
46
+ point releases correspond to the *exact* underlying code. The only
47
+ difference is the version number.
48
+
49
+ This way, the most recent version of the gem always has binary
50
+ distributions, but if, for whatever reason, you have problems with the
51
+ binaries, you can always "lock in" your dependency a single point version
52
+ down, forcing it to compile from source.
26
53
 
54
+ So for example, `3.15.12.3` contains all the binary distributions, while
55
+ `3.15.12.2` is the exact same code, but contain only a source-based
56
+ distribution
57
+
58
+ > This step release system is a workaround to carlhuda/bundler#1537
59
+
60
+ ### What if I can't install from source?
27
61
 
28
- If you can fix the "Makefile" so that it correctly compiles for your platform, we'll pull it right in!
62
+ If you can fix the "Makefile" so that it correctly compiles for your
63
+ platform, we'll pull it right in!
29
64
 
30
65
  To get the source, these commands will get you started:
31
66
 
@@ -35,16 +70,38 @@ To get the source, these commands will get you started:
35
70
  bundle exec rake checkout
36
71
  bundle exec rake compile
37
72
 
73
+ ### Bring your own V8
74
+
75
+ Because libv8 is the interface for the V8 engine used by
76
+ [therubyracer](http://github.com/cowboyd/therubyracer), you may need
77
+ to use libv8, even if you have V8 installed already. If you wish to
78
+ use your own V8 installation, rather than have it built for you, use
79
+ the `--with-system-v8` option.
80
+
81
+ Using RubyGems:
82
+
83
+ gem install libv8 -- --with-system-v8
84
+
85
+ Using Bundler (in your Gemfile):
86
+
87
+ bundle config build.libv8 --with-system-v8
88
+
89
+ Please note that if you intend to run your own V8, you must install
90
+ both V8 *and its headers* (found in libv8-dev for Debian distros).
38
91
 
39
92
  ### About
40
93
 
41
- This project spun off of [therubyracer](http://github.com/cowboyd/therubyracer) which depends on having
42
- a specific version of v8 to compile and run against. However, actually delivering that version
43
- reliably to all the different platforms proved to be a challenge to say the least.
94
+ This project spun off of
95
+ [therubyracer](http://github.com/cowboyd/therubyracer) which depends
96
+ on having a specific version of v8 to compile and run against.
97
+ However, actually delivering that version reliably to all the
98
+ different platforms proved to be a challenge to say the least.
44
99
 
45
- We got tired of waiting 5 minutes for v8 to compile every time we installed that gem.
100
+ We got tired of waiting 5 minutes for v8 to compile every time we
101
+ installed that gem.
46
102
 
47
103
  ### Sponsored by
104
+
48
105
  <a href="http://thefrontside.net">![The Frontside](http://github.com/cowboyd/libv8/raw/master/thefrontside.png)</a>
49
106
 
50
107
  ### License
@@ -70,4 +127,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
70
127
  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
71
128
  CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
72
129
  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
73
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
130
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile CHANGED
@@ -28,6 +28,7 @@ task :checkout do
28
28
  # Based on: https://chromiumcodereview.appspot.com/10079030/patch/1/2
29
29
  sh "patch -N -p0 -d vendor/v8 < patches/add-freebsd9-and-freebsd10-to-gyp-GetFlavor.patch"
30
30
  sh "patch -N -p1 -d vendor/v8 < patches/fPIC-on-x64.patch"
31
+ sh "patch -N -p1 -d vendor/v8 < patches/do-not-imply-vfp3-and-armv7.patch"
31
32
  end
32
33
 
33
34
  desc "compile v8 via the ruby extension mechanism"
@@ -69,8 +70,10 @@ task :binary => :compile do
69
70
  # V8
70
71
  gemspec.files += Dir['vendor/v8/include/*']
71
72
  gemspec.files += Dir['vendor/v8/out/**/*.a']
73
+ FileUtils.chmod 'a+r', gemspec.files
72
74
  FileUtils.mkdir_p 'pkg'
73
- FileUtils.mv(Gem::Builder.new(gemspec).build, 'pkg')
75
+ package = Gem::VERSION < '2.0.0' ? Gem::Builder.new(gemspec).build : Gem::Package.build(gemspec)
76
+ FileUtils.mv(package, 'pkg')
74
77
  end
75
78
 
76
79
  desc "clean up artifacts of the build"
@@ -20,6 +20,7 @@ module Libv8
20
20
  Object.const_defined?(:RUBY_ENGINE) && RUBY_ENGINE == "rbx"
21
21
  end
22
22
 
23
+ # TODO fix false positive on 64-bit ARM
23
24
  def x64?
24
25
  if rubinius?
25
26
  x86_64_from_build_cpu || x86_64_from_arch_flag
@@ -28,8 +29,15 @@ module Libv8
28
29
  end
29
30
  end
30
31
 
32
+ def arm?
33
+ RbConfig::MAKEFILE_CONFIG['build_cpu'] == 'arm'
34
+ end
35
+
31
36
  def libv8_arch
32
- x64? ? "x64" : "ia32"
37
+ if arm? then "arm"
38
+ elsif x64? then "x64"
39
+ else "ia32"
40
+ end
33
41
  end
34
42
  end
35
- end
43
+ end
@@ -17,6 +17,12 @@ module Libv8
17
17
  # http://svnweb.freebsd.org/ports/head/lang/v8/Makefile?view=markup
18
18
  flags << "strictaliasing=off" if RUBY_PLATFORM.include?("freebsd") and !check_gcc_compiler(compiler)
19
19
 
20
+ # Avoid compilation failures on the Raspberry Pi.
21
+ flags << "vfp2=off vfp3=off" if RUBY_PLATFORM.include? "arm"
22
+
23
+ # Enable hardfloat support if available.
24
+ flags << "hardfp=on" if RUBY_PLATFORM.include? "eabihf"
25
+
20
26
  # Fix Malformed archive issue caused by GYP creating thin archives by
21
27
  # default.
22
28
  flags << "ARFLAGS.target=crs"
@@ -26,9 +32,47 @@ module Libv8
26
32
 
27
33
  def build_libv8!
28
34
  Dir.chdir(File.expand_path '../../../vendor/v8', __FILE__) do
35
+ setup_python!
36
+ print_build_info
29
37
  puts `env CXX=#{compiler} LINK=#{compiler} #{make} #{make_flags}`
30
38
  end
31
39
  return $?.exitstatus
32
40
  end
41
+
42
+ def setup_python!
43
+ # If python v2 cannot be found in PATH,
44
+ # create a symbolic link to python2 the current directory and put it
45
+ # at the head of PATH. That way all commands that inherit this environment
46
+ # will use ./python -> python2
47
+ if python_version !~ /^2/
48
+ unless system 'which python2 2>&1 > /dev/null'
49
+ fail "libv8 requires python 2 to be installed in order to build, but it is currently #{python_version}"
50
+ end
51
+ `ln -fs #{`which python2`.chomp} python`
52
+ ENV['PATH'] = "#{File.expand_path '.'}:#{ENV['PATH']}"
53
+ end
54
+ end
55
+
56
+ private
57
+
58
+ def python_version
59
+ if system 'which python 2>&1 > /dev/null'
60
+ `python -c 'import platform; print(platform.python_version())'`.chomp
61
+ else
62
+ "not available"
63
+ end
64
+ end
65
+
66
+ def print_build_info
67
+ puts "Compiling v8 for #{libv8_arch}"
68
+
69
+ puts "Using python #{python_version}"
70
+
71
+ puts "Using compiler: #{compiler}"
72
+ unless check_gcc_compiler compiler
73
+ warn "Unable to find a compiler officially supported by v8."
74
+ warn "It is recommended to use GCC v4.4 or higher"
75
+ end
76
+ end
33
77
  end
34
78
  end
@@ -19,7 +19,6 @@ module Libv8
19
19
  @compiler = cc = 'g++'
20
20
  end
21
21
 
22
- puts "Using compiler: #{cc}"
23
22
  @compiler = cc
24
23
  end
25
24
 
@@ -27,7 +26,7 @@ module Libv8
27
26
  end
28
27
 
29
28
  def check_gcc_compiler(name)
30
- compiler = `which #{name}`
29
+ compiler = `which #{name} 2> /dev/null`
31
30
  return nil unless $?.success?
32
31
 
33
32
  compiler.chomp!
@@ -38,7 +37,7 @@ module Libv8
38
37
  end
39
38
 
40
39
  def check_clang_compiler(name)
41
- compiler = `which #{name}`
40
+ compiler = `which #{name} 2> /dev/null`
42
41
  return nil unless $?.success?
43
42
  compiler.chomp
44
43
  end
@@ -4,7 +4,7 @@ module Libv8
4
4
 
5
5
  def make
6
6
  unless defined?(@make)
7
- @make = `which gmake`.chomp
7
+ @make = `which gmake 2> /dev/null`.chomp
8
8
  @make = `which make`.chomp unless $?.success?
9
9
  end
10
10
  @make
@@ -1,3 +1,3 @@
1
1
  module Libv8
2
- VERSION = "3.11.8.13"
2
+ VERSION = "3.11.8.16"
3
3
  end
@@ -11,6 +11,7 @@ Gem::Specification.new do |s|
11
11
  s.homepage = "http://github.com/cowboyd/libv8"
12
12
  s.summary = %q{Distribution of the V8 JavaScript engine}
13
13
  s.description = %q{Distributes the V8 JavaScript engine in binary and source forms in order to support fast builds of The Ruby Racer}
14
+ s.license = "MIT"
14
15
 
15
16
  s.rubyforge_project = "libv8"
16
17
 
@@ -0,0 +1,44 @@
1
+ diff --git a/Makefile b/Makefile
2
+ index 0d825c0..c508f33 100644
3
+ --- a/Makefile
4
+ +++ b/Makefile
5
+ @@ -95,6 +95,11 @@ endif
6
+ ifeq ($(strictaliasing), off)
7
+ GYPFLAGS += -Dv8_no_strict_aliasing=1
8
+ endif
9
+ +# hardfp=on
10
+ +ifeq ($(hardfp), on)
11
+ + GYPFLAGS += -Dv8_use_arm_eabi_hardfloat=true
12
+ +endif
13
+ +
14
+
15
+ # ----------------- available targets: --------------------
16
+ # - "dependencies": pulls in external dependencies (currently: GYP)
17
+ diff --git a/build/common.gypi b/build/common.gypi
18
+ index 7f084b8..d89f1f4 100644
19
+ --- a/build/common.gypi
20
+ +++ b/build/common.gypi
21
+ @@ -133,7 +133,6 @@
22
+ [ 'v8_use_arm_eabi_hardfloat=="true"', {
23
+ 'defines': [
24
+ 'USE_EABI_HARDFLOAT=1',
25
+ - 'CAN_USE_VFP_INSTRUCTIONS',
26
+ ],
27
+ 'target_conditions': [
28
+ ['_toolset=="target"', {
29
+ diff --git a/build/standalone.gypi b/build/standalone.gypi
30
+ index ebdf557..2961bac 100644
31
+ --- a/build/standalone.gypi
32
+ +++ b/build/standalone.gypi
33
+ @@ -74,9 +74,9 @@
34
+ }],
35
+ ],
36
+ # Default ARM variable settings.
37
+ - 'armv7%': 1,
38
+ + 'armv7%': 0,
39
+ 'arm_neon%': 0,
40
+ - 'arm_fpu%': 'vfpv3',
41
+ + 'arm_fpu%': 'vfp',
42
+ },
43
+ 'target_defaults': {
44
+ 'default_configuration': 'Debug',
@@ -6,7 +6,7 @@ index ebdf557..c7a59bc 100644
6
6
  [ 'OS=="linux"', {
7
7
  'cflags': [ '-ansi' ],
8
8
  }],
9
- + [ '(OS=="linux" or OS=="freebsd") and v8_target_arch=="x64" and component=="static_library"', {
9
+ + [ '(OS=="linux" or OS=="freebsd" or OS=="solaris") and v8_target_arch=="x64" and component=="static_library"', {
10
10
  + 'cflags': [ '-fPIC' ],
11
11
  + }],
12
12
  [ 'visibility=="hidden"', {
@@ -133,7 +133,6 @@
133
133
  [ 'v8_use_arm_eabi_hardfloat=="true"', {
134
134
  'defines': [
135
135
  'USE_EABI_HARDFLOAT=1',
136
- 'CAN_USE_VFP_INSTRUCTIONS',
137
136
  ],
138
137
  'target_conditions': [
139
138
  ['_toolset=="target"', {
@@ -74,9 +74,9 @@
74
74
  }],
75
75
  ],
76
76
  # Default ARM variable settings.
77
- 'armv7%': 1,
77
+ 'armv7%': 0,
78
78
  'arm_neon%': 0,
79
- 'arm_fpu%': 'vfpv3',
79
+ 'arm_fpu%': 'vfp',
80
80
  },
81
81
  'target_defaults': {
82
82
  'default_configuration': 'Debug',
@@ -98,7 +98,7 @@
98
98
  [ 'OS=="linux"', {
99
99
  'cflags': [ '-ansi' ],
100
100
  }],
101
- [ '(OS=="linux" or OS=="freebsd") and v8_target_arch=="x64" and component=="static_library"', {
101
+ [ '(OS=="linux" or OS=="freebsd" or OS=="solaris") and v8_target_arch=="x64" and component=="static_library"', {
102
102
  'cflags': [ '-fPIC' ],
103
103
  }],
104
104
  [ 'visibility=="hidden"', {
metadata CHANGED
@@ -1,94 +1,104 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libv8
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.11.8.13
5
- prerelease:
4
+ version: 3.11.8.16
6
5
  platform: ruby
7
6
  authors:
8
7
  - Charles Lowell
9
8
  autorequire:
10
9
  bindir: bin
11
- cert_chain: []
12
- date: 2013-01-09 00:00:00.000000000 Z
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDPjCCAiagAwIBAgIBADANBgkqhkiG9w0BAQUFADBFMRAwDgYDVQQDDAdjb3di
14
+ b3lkMRwwGgYKCZImiZPyLGQBGRYMdGhlZnJvbnRzaWRlMRMwEQYKCZImiZPyLGQB
15
+ GRYDbmV0MB4XDTEzMDEzMDIxMDYwNFoXDTE0MDEzMDIxMDYwNFowRTEQMA4GA1UE
16
+ AwwHY293Ym95ZDEcMBoGCgmSJomT8ixkARkWDHRoZWZyb250c2lkZTETMBEGCgmS
17
+ JomT8ixkARkWA25ldDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO45
18
+ CUxpETDGYXjCCy2dMg/aIrdrTqBqQW5ZrzhHxF9EkcdmWFr0z/qMz0JSpZ3pF11Z
19
+ KYaj5PaQQpjZfLPwbuiGGkuSWi+UAac//V18xo6S4lzRBjO+gpzG9f2AOzt9b+SR
20
+ Uc8UhO7QBZ5edUDxMxw9QstD+U0YBAlzsPJbHuUOqdtxXmNQCds3ZnqTgZaIpdUy
21
+ CSejtrukSmlthxFzwgMezYQhcYxmkl+Q475JUodnI6Pjc6nja/Or8Y6cEWiLgeUa
22
+ a+efcPGLDEbwJC7TGRrvk8yassMByBEJ3XueTMzeqWFd+665ptciojYo6BvIAR0N
23
+ iLwks0x567FZyS8SqTcCAwEAAaM5MDcwCQYDVR0TBAIwADAdBgNVHQ4EFgQUxVgR
24
+ 5TUqf7Hd24ICb3g4FNbM7oYwCwYDVR0PBAQDAgSwMA0GCSqGSIb3DQEBBQUAA4IB
25
+ AQDdJj+NzZhiYXA56z0wzRUA/Fcf6CYqKB+RFRlPssDEcHTor5SnwdWgQof/gNLi
26
+ Qel1Om4zO0Shcp89jxaUqtvEdYVhmyfc0vycHmemKttNBT734yMrEJtF8Hhy+Dnz
27
+ 9CzixXLvgGaRH+mf3M0+l+zIDJJr2L+39L8cyTSSRnp/srfI8aSmJKhGshudBKoC
28
+ Ty6Gi071pwoJXvdMaE/6iPy7bUzlndYdHyYuWSKaO9N47HqQ62oEnBraglw6ghoi
29
+ UgImJlChAzCoDP9zi9tdm6jAr7ttF25R9PPYr11ILb7dYe3qUzlNlM6zJx/nb31b
30
+ IhdyRVup4qLcqYSTPsm6u7VA
31
+ -----END CERTIFICATE-----
32
+ date: 2013-03-22 00:00:00.000000000 Z
13
33
  dependencies:
14
34
  - !ruby/object:Gem::Dependency
15
35
  name: rake
16
36
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
37
  requirements:
19
- - - ! '>='
38
+ - - '>='
20
39
  - !ruby/object:Gem::Version
21
40
  version: '0'
22
41
  type: :development
23
42
  prerelease: false
24
43
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
44
  requirements:
27
- - - ! '>='
45
+ - - '>='
28
46
  - !ruby/object:Gem::Version
29
47
  version: '0'
30
48
  - !ruby/object:Gem::Dependency
31
49
  name: rake-compiler
32
50
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
51
  requirements:
35
- - - ! '>='
52
+ - - '>='
36
53
  - !ruby/object:Gem::Version
37
54
  version: '0'
38
55
  type: :development
39
56
  prerelease: false
40
57
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
58
  requirements:
43
- - - ! '>='
59
+ - - '>='
44
60
  - !ruby/object:Gem::Version
45
61
  version: '0'
46
62
  - !ruby/object:Gem::Dependency
47
63
  name: rspec
48
64
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
65
  requirements:
51
- - - ! '>='
66
+ - - '>='
52
67
  - !ruby/object:Gem::Version
53
68
  version: '0'
54
69
  type: :development
55
70
  prerelease: false
56
71
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
72
  requirements:
59
- - - ! '>='
73
+ - - '>='
60
74
  - !ruby/object:Gem::Version
61
75
  version: '0'
62
76
  - !ruby/object:Gem::Dependency
63
77
  name: rspec-spies
64
78
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
79
  requirements:
67
- - - ! '>='
80
+ - - '>='
68
81
  - !ruby/object:Gem::Version
69
82
  version: '0'
70
83
  type: :development
71
84
  prerelease: false
72
85
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
86
  requirements:
75
- - - ! '>='
87
+ - - '>='
76
88
  - !ruby/object:Gem::Version
77
89
  version: '0'
78
90
  - !ruby/object:Gem::Dependency
79
91
  name: vulcan
80
92
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
93
  requirements:
83
- - - ! '>='
94
+ - - '>='
84
95
  - !ruby/object:Gem::Version
85
96
  version: '0'
86
97
  type: :development
87
98
  prerelease: false
88
99
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
100
  requirements:
91
- - - ! '>='
101
+ - - '>='
92
102
  - !ruby/object:Gem::Version
93
103
  version: '0'
94
104
  description: Distributes the V8 JavaScript engine in binary and source forms in order
@@ -117,6 +127,7 @@ files:
117
127
  - lib/libv8/version.rb
118
128
  - libv8.gemspec
119
129
  - patches/add-freebsd9-and-freebsd10-to-gyp-GetFlavor.patch
130
+ - patches/do-not-imply-vfp3-and-armv7.patch
120
131
  - patches/fPIC-on-x64.patch
121
132
  - spec/location_spec.rb
122
133
  - spec/spec_helper.rb
@@ -2533,34 +2544,28 @@ files:
2533
2544
  - vendor/v8/build/gyp/tools/Xcode/Specifications/gyp.pbfilespec
2534
2545
  - vendor/v8/build/gyp/tools/Xcode/Specifications/gyp.xclangspec
2535
2546
  homepage: http://github.com/cowboyd/libv8
2536
- licenses: []
2547
+ licenses:
2548
+ - MIT
2549
+ metadata: {}
2537
2550
  post_install_message:
2538
2551
  rdoc_options: []
2539
2552
  require_paths:
2540
2553
  - lib
2541
2554
  - ext
2542
2555
  required_ruby_version: !ruby/object:Gem::Requirement
2543
- none: false
2544
2556
  requirements:
2545
- - - ! '>='
2557
+ - - '>='
2546
2558
  - !ruby/object:Gem::Version
2547
2559
  version: '0'
2548
- segments:
2549
- - 0
2550
- hash: 2124034166377561824
2551
2560
  required_rubygems_version: !ruby/object:Gem::Requirement
2552
- none: false
2553
2561
  requirements:
2554
- - - ! '>='
2562
+ - - '>='
2555
2563
  - !ruby/object:Gem::Version
2556
2564
  version: '0'
2557
- segments:
2558
- - 0
2559
- hash: 2124034166377561824
2560
2565
  requirements: []
2561
2566
  rubyforge_project: libv8
2562
- rubygems_version: 1.8.24
2567
+ rubygems_version: 2.0.0
2563
2568
  signing_key:
2564
- specification_version: 3
2569
+ specification_version: 4
2565
2570
  summary: Distribution of the V8 JavaScript engine
2566
2571
  test_files: []