-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathruby-wmi.gemspec
More file actions
21 lines (18 loc) · 802 Bytes
/
ruby-wmi.gemspec
File metadata and controls
21 lines (18 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'ruby-wmi/version'
Gem::Specification.new do |s|
s.name = "ruby-wmi"
s.version = RubyWMI::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Gordon Thiesfeld", "Jamie Winsor"]
s.email = ["gthiesfeld@gmail.com", "jwinsor@riotgames.com"]
s.homepage = "https://github.com/vertiginous/ruby-wmi"
s.summary = %q{ruby-wmi is an ActiveRecord style interface for Microsoft's Windows Management Instrumentation provider.}
s.description = s.summary
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_development_dependency 'rspec'
s.add_development_dependency 'thor'
end