-
Notifications
You must be signed in to change notification settings - Fork 1
/
dnsruby.gemspec
27 lines (26 loc) · 1.01 KB
/
dnsruby.gemspec
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
require 'rubygems'
SPEC = Gem::Specification.new do |s|
s.name = "dnsruby"
# @TODO@ Remember to update version in Dnsruby.rb as well!
s.version = "1.54"
s.authors = ["AlexD"]
s.email = "[email protected]"
s.homepage = "http://rubyforge.org/projects/dnsruby/"
s.rubyforge_project = "dnsruby"
s.platform = Gem::Platform::RUBY
s.summary = "Ruby DNS(SEC) implementation"
candidatestest = Dir.glob("test/**/*")
candidateslib = Dir.glob("lib/**/*")
candidatesdoc = Dir.glob("html**/*")
candidatesdemo = Dir.glob("demo/**/*")
rakefile = ['Rakefile']
candidates = rakefile + candidatestest + candidateslib + candidatesdoc + candidatesdemo
s.files = candidates.delete_if do |item|
item.include?("CVS") || item.include?("rdoc") ||
item.include?("svn")
end
s.autorequire="dnsruby"
s.test_file = "test/ts_offline.rb"
s.has_rdoc = true
s.extra_rdoc_files = ["DNSSEC", "EXAMPLES", "README", "EVENTMACHINE"]
end