Merge pull request #5 from tehpeh/custom_server
Add custom server to options (:server => 'thin').
This commit is contained in:
commit
45b8b6c4a2
|
@ -12,7 +12,8 @@ module Guard
|
||||||
:environment => 'development',
|
:environment => 'development',
|
||||||
:start_on_start => true,
|
:start_on_start => true,
|
||||||
:force_run => false,
|
:force_run => false,
|
||||||
:timeout => 20
|
:timeout => 20,
|
||||||
|
:server => nil
|
||||||
}
|
}
|
||||||
|
|
||||||
def initialize(watchers = [], options = {})
|
def initialize(watchers = [], options = {})
|
||||||
|
@ -23,7 +24,8 @@ module Guard
|
||||||
end
|
end
|
||||||
|
|
||||||
def start
|
def start
|
||||||
UI.info "Guard::Rails will now restart your app on port #{options[:port]} using #{options[:environment]} environment."
|
server = options[:server] ? "#{options[:server]} and " : ""
|
||||||
|
UI.info "Guard::Rails will now restart your app on port #{options[:port]} using #{server}#{options[:environment]} environment."
|
||||||
run_all if options[:start_on_start]
|
run_all if options[:start_on_start]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,7 @@ module Guard
|
||||||
]
|
]
|
||||||
|
|
||||||
rails_options << '-d' if options[:daemon]
|
rails_options << '-d' if options[:daemon]
|
||||||
|
rails_options << options[:server] if options[:server]
|
||||||
|
|
||||||
%{sh -c 'cd #{Dir.pwd} && rails s #{rails_options.join(' ')} &'}
|
%{sh -c 'cd #{Dir.pwd} && rails s #{rails_options.join(' ')} &'}
|
||||||
end
|
end
|
||||||
|
|
|
@ -46,6 +46,14 @@ describe Guard::RailsRunner do
|
||||||
runner.build_rails_command.should match(%r{ -d})
|
runner.build_rails_command.should match(%r{ -d})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context 'custom server' do
|
||||||
|
let(:options) { default_options.merge(:server => 'thin') }
|
||||||
|
|
||||||
|
it "should have the server name" do
|
||||||
|
runner.build_rails_command.should match(%r{thin})
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe '#start' do
|
describe '#start' do
|
||||||
|
|
Loading…
Reference in New Issue