summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorKyrylo Silin <silin@kyrylo.org>2019-03-08 00:46:50 +0200
committerKyrylo Silin <silin@kyrylo.org>2019-03-08 00:46:50 +0200
commitcb5eaab4099bfd69e6049f76553e96b04a919648 (patch)
treeae855bb95038556058bdd8d037eddfbb5c32b5e6 /Gemfile
parent2d5572dcfec023e1c486d9f28f1b03d77ae3daf4 (diff)
downloadpry-cb5eaab4099bfd69e6049f76553e96b04a919648.tar.gz
Gemfile: remove groups
We plan to use SimpleCov and Bundler.require gets in the way. Without it Gemfile groups are useless, so I am removing them. I am also removing the silly `Bundler/OrderedGems` cop, one of the most useless cops you can add.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile23
1 files changed, 7 insertions, 16 deletions
diff --git a/Gemfile b/Gemfile
index 383cc040..d2609c96 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,21 +1,12 @@
source 'https://rubygems.org'
gemspec
-gem 'rake', '~> 10.0'
-
-group :development do
- gem 'gist'
- gem 'yard'
-
- # Rubocop supports only >=2.2.0
- if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.2.0')
- gem 'rubocop', '= 0.65.0', require: false
- end
-end
-group :test do
- gem 'rspec', '~> 3.8.0'
-end
+gem 'rake', '~> 10.0'
+gem 'gist'
+gem 'yard'
+gem 'rspec', '~> 3.8.0'
-group :development, :test do
- gem 'simplecov', '~> 0.8.0'
+# Rubocop supports only >=2.2.0
+if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.2.0')
+ gem 'rubocop', '= 0.65.0', require: false
end