upgrade duktape to 1.6.1
did
committed Mar 08, 2017
commit 7a4cbdbda0d37e76d1c6428483a0617da1c46e10
Showing 4
changed files with
10 additions
and 10 deletions
Gemfile
+1
-0
| @@ | @@ -9,6 +9,7 @@ group :development do |
| # gem 'locomotivecms_models', '0.0.1.pre.alpha' | |
| # gem 'locomotivecms-liquid', path: '/Users/didier/Documents/LocomotiveCMS/gems/liquid' | |
| # gem 'duktape', path: '/Users/didier/Documents/NoCoffee/ProjectsX/duktape.rb' | |
| + | # gem 'duktape', github: 'judofyr/duktape.rb', ref: '20ef6a5' |
| # gem 'thin' | |
| gem 'puma' | |
| gem 'haml', '~> 4.0.6' | |
Gemfile.lock
+7
-8
| @@ | @@ -9,7 +9,7 @@ PATH |
| coffee-script (~> 2.4.1) | |
| compass (~> 1.0.3) | |
| dragonfly (~> 1.1.1) | |
| - | duktape (~> 1.3.0.6) |
| + | duktape (~> 1.6.1.0) |
| httparty (~> 0.14.0) | |
| kramdown (~> 1.13.2) | |
| locomotivecms-solid (~> 4.0.1) | |
| @@ | @@ -32,16 +32,15 @@ GEM |
| remote: https://rubygems.org/ | |
| specs: | |
| RedCloth (4.3.2) | |
| - | activesupport (4.2.7.1) |
| + | activesupport (4.2.8) |
| i18n (~> 0.7) | |
| - | json (~> 1.7, >= 1.7.7) |
| minitest (~> 5.1) | |
| thread_safe (~> 0.3, >= 0.3.4) | |
| tzinfo (~> 1.1) | |
| addressable (2.5.0) | |
| public_suffix (~> 2.0, >= 2.0.2) | |
| attr_extras (4.4.0) | |
| - | autoprefixer-rails (6.7.2) |
| + | autoprefixer-rails (6.7.6) |
| execjs | |
| bcrypt (3.1.11) | |
| bson (4.2.1) | |
| @@ | @@ -68,7 +67,7 @@ GEM |
| sass (>= 3.3.0, < 3.5) | |
| compass-import-once (1.0.5) | |
| sass (>= 3.2, < 3.5) | |
| - | concurrent-ruby (1.0.4) |
| + | concurrent-ruby (1.0.5) |
| coveralls (0.8.19) | |
| json (>= 1.8, < 3) | |
| simplecov (~> 0.12.0) | |
| @@ | @@ -82,9 +81,9 @@ GEM |
| addressable (~> 2.3) | |
| multi_json (~> 1.0) | |
| rack (>= 1.3) | |
| - | duktape (1.3.0.6) |
| + | duktape (1.6.1.0) |
| execjs (2.7.0) | |
| - | ffi (1.9.17) |
| + | ffi (1.9.18) |
| flamegraph (0.9.5) | |
| haml (4.0.7) | |
| tilt | |
| @@ | @@ -184,7 +183,7 @@ GEM |
| term-ansicolor (1.4.0) | |
| tins (~> 1.0) | |
| thor (0.19.4) | |
| - | thread_safe (0.3.5) |
| + | thread_safe (0.3.6) |
| tilt (2.0.6) | |
| timecop (0.8.1) | |
| tins (1.13.2) | |
locomotivecms_steam.gemspec
+1
-1
| @@ | @@ -45,7 +45,7 @@ Gem::Specification.new do |spec| |
| spec.add_dependency 'RedCloth', '~> 4.3.2' | |
| spec.add_dependency 'mimetype-fu', '~> 0.1.2' | |
| spec.add_dependency 'mime-types', '~> 2.6.1' | |
| - | spec.add_dependency 'duktape', '~> 1.3.0.6' |
| + | spec.add_dependency 'duktape', '~> 1.6.1.0' |
| spec.add_dependency 'pony', '~> 1.11' | |
| spec.add_dependency 'locomotivecms-solid', '~> 4.0.1' | |
spec/unit/services/action_service_spec.rb
+1
-1
| @@ | @@ -29,7 +29,7 @@ describe Locomotive::Steam::ActionService do |
| let(:script) { 'a +/ b * var;' } | |
| it 'raises a meaningful exception' do | |
| - | expect { subject }.to raise_error(Locomotive::Steam::ActionError, "eof or line terminator while parsing regexp (line 2)") |
| + | expect { subject }.to raise_error(Locomotive::Steam::ActionError, "eof or line terminator in regexp (line 2)") |
| end | |
| end | |