Merge branch 'stable' into develop

This commit is contained in:
Jonne Haß 2016-06-19 11:56:58 +02:00
commit 2cab7f02eb
No known key found for this signature in database
GPG key ID: F347E0EB47AC70D6
3 changed files with 4 additions and 15 deletions

View file

@ -234,10 +234,10 @@ end
group :development do
# Automatic test runs
gem "guard-cucumber", "2.1.2"
gem "guard-rspec", "4.7.2", require: false
gem "guard-rubocop", "1.2.0"
gem "guard", "2.14.0", require: false
gem "guard-cucumber", "2.1.2", require: false
gem "guard-rspec", "4.7.2", require: false
gem "guard-rubocop", "1.2.0", require: false
gem "rb-fsevent", "0.9.7", require: false
gem "rb-inotify", "0.9.7", require: false
@ -261,7 +261,6 @@ group :development do
# Debugging
gem "pry"
gem "pry-debundle"
gem "pry-byebug"
# test coverage

View file

@ -608,8 +608,6 @@ GEM
pry-byebug (3.4.0)
byebug (~> 9.0)
pry (~> 0.10)
pry-debundle (0.8)
pry
quiet_assets (1.1.0)
railties (>= 3.1, < 5.0)
rack (1.6.4)
@ -991,7 +989,6 @@ DEPENDENCIES
pronto-scss (= 0.6.0)
pry
pry-byebug
pry-debundle
quiet_assets (= 1.1.0)
rack-cors (= 0.4.0)
rack-google-analytics (= 1.2.0)

View file

@ -22,8 +22,7 @@ guard :rspec, cmd: "bin/spring rspec", all_on_start: false, all_after_pass: fals
end
guard(:cucumber,
command_prefix: "bin/spring",
bundler: false,
cmd: "bin/spring cucumber",
all_on_start: false,
all_after_pass: false) do
watch(/^features\/.+\.feature$/)
@ -37,9 +36,3 @@ guard :rubocop, all_on_start: false, keep_failed: false do
watch(/(?:app|config|db|lib|features|spec)\/.+\.rb$/)
watch(/(config.ru|Gemfile|Guardfile|Rakefile)$/)
end
guard :jshintrb do
watch(/^app\/assets\/javascripts\/.+\.js$/)
watch(/^lib\/assets\/javascripts\/.+\.js$/)
watch(/^spec\/javascripts\/.+\.js$/)
end