libv8 6.0.286.54.0beta1 → 6.0.286.54.0beta2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +0 -1
- data/ext/libv8/location.rb +1 -1
- data/lib/libv8/version.rb +1 -1
- data/spec/location_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9bce5f1613475abb8a28df3953632f42e8bddbf
|
4
|
+
data.tar.gz: 9fb8ca7b9371325a661a2175246cc2e1f394898b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5c36459dc6cc83c17cdd4709c56592cf4d3c7f2535050559ead8792360da93929b3bb96ea14855686abc54fd7a27472aca5093c001dad6deae15bc948d6aec1
|
7
|
+
data.tar.gz: 382ae210a0f86578f5d49468258af8c862001d145c84752385d4e6199c021b318255c39147637968890f0a7d3568781b9742ba67d58ad311b957f0e8c0de2342
|
data/CHANGELOG.md
CHANGED
@@ -5,7 +5,6 @@
|
|
5
5
|
instead added as a submodule in the current tree
|
6
6
|
* Hooks are no longer ran after syncing V8's upstream dependencies
|
7
7
|
* Reordered libraries in accordance with the V8 wiki
|
8
|
-
* Added groups around the library flags in accordance with the V8 wiki
|
9
8
|
|
10
9
|
### v5.9.211.38.0, v5.9.211.38.1 - 2017-07-26
|
11
10
|
|
data/ext/libv8/location.rb
CHANGED
@@ -29,7 +29,7 @@ module Libv8
|
|
29
29
|
|
30
30
|
def configure(context = MkmfContext.new)
|
31
31
|
context.incflags.insert 0, Libv8::Paths.include_paths.map{ |p| "-I#{p}" }.join(" ") + " "
|
32
|
-
context.ldflags.insert 0,
|
32
|
+
context.ldflags.insert 0, Libv8::Paths.object_paths.join(" ") + " "
|
33
33
|
end
|
34
34
|
|
35
35
|
def verify_installation!
|
data/lib/libv8/version.rb
CHANGED
data/spec/location_spec.rb
CHANGED
@@ -64,7 +64,7 @@ describe "libv8 locations" do
|
|
64
64
|
end
|
65
65
|
|
66
66
|
it "prepends the locations of any libv8 objects on the the ldflags" do
|
67
|
-
expect(@context.ldflags).to eql "
|
67
|
+
expect(@context.ldflags).to eql "/foo\\ bar/v8/out/x64.release/obj.target/tools/gyp/libv8_base.a /foo\\ bar/v8/out/x64.release/obj.target/tools/gyp/libv8_libbase.a /foo\\ bar/v8/out/x64.release/obj.target/tools/gyp/libv8_snapshot.a /foo\\ bar/v8/out/x64.release/obj.target/tools/gyp/libv8_libplatform.a /foo\\ bar/v8/out/x64.release/obj.target/tools/gyp/libv8_libsampler.a -lobjc -lpthread"
|
68
68
|
end
|
69
69
|
end
|
70
70
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libv8
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.286.54.
|
4
|
+
version: 6.0.286.54.0beta2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Charles Lowell
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-08-
|
11
|
+
date: 2017-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|