1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
gem 'bump'
gem 'irb' # undeclared dependency of yard
gem 'rack'
gem 'rake'
gem 'rspec', '~> 3.11'
gem 'rubocop-performance', '~> 1.24'
gem 'rubocop-rake', '~> 0.7'
gem 'simplecov', '>= 0.19'
gem 'yard'
# FIXME: Remove when the next prism version is released.
if RUBY_VERSION < '3.0' || RUBY_ENGINE == 'jruby'
gem 'prism', '!= 1.5.0', '!= 1.5.1'
end
local_gemfile = 'Gemfile.local'
eval_gemfile(local_gemfile) if File.exist?(local_gemfile)
|