Skip to content
Snippets Groups Projects
Commit ef4e9c24 authored by Nihad Abbasov's avatar Nihad Abbasov
Browse files

install guard-spinach

parent ae9689f8
No related branches found
No related tags found
1 merge request!1426Cucumber => Spinach
Loading
Loading
@@ -119,6 +119,7 @@ group :development, :test do
 
# Guard
gem 'guard-rspec'
gem 'guard-spinach'
 
# Notification
gem 'rb-fsevent', :require => darwin_only('rb-fsevent')
Loading
Loading
Loading
Loading
@@ -178,6 +178,9 @@ GEM
thor (>= 0.14.6)
guard-rspec (1.2.1)
guard (>= 1.1)
guard-spinach (0.0.2)
guard (>= 1.1)
spinach
haml (3.1.6)
haml-rails (0.3.4)
actionpack (~> 3.0)
Loading
Loading
@@ -405,6 +408,7 @@ DEPENDENCIES
grit!
growl
guard-rspec
guard-spinach
haml-rails
headless
httparty
Loading
Loading
Loading
Loading
@@ -13,18 +13,14 @@ guard 'rspec', :version => 2 do
watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
watch('config/routes.rb') { "spec/routing" }
watch('app/controllers/application_controller.rb') { "spec/controllers" }
# Capybara request specs
watch(%r{^app/views/(.+)/.*\.(erb|haml)$}) { |m| "spec/requests/#{m[1]}_spec.rb" }
# Turnip features and steps
watch(%r{^spec/acceptance/(.+)\.feature$})
watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'spec/acceptance' }
end
 
guard 'cucumber' do
watch(%r{^features/.+\.feature$})
watch(%r{^features/support/.+$}) { 'features' }
watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' }
guard 'spinach' do
watch(%r|^features/(.*)\.feature|)
watch(%r|^features/steps/(.*)([^/]+)\.rb|) do |m|
"features/#{m[1]}#{m[2]}.feature"
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment