mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
11 lines
159 B
Ruby
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
|