Skip to content

Commit

Permalink
Add guard-bundler.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmeiklejohn committed Sep 16, 2011
1 parent 0aa624c commit f4edaad
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ group :development, :test do
gem 'silent-postgres'
gem 'guard'
gem 'guard-cucumber'
gem 'guard-bundler'
end

# These gems suck and do stupid things when in maintenance mode
Expand Down
4 changes: 4 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ GEM
gravtastic (3.2.6)
guard (0.7.0)
thor (~> 0.14.6)
guard-bundler (0.1.3)
bundler (>= 1.0.0)
guard (>= 0.2.2)
guard-cucumber (0.6.3)
cucumber (>= 0.10)
guard (>= 0.4.0)
Expand Down Expand Up @@ -206,6 +209,7 @@ DEPENDENCIES
gchartrb
gravtastic
guard
guard-bundler
guard-cucumber
high_voltage
hoptoad_notifier
Expand Down
6 changes: 6 additions & 0 deletions Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@ guard 'cucumber' do
watch(%r{^features/support/.+$}) { 'features' }
watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' }
end

guard 'bundler' do
watch('Gemfile')
# Uncomment next line if Gemfile contain `gemspec' command
# watch(/^.+\.gemspec/)
end

0 comments on commit f4edaad

Please sign in to comment.