Skip to content

Commit

Permalink
Remove Spork and Guard
Browse files Browse the repository at this point in the history
Use Zeus, Commands, or Spring instead:

https://github.com/burke/zeus
https://github.com/rails/commands
https://github.com/jonleighton/spring

They are superior to Spork for the following reasons:

* You don't have to commit anything into your Gemfile, spec/spec_helper,
  or version control.
* They improve the Rails bootup speed of rails server, runner, generate,
  console, and rake tasks... not just tests.
  • Loading branch information
Dan Croak committed Feb 24, 2013
1 parent 5adc8a6 commit 704a47b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 16 deletions.
4 changes: 2 additions & 2 deletions lib/suspenders/app_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ def configure_capybara_webkit
end
end

def setup_guard_spork
copy_file 'Guardfile', 'Guardfile'
def generate_clearance
generate 'clearance:install'
end

def setup_foreman
Expand Down
2 changes: 0 additions & 2 deletions templates/Gemfile_clean
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ group :development do
end

group :development, :test do
gem 'guard'
gem 'guard-spork'
gem 'rspec-rails'
gem 'sham_rack'
end
Expand Down
12 changes: 0 additions & 12 deletions templates/Guardfile

This file was deleted.

0 comments on commit 704a47b

Please sign in to comment.