Sha256: 8e63a36a14ee7ee12971b456945a9b93ab28db86082187c75dcf55031b449221
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
Contents
require 'rubygems' Gem::Specification.new do |spec| spec.name = 'sys-uname' spec.version = '0.9.1' spec.author = 'Daniel J. Berger' spec.email = 'djberg96@gmail.com' spec.homepage = 'http://www.rubyforge.org/projects/sysutils' spec.summary = 'An interface for returning uname (platform) information' spec.test_file = 'test/test_sys_uname.rb' spec.license = 'Artistic 2.0' spec.files = Dir['**/*'].reject{ |f| f.include?('git') } spec.extra_rdoc_files = ['CHANGES', 'README', 'MANIFEST', 'doc/uname.txt'] spec.rubyforge_project = 'sysutils' if File::ALT_SEPARATOR spec.require_paths = ['lib', 'lib/windows'] else spec.require_paths = ['lib', 'lib/unix'] spec.add_dependency('ffi', '>= 1.0.0') end spec.description = <<-EOF The sys-uname library provides an interface for gathering information about your current platform. The library is named after the Unix 'uname' command but also works on MS Windows. Available information includes OS name, OS version, system name and so on. Additional information is available for certain platforms. EOF end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sys-uname-0.9.1-x86-mingw32 | sys-uname.gemspec |