Skip to content
This repository has been archived by the owner on Nov 30, 2018. It is now read-only.

Commit

Permalink
Add Guard for development
Browse files Browse the repository at this point in the history
  • Loading branch information
chadrem committed Jul 8, 2012
1 parent 13c0811 commit a64b532
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 17 deletions.
27 changes: 12 additions & 15 deletions Gemfile
@@ -1,19 +1,16 @@
source "http://rubygems.org"
# Add dependencies required to use your gem here.
# Example:
# gem "activesupport", ">= 2.3.5"
source 'http://rubygems.org'

gem "typhoeus"
gem "nokogiri"
gem 'typhoeus'
gem 'nokogiri'

# Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc.
group :development do
gem "rspec", "~> 2.8.0"
gem "bundler", "~> 1.1.0"
gem "jeweler", "~> 1.6.4"
gem "simplecov", ">= 0"
gem "ZenTest", "~> 4.6.2"
gem "rdoc", ">= 3.9.4"
gem "debugger"
gem 'rspec', '~> 2.8.0'
gem 'bundler', '~> 1.1.0'
gem 'jeweler', '~> 1.6.4'
gem 'simplecov', '>= 0'
gem 'rdoc', '>= 3.9.4'
gem 'guard', '~> 1.2.3'
gem 'guard-rspec', '~> 1.1.0'
gem 'growl'
platform(:ruby) { gem 'debugger' }
end
21 changes: 19 additions & 2 deletions Gemfile.lock
@@ -1,7 +1,6 @@
GEM
remote: http://rubygems.org/
specs:
ZenTest (4.6.2)
columnize (0.3.6)
debugger (1.1.4)
columnize (>= 0.3.1)
Expand All @@ -13,15 +12,30 @@ GEM
diff-lcs (1.1.3)
ffi (1.0.11)
git (1.2.5)
growl (1.0.3)
guard (1.2.3)
listen (>= 0.4.2)
thor (>= 0.14.6)
guard-rspec (1.1.0)
guard (>= 1.1)
jeweler (1.6.4)
bundler (~> 1.0)
git (>= 1.2.5)
rake
json (1.7.3)
listen (0.4.7)
rb-fchange (~> 0.0.5)
rb-fsevent (~> 0.9.1)
rb-inotify (~> 0.8.8)
mime-types (1.18)
multi_json (1.3.6)
nokogiri (1.5.4)
rake (0.9.2.2)
rb-fchange (0.0.5)
ffi
rb-fsevent (0.9.1)
rb-inotify (0.8.8)
ffi (>= 0.5.0)
rdoc (3.12)
json (~> 1.4)
rspec (2.8.0)
Expand All @@ -36,6 +50,7 @@ GEM
multi_json (~> 1.0)
simplecov-html (~> 0.5.3)
simplecov-html (0.5.3)
thor (0.15.4)
typhoeus (0.4.2)
ffi (~> 1.0)
mime-types (~> 1.18)
Expand All @@ -44,9 +59,11 @@ PLATFORMS
ruby

DEPENDENCIES
ZenTest (~> 4.6.2)
bundler (~> 1.1.0)
debugger
growl
guard (~> 1.2.3)
guard-rspec (~> 1.1.0)
jeweler (~> 1.6.4)
nokogiri
rdoc (>= 3.9.4)
Expand Down
5 changes: 5 additions & 0 deletions Guardfile
@@ -0,0 +1,5 @@
guard :rspec, :version => 2 do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| r = "spec/lib/#{m[1]}_spec.rb"; puts r; r }
watch('spec/spec_helper.rb') { "spec" }
end

0 comments on commit a64b532

Please sign in to comment.