Skip to content

Commit

Permalink
added guard
Browse files Browse the repository at this point in the history
  • Loading branch information
stve committed May 8, 2012
1 parent 7c12a88 commit d48ca72
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Guardfile
@@ -0,0 +1,6 @@
guard 'rspec', :version => 2 do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end

1 change: 1 addition & 0 deletions em-twitter.gemspec
Expand Up @@ -21,6 +21,7 @@ Gem::Specification.new do |gem|
gem.add_development_dependency 'simplecov', '~> 0.5'
gem.add_development_dependency 'yard', '~> 0.7'
gem.add_development_dependency 'mockingbird', "~> 0.1.1"
gem.add_development_dependency 'guard-rspec'

gem.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
gem.files = `git ls-files`.split("\n")
Expand Down

0 comments on commit d48ca72

Please sign in to comment.