no more reference to the therubyracer gem
did
committed Jan 06, 2016
commit 3dd177145f0678fc6832abca85376f1acbbefc91
Showing 2
changed files with
4 additions
and 3 deletions
Gemfile
+1
-3
| @@ | @@ -5,10 +5,8 @@ gemspec |
| gem 'rb-fsevent', '~> 0.9.1' | |
| - | gem 'therubyracer' |
| - | |
| # Development | |
| - | # gem 'locomotivecms_steam', github: 'locomotivecms/steam', ref: '7825b47', require: false |
| + | gem 'locomotivecms_steam', github: 'locomotivecms/steam', ref: '096da14', 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
+3
-0
| @@ | @@ -103,6 +103,9 @@ module Locomotive::Wagon |
| # TODO: new feature -> pick the right Rack handler (Thin, Puma, ...etc) | |
| require 'thin' | |
| + | # Thin in debug mode |
| + | # Thin::Logging.debug = true |
| + | |
| app = Locomotive::Steam::Server.to_app | |
| Thin::Server.new(options[:host], options[:port], { signals: true }, app).tap do |server| | |