Skip to content

Commit

Permalink
install guard-cucumber
Browse files Browse the repository at this point in the history
  • Loading branch information
alainravet committed Feb 14, 2012
1 parent 0b8b9b5 commit ae01d42
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Gemfile.lock
Expand Up @@ -2,7 +2,9 @@ PATH
remote: .
specs:
gitloop (0.0.1)
guard-cucumber
methadone
ruby_gntp

GEM
remote: http://rubygems.org/
Expand All @@ -25,6 +27,12 @@ GEM
ffi (1.0.11)
gherkin (2.7.7)
json (>= 1.4.6)
guard (1.0.0)
ffi (>= 0.5.0)
thor (~> 0.14.6)
guard-cucumber (0.7.5)
cucumber (>= 0.10)
guard (>= 0.8.3)
json (1.6.5)
methadone (0.5.1)
bundler
Expand All @@ -39,7 +47,9 @@ GEM
rspec-expectations (2.8.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.8.0)
ruby_gntp (0.3.4)
term-ansicolor (1.0.7)
thor (0.14.6)

PLATFORMS
ruby
Expand Down
11 changes: 11 additions & 0 deletions Guardfile
@@ -0,0 +1,11 @@
# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'cucumber', :notification => true do
watch(%r{^lib/(.+)\.rb$}) { 'features' }
watch(%r{^bin/(.+)\..*$}) { 'features' }

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' }
end
2 changes: 2 additions & 0 deletions gitloop.gemspec
Expand Up @@ -25,4 +25,6 @@ Gem::Specification.new do |s|
s.add_development_dependency('aruba')
s.add_development_dependency('rake','~> 0.9.2')
s.add_dependency('methadone')
s.add_dependency('guard-cucumber')
s.add_dependency('ruby_gntp') # for Growl notifications
end

0 comments on commit ae01d42

Please sign in to comment.