mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
9732805a74
Example failure: https://github.com/pry/pry/runs/3010680604 ``` ArgumentError: wrong number of arguments (given 4, expected 1) /home/runner/work/pry/pry/vendor/bundle/ruby/2.4.0/gems/psych-4.0.1/lib/psych.rb:323:in `safe_load' ``` I am not sure what exactly causes the failure but deleting simplecov dependency fixes (I guess?) this problem.
13 lines
248 B
Ruby
13 lines
248 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
gemspec
|
|
|
|
gem 'rake'
|
|
gem 'yard'
|
|
gem 'rspec'
|
|
|
|
# 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
|