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

12 lines
159 B
Ruby
Raw Normal View History

2012-08-10 22:35:47 -04:00
module Puma
IS_JRUBY = defined?(JRUBY_VERSION)
def self.jruby?
IS_JRUBY
end
def self.windows?
RUBY_PLATFORM =~ /mswin|ming|cygwin/
end
end