summaryrefslogtreecommitdiff
path: root/lib/irb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-04-07 12:12:27 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-04-08 21:41:00 +0900
commit9e940eae604f886f48fa10e667ceb40c35924b91 (patch)
tree392ac8601625a0b0aff94beaaebdc094535b6f91 /lib/irb
parent3816157e5d955da422d717f278bd3d4551447348 (diff)
[ruby/irb] 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/irb/commit/42f364ea23
Diffstat (limited to 'lib/irb')
-rw-r--r--lib/irb/irb.gemspec5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/irb/irb.gemspec b/lib/irb/irb.gemspec
index ccb05036ee..e6b28453f8 100644
--- a/lib/irb/irb.gemspec
+++ b/lib/irb/irb.gemspec
@@ -37,9 +37,4 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = Gem::Requirement.new(">= 2.5")
spec.add_dependency "reline", ">= 0.1.5"
- spec.add_development_dependency "bundler"
- 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'
- spec.add_development_dependency "rake"
end