Sha256: a8fbb91d90260b9441d2be18c07dd1ba4509dee636bf298f40ad2956e1670852
Contents?: true
Size: 256 Bytes
Versions: 1
Compression:
Stored size: 256 Bytes
Contents
module Gemfury module Platform def home_directory on_windows? ? ENV['USERPROFILE'] : ENV['HOME'] end def on_windows? RUBY_PLATFORM =~ /mswin32|mingw32/ end def on_mac? RUBY_PLATFORM =~ /-darwin\d/ end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gemfury-0.1.1 | lib/gemfury/platform.rb |