mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
f76688eb6d
`rb-inotify` has a dependency on `ffi`, which fails to compile on Ruby 1.9.3 while running on CircleCI. I don't think anyone who develops Pry (seems to be just me so far) uses Guard in their worfklow. Our repo is missing an obligatory Guardfile, too, which makes me think it's a very safe change to make (rather than wasting time with`ffi` and CircleCI).
21 lines
375 B
Ruby
21 lines
375 B
Ruby
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.59.2', require: false
|
|
end
|
|
end
|
|
|
|
group :test do
|
|
gem 'rspec', '~> 3.7.0'
|
|
end
|
|
|
|
group :development, :test do
|
|
gem 'simplecov', '~> 0.8.0'
|
|
end
|