Guard restart Rails in test mode not in development #20
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Guard::Rails will now restart your app on port 3000 using thin and development environment.
=> Booting Thin
=> Rails 3.2.6 application starting in test on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
my guard-rails configuration:
guard 'rails', :environment => :development, :port => 3000, :server => :thin do
watch('Gemfile.lock')
watch(%r{^(config|lib)/.*})
end