summaryrefslogtreecommitdiff
path: root/wmi-lite.gemspec
blob: b6484fc8ff4c0db47d17cda0a633b58ce575e028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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@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"]
end