Sha256: d04e9c8179290030b453344887c341f1cf686ad49e68d91411cb0c595929a571
Contents?: true
Size: 340 Bytes
Versions: 59
Compression:
Stored size: 340 Bytes
Contents
module Gemfury module Platform def home_directory on_windows? ? ENV['USERPROFILE'] : ENV['HOME'] end def config_path File.expand_path('.gem/gemfury', home_directory) end def on_windows? RUBY_PLATFORM =~ /mswin32|mingw32/ end def on_mac? RUBY_PLATFORM =~ /-darwin\d/ end end end
Version data entries
59 entries across 59 versions & 1 rubygems