module AutoGemsets
Constants
- GEMSET_ROOT
- HELP
- INSTALL_ROOT
- ROOT
- VERSION
Public Class Methods
application()
click to toggle source
# File lib/auto-gemsets/application.rb, line 8 def application @application ||= AutoGemsets::Application.new end
on_linux?()
click to toggle source
# File lib/auto-gemsets.rb, line 20 def self.on_linux? on_unix? and not on_osx? end
on_osx?()
click to toggle source
# File lib/auto-gemsets.rb, line 12 def self.on_osx? (/darwin/ =~ RUBY_PLATFORM) != nil end
on_unix?()
click to toggle source
# File lib/auto-gemsets.rb, line 16 def self.on_unix? !on_windows? end
on_windows?()
click to toggle source
# File lib/auto-gemsets.rb, line 8 def self.on_windows? (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) != nil end