From f76688eb6dbc9e1f81e984bab21a5a0ce6524f13 Mon Sep 17 00:00:00 2001 From: Kyrylo Silin Date: Sun, 14 Oct 2018 18:09:59 +0800 Subject: [PATCH] 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). --- Gemfile | 3 --- 1 file changed, 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')