Class: Bindeps::System
- Inherits:
-
Object
- Object
- Bindeps::System
- Defined in:
- lib/bindeps.rb
Class Method Summary collapse
Class Method Details
.arch ⇒ Object
147 148 149 |
# File 'lib/bindeps.rb', line 147 def self.arch Gem::Platform.local.cpu == 'x86_64' ? '64bit' : '32bit' end |
.os ⇒ Object
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'lib/bindeps.rb', line 128 def self.os ( host_os = RbConfig::CONFIG['host_os'] case host_os when /mswin|msys|mingw|cygwin|bccwin|wince|emc/ :windows when /darwin|mac os/ :macosx when /linux/ :linux when /solaris|bsd/ :unix else raise UnsupportedSystemError, "can't install #{@name}, unknown os: #{host_os.inspect}" end ) end |