1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/lib/pry/helpers/platform.rb
Kyrylo Silin 187c199e77 Deprecate Pry::Platform and introduce Pry::Helpers::Platform
`Pry::Platform` really looks like a helper and therefore should be defined as
one. Invoking `Pry::Platform` emits a warning now. Users are encouraged to use
`Pry::Helpers::Platform`.
2018-11-02 01:52:09 +08:00

58 lines
1.4 KiB
Ruby

class Pry
module Helpers
# Contains methods for querying the platform that Pry is running on
# @api public
# @since v0.12.0
# rubocop:disable Style/DoubleNegation
module Platform
# @return [Boolean]
def self.mac_osx?
!!(RbConfig::CONFIG['host_os'] =~ /\Adarwin/i)
end
# @return [Boolean]
def self.linux?
!!(RbConfig::CONFIG['host_os'] =~ /linux/i)
end
# @return [Boolean] true when Pry is running on Windows with ANSI support,
# false otherwise
def self.windows?
!!(RbConfig::CONFIG['host_os'] =~ /mswin|mingw/)
end
# @return [Boolean]
def self.windows_ansi?
return false unless windows?
!!(defined?(Win32::Console) || ENV['ANSICON'] || mri_2?)
end
# @return [Boolean]
def self.jruby?
RbConfig::CONFIG['ruby_install_name'] == 'jruby'
end
# @return [Boolean]
def self.jruby_19?
jruby? && RbConfig::CONFIG['ruby_version'] == '1.9'
end
# @return [Boolean]
def self.mri?
RbConfig::CONFIG['ruby_install_name'] == 'ruby'
end
# @return [Boolean]
def self.mri_19?
!!(mri? && RUBY_VERSION.start_with?('1.9'))
end
# @return [Boolean]
def self.mri_2?
!!(mri? && RUBY_VERSION.start_with?('2'))
end
end
# rubocop:enable Style/DoubleNegation
end
end