forked from dmitri-d/ruby-dhcpsapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdhcpsapi.gemspec
More file actions
22 lines (18 loc) · 830 Bytes
/
dhcpsapi.gemspec
File metadata and controls
22 lines (18 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.push File.expand_path("../lib", __FILE__)
require "dhcpsapi/version"
Gem::Specification.new do |gem|
gem.authors = ["Dmitri Dolguikh"]
gem.email = 'dmitri@appliedlogic.ca'
gem.description = 'Ruby wrappers for MS DHCP api'
gem.summary = 'Ruby wrappers for MS DHCP api'
gem.homepage = "https://github.com/witlessbird/ruby-dhcpsapi"
gem.license = "Apache-2.0"
gem.files = %w(LICENSE.txt README.md Rakefile) + Dir["lib/**/*"]
gem.name = "dhcpsapi"
gem.require_path = "lib"
gem.version = DhcpsApi::VERSION
gem.add_dependency 'ffi'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'minitest', '~> 4.3'
gem.add_development_dependency 'yard'
end