Removed unnecessary documentation

This commit is contained in:
Andres Keskküla 2014-08-27 15:13:43 +03:00
parent ede426e22e
commit 055daf90b8
2 changed files with 3 additions and 11 deletions

View file

@ -58,9 +58,12 @@ group :development do
# bundle exec rake doc:rails generates the API under doc/api. # bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0' gem 'sdoc', '~> 0.4.0'
# run tests automatically
gem 'guard', '~> 2.6.1' gem 'guard', '~> 2.6.1'
# rspec support for guard
gem 'guard-rspec', '~> 4.3.1' gem 'guard-rspec', '~> 4.3.1'
# rubocop support for guard
gem 'guard-rubocop', '~> 1.1.0' gem 'guard-rubocop', '~> 1.1.0'
end end

View file

@ -1,14 +1,3 @@
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
# Note: The cmd option is now required due to the increasing number of ways
# rspec may be run, below are examples of the most common uses.
# * bundler: 'bundle exec rspec'
# * bundler binstubs: 'bin/rspec'
# * spring: 'bin/rsspec' (This will use spring if running and you have
# installed the spring binstubs per the docs)
# * zeus: 'zeus rspec' (requires the server to be started separetly)
# * 'just' rspec: 'rspec'
group :red_green_refactor, halt_on_fail:true do group :red_green_refactor, halt_on_fail:true do
guard :rspec, cmd: 'bundle exec rspec' do guard :rspec, cmd: 'bundle exec rspec' do
watch(%r{^spec/.+_spec\.rb$}) watch(%r{^spec/.+_spec\.rb$})