summaryrefslogtreecommitdiff
path: root/wmi-lite.gemspec
diff options
context:
space:
mode:
authorAdam Edwards <adamed@opscode.com>2014-05-12 20:49:54 -0700
committerAdam Edwards <adamed@opscode.com>2014-05-12 20:49:54 -0700
commit2582f58b72527246f81af2bc4913182b11a3c423 (patch)
treec1c08c74e7d7f47298ccbd2a027d0eede4c83de7 /wmi-lite.gemspec
downloadwmi-lite-2582f58b72527246f81af2bc4913182b11a3c423.tar.gz
Initial commit
Diffstat (limited to 'wmi-lite.gemspec')
-rw-r--r--wmi-lite.gemspec31
1 files changed, 31 insertions, 0 deletions
diff --git a/wmi-lite.gemspec b/wmi-lite.gemspec
new file mode 100644
index 0000000..39a811c
--- /dev/null
+++ b/wmi-lite.gemspec
@@ -0,0 +1,31 @@
+# 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'
+end