summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile11
1 files changed, 7 insertions, 4 deletions
diff --git a/Gemfile b/Gemfile
index d57b961..1e908f6 100644
--- a/Gemfile
+++ b/Gemfile
@@ -9,11 +9,14 @@ end
group :development do
gem 'pry'
gem 'pry-stack_explorer', platforms: [:ruby_19, :ruby_20, :ruby_21]
+ gem 'rubocop', '~> 0.25'
+ gem 'guard', '~> 2.6.1'
+ gem 'guard-rspec', '~> 4.3.1', require: false
end
gemspec
-gem 'rubocop', '~> 0.25'
-
-# ActiveSupport required to test compatibility with ActiveSupport Core Extensions.
-gem 'activesupport', require: false
+group :test do
+ # ActiveSupport required to test compatibility with ActiveSupport Core Extensions.
+ gem 'activesupport', require: false
+end