summaryrefslogtreecommitdiff
path: root/wmi-lite.gemspec
diff options
context:
space:
mode:
Diffstat (limited to 'wmi-lite.gemspec')
-rw-r--r--wmi-lite.gemspec34
1 files changed, 15 insertions, 19 deletions
diff --git a/wmi-lite.gemspec b/wmi-lite.gemspec
index 6b3e546..716683c 100644
--- a/wmi-lite.gemspec
+++ b/wmi-lite.gemspec
@@ -1,27 +1,23 @@
# coding: utf-8
-lib = File.expand_path('../lib', __FILE__)
+lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
-require 'wmi-lite/version'
+require "wmi-lite/version"
Gem::Specification.new do |spec|
- spec.name = 'wmi-lite'
+ spec.name = "wmi-lite"
spec.version = WmiLite::VERSION
- spec.authors = ['Adam Edwards']
- spec.email = ['dev@chef.io']
- 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/chef/wmi-lite'
- spec.license = 'Apache-2.0'
+ spec.authors = ["Adam Edwards"]
+ spec.email = ["dev@chef.io"]
+ 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/chef/wmi-lite"
+ spec.license = "Apache-2.0"
spec.files = %w{LICENSE} + Dir.glob("lib/**/*")
- spec.require_paths = ['lib']
-
- spec.add_development_dependency 'bundler'
- spec.add_development_dependency 'rspec'
- spec.add_development_dependency 'rake'
+ spec.require_paths = ["lib"]
end