summaryrefslogtreecommitdiff
path: root/lib/bundler
diff options
context:
space:
mode:
authorPeter Zhu <peter@peterzhu.ca>2022-11-03 14:41:40 -0400
committergit <svn-admin@ruby-lang.org>2022-11-07 10:52:13 +0000
commit0fb7a1c77c8d080f1d5099e07ed705cfd652f029 (patch)
tree1e17bdac6be9962cdcd9da1654ef2af0ae869ca5 /lib/bundler
parent011d4c57d21220249600dfb76db84840550da019 (diff)
[rubygems/rubygems] Drop support for HP-UX
Support for HP-UX was dropped in Ruby in ruby/ruby#5457. https://github.com/rubygems/rubygems/commit/a3a8df3582
Diffstat (limited to 'lib/bundler')
-rw-r--r--lib/bundler/vendor/thor/lib/thor/shell/basic.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/vendor/thor/lib/thor/shell/basic.rb b/lib/bundler/vendor/thor/lib/thor/shell/basic.rb
index 8eff00bf3d..6ffb21672f 100644
--- a/lib/bundler/vendor/thor/lib/thor/shell/basic.rb
+++ b/lib/bundler/vendor/thor/lib/thor/shell/basic.rb
@@ -425,7 +425,7 @@ class Bundler::Thor
end
def unix?
- RUBY_PLATFORM =~ /(aix|darwin|linux|(net|free|open)bsd|cygwin|solaris|irix|hpux)/i
+ RUBY_PLATFORM =~ /(aix|darwin|linux|(net|free|open)bsd|cygwin|solaris|irix)/i
end
def truncate(string, width)