summaryrefslogtreecommitdiff
path: root/Gemfile
blob: 9a578d371f3ec81a5ce1d0d85eefda60be067c25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

source 'https://rubygems.org'
gemspec

gem 'rake'
gem 'yard'
gem 'rspec'
gem 'simplecov', '~> 0.16', require: false

# Rubocop supports only >=2.2.0
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.2.0')
  gem 'rubocop', '= 0.66.0', require: false
end