-
Notifications
You must be signed in to change notification settings - Fork 0
/
resolv-srv.gemspec
43 lines (39 loc) · 1.48 KB
/
resolv-srv.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# encoding: UTF-8
Gem::Specification.new do |s|
s.name = 'resolv-srv'
s.version = '0.0.2'
s.platform = Gem::Platform::RUBY
s.authors = ['Jeremy Bopp']
s.email = ['[email protected]']
s.homepage = 'https://github.com/javanthropus/resolv-srv'
s.license = 'MIT'
s.summary = 'Resolve and iterate over SRV DNS records correctly.'
s.description = <<-EOD
This gem patches the Resolv::DNS class in stdlib to include a method to resolve
and iterate over SRV records according to their relative priorities and weights.
EOD
s.add_development_dependency('rake', '~> 10.1', '> 10.1.1')
s.add_development_dependency('minitest', '~> 5.3', '> 5.3.1')
s.add_development_dependency('yard', '~> 0.8.7', '> 0.8.7.3')
s.add_development_dependency('redcarpet', '~> 3.1', '> 3.1.0')
s.add_development_dependency('github-markup', '~> 1.0', '> 1.0.2')
s.add_development_dependency('pry', '~> 0')
# Explicitly list all non-test files that should be included into the gem
# here. This and the test_files list will be compared against an
# automatically generated list by rake to identify files potentially missed by
# inclusion or exclusion rules.
s.files = %w(
.yardopts
LICENSE
NEWS.md
Rakefile
README.md
examples/active-directory.rb
lib/resolv-srv.rb
)
# Explicitly list all test files that should be included into the gem here.
s.test_files = %w(
spec/each_srv_resource_spec.rb
)
s.require_path = 'lib'
end