summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorDan Allen <dallen@redhat.com>2013-05-15 01:09:59 -0600
committerDan Allen <dallen@redhat.com>2013-05-15 01:11:26 -0600
commit2afddeed036b1970d2d74f028e354bcd35369760 (patch)
tree501c6632e150292716fbe3cdefa2bfd19ab7a5e8 /Gemfile
parent5742de13d3aa77955224a6eb8329b0cd58b675cf (diff)
add Guardfile and deps for continuous testing
- leave dependency group commented by default - add instructions for disabling notifications
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile16
1 files changed, 9 insertions, 7 deletions
diff --git a/Gemfile b/Gemfile
index 02ada206..efb0d3ce 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,10 +1,12 @@
source 'https://rubygems.org'
-group :development do
- gem 'guard'
- gem 'guard-test'
- gem 'libnotify'
- gem 'listen', :github => 'guard/listen'
-end
-
gemspec
+
+# enable this group to use Guard for continuous testing
+# after removing comments, run `bundle install` then `guard`
+#group :guardtest do
+# gem 'guard'
+# gem 'guard-test'
+# gem 'libnotify'
+# gem 'listen', :github => 'guard/listen'
+#end