ruby-changes:65819
From: Nobuyoshi <ko1@a...>
Date: Thu, 8 Apr 2021 21:42:20 +0900 (JST)
Subject: [ruby-changes:65819] b0b3022f95 (master): [ruby/reline] Moved development dependencies to Gemfile
https://git.ruby-lang.org/ruby.git/commit/?id=b0b3022f95 From b0b3022f95b9ad4f19098b461e461dbb96f8e906 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Wed, 7 Apr 2021 11:56:39 +0900 Subject: [ruby/reline] Moved development dependencies to Gemfile As expressions in a gemspec file are evaluated at the build time, but not the run time, the conditional in the gemspec will not work as intended. https://github.com/ruby/reline/commit/c09b7c454a --- lib/reline/reline.gemspec | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/reline/reline.gemspec b/lib/reline/reline.gemspec index f210a3c..400301f 100644 --- a/lib/reline/reline.gemspec +++ b/lib/reline/reline.gemspec @@ -20,10 +20,4 @@ Gem::Specification.new do |spec| https://github.com/ruby/ruby/blob/trunk/lib/reline/reline.gemspec#L20 spec.required_ruby_version = Gem::Requirement.new('>= 2.5') spec.add_dependency 'io-console', '~> 0.5' - spec.add_development_dependency 'bundler' - spec.add_development_dependency 'rake' - spec.add_development_dependency 'test-unit' - is_unix = RUBY_PLATFORM =~ /(aix|darwin|linux|(net|free|open)bsd|cygwin|solaris|irix|hpux)/i - spec.add_development_dependency 'vterm', '>= 0.0.5' if is_unix && ENV['WITH_VTERM'] - spec.add_development_dependency 'yamatanooroti', '>= 0.0.6' end -- cgit v1.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/