Sha256: dde332e1ae5b0f416c71d29796cdad1fe25c4c9d0869b587a35d6c290c2e28a0
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'wmi-lite/version' Gem::Specification.new do |spec| spec.name = 'wmi-lite' spec.version = WmiLite::VERSION spec.authors = ['Adam Edwards'] spec.email = ['dev@getchef.com'] spec.description = 'A lightweight utility over win32ole for accessing basic ' \ 'WMI (Windows Management Instrumentation) functionality ' \ 'in the Microsoft Windows operating system. It has no ' \ 'runtime dependencies other than Ruby, so it can be used ' \ 'without concerns around dependency issues.' spec.summary = 'A lightweight utility library for accessing basic WMI ' \ '(Windows Management Instrumentation) functionality on Windows' spec.homepage = 'https://github.com/opscode/wmi-lite' spec.license = 'Apache 2.0' spec.required_ruby_version = '>= 1.9' spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.3' spec.add_development_dependency 'rspec' spec.add_development_dependency 'rake' spec.add_development_dependency 'pry' spec.add_development_dependency 'pry-debugger' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wmi-lite-1.0.0.rc.0 | wmi-lite.gemspec |