use Steam 1.0.1 + bump version to 2.0.1
did
committed Feb 16, 2016
commit 1f08afd1abdb3e35896feee71c11e2d013b05a1d
Showing 5
changed files with
6 additions
and 6 deletions
Gemfile
+1
-1
| @@ | @@ -6,7 +6,7 @@ gemspec |
| gem 'rb-fsevent', '~> 0.9.1' | |
| # Development | |
| - | gem 'locomotivecms_steam', github: 'locomotivecms/steam', ref: 'ee5b98e', require: false |
| + | # gem 'locomotivecms_steam', github: 'locomotivecms/steam', ref: 'ee5b98e', require: false |
| # gem 'locomotivecms_coal', github: 'locomotivecms/coal', ref: '32b2844', require: false | |
| # gem 'locomotivecms_common', github: 'locomotivecms/common', ref: '3046b79893', require: false | |
locomotive/wagon/commands/serve_command.rb b/lib/locomotive/wagon/commands/serve_command.rb
+2
-2
| @@ | @@ -67,7 +67,7 @@ module Locomotive::Wagon |
| configure_logger | |
| - | respond_to_notifications |
| + | subscribe_to_notifications |
| Locomotive::Steam.configure do |config| | |
| config.mode = :test | |
| @@ | @@ -139,7 +139,7 @@ module Locomotive::Wagon |
| end | |
| end | |
| - | def respond_to_notifications |
| + | def subscribe_to_notifications |
| # Page not found | |
| ActiveSupport::Notifications.subscribe('steam.render.page_not_found') do |name, start, finish, id, payload| | |
| fullpath, locale, default_locale = payload[:path], payload[:locale], payload[:default_locale] | |
locomotive/wagon/version.rb b/lib/locomotive/wagon/version.rb
+1
-1
| @@ | @@ -1,5 +1,5 @@ |
| module Locomotive | |
| module Wagon | |
| - | VERSION = '2.0.0' |
| + | VERSION = '2.0.1' |
| end | |
| end | |
locomotivecms_wagon.gemspec
+1
-1
| @@ | @@ -28,7 +28,7 @@ Gem::Specification.new do |gem| |
| gem.add_dependency 'locomotivecms_common', '~> 0.0.5' | |
| gem.add_dependency 'locomotivecms_coal', '~> 1.0.0' | |
| - | gem.add_dependency 'locomotivecms_steam', '~> 1.0.0' |
| + | gem.add_dependency 'locomotivecms_steam', '~> 1.0.1' |
| gem.add_dependency 'listen', '~> 3.0.4' | |
| gem.add_dependency 'rack-livereload', '~> 0.3.16' | |
spec/integration/cli_spec.rb
+1
-1
| @@ | @@ -10,7 +10,7 @@ describe Locomotive::Wagon::CLI do |
| describe '#version' do | |
| let(:command) { Locomotive::Wagon::CLI::Main.start(['version']) } | |
| - | it { is_expected.to match /^2.0.0/ } |
| + | it { is_expected.to match /^2.0.1/ } |
| end | |