sq_mini_racer 0.2.3.sqreen1 → 0.2.3.sqreen2
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.
- checksums.yaml +4 -4
- data/.travis.yml +9 -1
- data/ext/mini_racer_extension/extconf.rb +4 -0
- data/lib/sqreen/mini_racer/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 63720790c786c9fa493ffc3e97546595ab71dc8499e711459dcfc93400323d1d
|
4
|
+
data.tar.gz: ef3575681579516ff276402cf1c7e5068932bae9adc31e290e8140854a9f8a96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 689103108fe2abb9ea4a1b8f166730186ed77fb319e49d1e9c7e3d65677a17cda85efa7ef5e07987da5f239788a5b2cd20f4dd7e7a758794d973eb74d6cb366a
|
7
|
+
data.tar.gz: 4a46e3e00fdacff225ef6a6f9a52b4635085e46ba682ab7d613e7a7a74f50b2ace5b3f0fad335a66322c6227b3f8918f6eaaf5825a01d7d4075b811435d95914
|
data/.travis.yml
CHANGED
@@ -10,9 +10,17 @@ matrix:
|
|
10
10
|
sudo: true
|
11
11
|
rvm: 2.0
|
12
12
|
- os: linux
|
13
|
-
dist:
|
13
|
+
dist: precise
|
14
14
|
sudo: true
|
15
15
|
rvm: 2.1
|
16
|
+
addons:
|
17
|
+
apt:
|
18
|
+
sources:
|
19
|
+
- ubuntu-toolchain-r-test
|
20
|
+
packages:
|
21
|
+
- g++-4.8
|
22
|
+
env:
|
23
|
+
- CXX=g++-4.8
|
16
24
|
- os: linux
|
17
25
|
dist: trusty
|
18
26
|
sudo: true
|
@@ -2,9 +2,11 @@ require 'mkmf'
|
|
2
2
|
require 'fileutils'
|
3
3
|
|
4
4
|
IS_DARWIN = RUBY_PLATFORM =~ /darwin/
|
5
|
+
IS_SOLARIS = RUBY_PLATFORM =~ /solaris/
|
5
6
|
|
6
7
|
have_library('pthread')
|
7
8
|
have_library('objc') if IS_DARWIN
|
9
|
+
$CPPFLAGS.gsub! /-std=\w+/, ''
|
8
10
|
$CPPFLAGS += " -Wall" unless $CPPFLAGS.split.include? "-Wall"
|
9
11
|
$CPPFLAGS += " -g" unless $CPPFLAGS.split.include? "-g"
|
10
12
|
$CPPFLAGS += " -rdynamic" unless $CPPFLAGS.split.include? "-rdynamic"
|
@@ -65,6 +67,8 @@ def fixup_libtinfo
|
|
65
67
|
end
|
66
68
|
|
67
69
|
def libv8_gem_name
|
70
|
+
return "libv8-solaris" if IS_SOLARIS
|
71
|
+
|
68
72
|
is_musl = false
|
69
73
|
begin
|
70
74
|
is_musl = !!(File.read('/proc/self/maps') =~ /ld-musl-x86_64/)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sq_mini_racer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.3.
|
4
|
+
version: 0.2.3.sqreen2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sam Saffron
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-10-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|