Skip to content

Commit

Permalink
guard-rspec doesn't support the :version option anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
rymai committed Oct 30, 2013
1 parent 2ebc573 commit 4ed9393
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ guard :bundler do
watch(%r{^.+\.gemspec$})
end

guard :rspec, version: 2 do
guard :rspec do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { 'spec' }
Expand Down
2 changes: 1 addition & 1 deletion guard-bundler.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 1.9.2'

s.add_dependency 'guard', '~> 2.0'
s.add_dependency 'guard', '~> 2.2'
s.add_dependency 'bundler', '~> 1.0'

s.add_development_dependency 'rspec'
Expand Down

0 comments on commit 4ed9393

Please sign in to comment.