Skip to content

Commit

Permalink
Merge pull request tweetstream#37 from pelle/3a2f86dde152afc0220fe2aa…
Browse files Browse the repository at this point in the history
…24c80b780ef4cd59

Add guard support
  • Loading branch information
stve committed Sep 8, 2011
2 parents c00bfc6 + 3a2f86d commit cab4d91
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .gitignore
Expand Up @@ -6,4 +6,8 @@ pkg
Gemfile.lock
coverage/*
.yardoc/*
doc/*
doc/*
.bundle
.swp
.idea
.rvmrc
10 changes: 10 additions & 0 deletions Guardfile
@@ -0,0 +1,10 @@
# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'rspec', :version => 2 do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec/" }
watch('spec/data/.+') { "spec/" }
end

1 change: 1 addition & 0 deletions tweetstream.gemspec
Expand Up @@ -25,6 +25,7 @@ Gem::Specification.new do |s|
s.add_development_dependency('rspec', '~> 2.6.0')
s.add_development_dependency('yajl-ruby', '~> 0.8.2')
s.add_development_dependency('json', '~> 1.5.1')
s.add_development_dependency('guard-rspec', '~> 0.4.3')

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
Expand Down

0 comments on commit cab4d91

Please sign in to comment.