0
0
Fork 0

added guard as a helper

This commit is contained in:
Gibheer 2012-11-13 21:56:02 +01:00
parent 0b006fd388
commit 77130b3a23
2 changed files with 28 additions and 0 deletions

View File

@ -1,3 +1,9 @@
source 'https://rubygems.org'
gemspec
group :guard do
gem 'guard'
gem 'guard-bundler'
gem 'guard-rspec'
end

View File

@ -7,7 +7,25 @@ PATH
GEM
remote: https://rubygems.org/
specs:
coderay (1.0.8)
diff-lcs (1.1.3)
guard (1.5.4)
listen (>= 0.4.2)
lumberjack (>= 1.0.2)
pry (>= 0.9.10)
thor (>= 0.14.6)
guard-bundler (1.0.0)
bundler (~> 1.0)
guard (~> 1.1)
guard-rspec (1.2.1)
guard (>= 1.1)
listen (0.5.3)
lumberjack (1.0.2)
method_source (0.8.1)
pry (0.9.10)
coderay (~> 1.0.5)
method_source (~> 0.8)
slop (~> 3.3.1)
rack (1.4.1)
rspec (2.11.0)
rspec-core (~> 2.11.0)
@ -17,12 +35,16 @@ GEM
rspec-expectations (2.11.3)
diff-lcs (~> 1.1.3)
rspec-mocks (2.11.3)
slop (3.3.3)
thor (0.16.0)
PLATFORMS
ruby
DEPENDENCIES
guard
guard-bundler
guard-rspec
rspec
thor
zero!