Repository URL to install this package:
|
Version:
0.12.1 ▾
|
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