1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/bundler/support/platforms.rb
Benoit Daloze 2b0f3aa095 [bundler/bundler] Use the standard RUBY_ENGINE_VERSION instead of JRUBY_VERSION
* RUBY_ENGINE and RUBY_ENGINE_VERSION are defined on every modern Ruby.
* There is no such constant as TRUFFLERUBY_VERSION or RBX_VERSION.

https://github.com/bundler/bundler/commit/f9d910403b
2019-08-16 14:30:23 +09:00

106 lines
1.8 KiB
Ruby

# frozen_string_literal: true
module Spec
module Platforms
include Bundler::GemHelpers
def rb
Gem::Platform::RUBY
end
def mac
Gem::Platform.new("x86-darwin-10")
end
def x64_mac
Gem::Platform.new("x86_64-darwin-15")
end
def java
Gem::Platform.new([nil, "java", nil])
end
def linux
Gem::Platform.new(["x86", "linux", nil])
end
def mswin
Gem::Platform.new(["x86", "mswin32", nil])
end
def mingw
Gem::Platform.new(["x86", "mingw32", nil])
end
def x64_mingw
Gem::Platform.new(["x64", "mingw32", nil])
end
def all_platforms
[rb, java, linux, mswin, mingw, x64_mingw]
end
def local
generic_local_platform
end
def specific_local_platform
Bundler.local_platform
end
def not_local
all_platforms.find {|p| p != generic_local_platform }
end
def local_tag
if RUBY_PLATFORM == "java"
:jruby
else
:ruby
end
end
def not_local_tag
[:ruby, :jruby].find {|tag| tag != local_tag }
end
def local_ruby_engine
ENV["BUNDLER_SPEC_RUBY_ENGINE"] || RUBY_ENGINE
end
def local_engine_version
return ENV["BUNDLER_SPEC_RUBY_ENGINE_VERSION"] if ENV["BUNDLER_SPEC_RUBY_ENGINE_VERSION"]
RUBY_ENGINE_VERSION
end
def not_local_engine_version
case not_local_tag
when :ruby
not_local_ruby_version
when :jruby
"1.6.1"
end
end
def not_local_ruby_version
"1.12"
end
def not_local_patchlevel
9999
end
def lockfile_platforms
local_platforms.map(&:to_s).sort.join("\n ")
end
def local_platforms
if Bundler.feature_flag.specific_platform?
[local, specific_local_platform]
else
[local]
end
end
end
end