opal 0.11.1 → 0.11.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8bb99f3395df262792e6ca48e2a6961beb0a3d2211eafb02801fd5fd9bf1d031
4
- data.tar.gz: e88bb565616ad3c597f787995ad3f594225f1267f964d6ae5f3058161091adff
3
+ metadata.gz: d0e261174d8f538e6e522e9a5ff6b981c92a9c5f8cdb57ef94d8ef10c5b3cd89
4
+ data.tar.gz: c073e7dc36aec005e967cffe687b14545dca7af701d418393f1818436666ed36
5
5
  SHA512:
6
- metadata.gz: f3ee41438180a4a4afdff1de9dfeea3be2414dab24824b71ccc1fa0369c9efba9fc60095b18c00ef51a6869f883359d13a4da708f2b53f0798b2ed15a0987901
7
- data.tar.gz: aeb5c002f87b1215f3863d21fe63a3e14585b5c2bd2738e94555f1c71c97df5e2badd450a478a1c62cd095f89be7cfd38ee121c737d0d27b3e0407b41539b71c
6
+ metadata.gz: b90b4f59f1673722eafd01086297b430f7d4eea790ca4edf339d0358e338a42e5ae990464215a415ccd6560805f417f352c9966fe24450bd42693a1f8ae92777
7
+ data.tar.gz: 4f0d91d3a9d494e6b63562bbdb13c2615686d6c0b799424e2b0f84d50f247f1ccd3b7dc4bb05c29891912a6ed67aba62fe511f4babf52c7098595fb0bd052d8d
@@ -92,7 +92,7 @@ before_install:
92
92
  - git submodule update --init
93
93
  - npm install -g jshint
94
94
  - npm install -g uglify-js
95
- - test $REINSTALL_BUNDLER && gem install bundler || true
95
+ - test $REINSTALL_BUNDLER && gem install bundler -v 0.16.1 || true
96
96
  - type bundle || gem install bundler
97
97
  - bundle config without doc
98
98
  - which google-chrome-stable
@@ -21,6 +21,16 @@ Whitespace conventions:
21
21
 
22
22
 
23
23
 
24
+ ## [0.11.2](https://github.com/opal/opal/compare/v0.11.1...v0.11.2) - 2018-08-24
25
+
26
+
27
+ ### Fixed
28
+
29
+ - Remove symlink that caused problems on Windows
30
+
31
+
32
+
33
+
24
34
  ## [0.11.1](https://github.com/opal/opal/compare/v0.11.0...v0.11.1) - 2018-07-17
25
35
 
26
36
 
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ exec "#{__dir__}/../exe/#{File.basename($0)}", *ARGV
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ exec "#{__dir__}/../exe/#{File.basename($0)}", *ARGV
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ exec "#{__dir__}/../exe/#{File.basename($0)}", *ARGV
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ exec "#{__dir__}/../exe/#{File.basename($0)}", *ARGV
@@ -2,5 +2,5 @@
2
2
  module Opal
3
3
  # WHEN RELEASING:
4
4
  # Remember to update RUBY_ENGINE_VERSION in opal/corelib/constants.rb too!
5
- VERSION = '0.11.1'
5
+ VERSION = '0.11.2'
6
6
  end
@@ -14,7 +14,9 @@ Gem::Specification.new do |spec|
14
14
  spec.license = 'MIT'
15
15
 
16
16
  spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
17
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ `git ls-files -z`.split("\x0")
18
+ .reject { |f| f.match(%r{^(test|spec|features)/}) }
19
+ .reject { |f| File.symlink?(f) } # Windows doesn't always support them
18
20
  end
19
21
  spec.bindir = 'exe'
20
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
@@ -1,8 +1,8 @@
1
1
  RUBY_PLATFORM = 'opal'
2
2
  RUBY_ENGINE = 'opal'
3
3
  RUBY_VERSION = '2.4.0'
4
- RUBY_ENGINE_VERSION = '0.11.1'
5
- RUBY_RELEASE_DATE = '2018-07-17'
4
+ RUBY_ENGINE_VERSION = '0.11.2'
5
+ RUBY_RELEASE_DATE = '2018-08-24'
6
6
  RUBY_PATCHLEVEL = 0
7
7
  RUBY_REVISION = 0
8
8
  RUBY_COPYRIGHT = 'opal - Copyright (C) 2013-2015 Adam Beynon'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.1
4
+ version: 0.11.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elia Schito
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2018-07-17 00:00:00.000000000 Z
13
+ date: 2018-08-24 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: sourcemap
@@ -356,7 +356,10 @@ files:
356
356
  - benchmark/bm_module_definition_big.rb
357
357
  - benchmark/bm_module_definition_small.rb
358
358
  - benchmark/run.rb
359
- - bin
359
+ - bin/opal
360
+ - bin/opal-build
361
+ - bin/opal-mspec
362
+ - bin/opal-repl
360
363
  - config.ru
361
364
  - docs/compiled_ruby.md
362
365
  - docs/compiler.md
@@ -405,7 +408,6 @@ files:
405
408
  - lib/opal/cli_runners/chrome.js
406
409
  - lib/opal/cli_runners/chrome.rb
407
410
  - lib/opal/cli_runners/nashorn.rb
408
- - lib/opal/cli_runners/node_modules/.bin/chrome-remote-interface
409
411
  - lib/opal/cli_runners/node_modules/chrome-remote-interface/LICENSE
410
412
  - lib/opal/cli_runners/node_modules/chrome-remote-interface/README.md
411
413
  - lib/opal/cli_runners/node_modules/chrome-remote-interface/bin/client.js
@@ -754,7 +756,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
754
756
  version: '0'
755
757
  requirements: []
756
758
  rubyforge_project:
757
- rubygems_version: 2.7.4
759
+ rubygems_version: 2.7.7
758
760
  signing_key:
759
761
  specification_version: 4
760
762
  summary: Ruby runtime and core library for JavaScript
data/bin DELETED
@@ -1 +0,0 @@
1
- ./exe
@@ -1 +0,0 @@
1
- lib/opal/cli_runners/node_modules/.bin/../chrome-remote-interface/bin/client.js