1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
puma--puma/lib/puma/detect.rb
2016-07-23 21:36:05 -07:00

11 lines
159 B
Ruby

module Puma
IS_JRUBY = defined?(JRUBY_VERSION)
def self.jruby?
IS_JRUBY
end
def self.windows?
RUBY_PLATFORM =~ /mswin|ming|cygwin/
end
end