aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGibheer <gibheer@gmail.com>2012-11-13 21:56:02 +0100
committerGibheer <gibheer@gmail.com>2012-11-13 21:56:02 +0100
commit77130b3a23a67c273e8eb1bc6ea8c2c0176eac5b (patch)
treee786d50c8e8278fe0f165dcff1bc58806d5dfb40
parent0b006fd388a0f242e04482fda976aaab28b05842 (diff)
added guard as a helper
-rw-r--r--Gemfile6
-rw-r--r--Gemfile.lock22
2 files changed, 28 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index fa75df1..a8c5063 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,3 +1,9 @@
source 'https://rubygems.org'
gemspec
+
+group :guard do
+ gem 'guard'
+ gem 'guard-bundler'
+ gem 'guard-rspec'
+end
diff --git a/Gemfile.lock b/Gemfile.lock
index 3b74c36..0101495 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -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!