Sha256: ff1c8977435d6ff347732dc29ded9073ee452f3d93db1a8f055de0a033a2368e
Contents?: true
Size: 242 Bytes
Versions: 6
Compression:
Stored size: 242 Bytes
Contents
# This class gets thrown when the platform is something other than: # mingw32 # mac # linux class UnknownPlatformError < StandardError def initialize(platform, msg = nil) msg ||= "Unknown OS: #{platform}" super(msg) end end
Version data entries
6 entries across 6 versions & 1 rubygems