blob: 39a811c29f282a7710e212f3efe49acf69711440 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
|