The rails startup guard file has been updated to use the rails binary in "bin"

This commit is contained in:
echarp 2018-03-18 15:32:43 +01:00
parent ec8d9596e5
commit 34235dbbaa
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ guard 'migrate' do
watch('db/seeds.rb') watch('db/seeds.rb')
end end
guard :rails, port: 3000, host: '0.0.0.0' do guard :rails, port: 3000, host: '0.0.0.0', CLI: 'bin/rails server' do
watch('Gemfile.lock') watch('Gemfile.lock')
watch(%r{^(config|lib)/.*\.rb}) watch(%r{^(config|lib)/.*\.rb})
end end