summaryrefslogtreecommitdiff
path: root/Gemfile
blob: a6981aa5cae01ce1e9ca2930a5930a87c2092371 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

source 'https://rubygems.org'
gemspec

gem 'rake', '~> 10.0'
gem 'yard'
gem 'rspec', '~> 3.8.0'

# TODO: unlock version when the bug is fixed:
# https://github.com/rspec/rspec-expectations/issues/1113
gem 'rspec-expectations', '= 3.8.2'

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