summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyrylo Silin <silin@kyrylo.org>2018-10-14 18:09:59 +0800
committerKyrylo Silin <silin@kyrylo.org>2018-10-16 03:57:06 +0800
commitf76688eb6dbc9e1f81e984bab21a5a0ce6524f13 (patch)
treeef1126992d4cf8f6dcf64add7a933da236754c01
parentd3dc0b07f9b11552d0c7a54423649e9feb02a009 (diff)
downloadpry-f76688eb6dbc9e1f81e984bab21a5a0ce6524f13.tar.gz
Gemfile: delete gems that were needed for Guard
`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).
-rw-r--r--Gemfile3
1 files changed, 0 insertions, 3 deletions
diff --git a/Gemfile b/Gemfile
index 5d0f7f2f..f33cfdd9 100644
--- a/Gemfile
+++ b/Gemfile
@@ -2,12 +2,9 @@ source 'https://rubygems.org'
gemspec
gem 'rake', '~> 10.0'
-# For Guard
group :development do
gem 'gist'
gem 'yard'
- gem 'rb-inotify', require: false
- gem 'rb-fsevent', require: false
# Rubocop supports only >=2.2.0
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.2.0')