-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnet-ntp.gemspec
23 lines (21 loc) · 892 Bytes
/
net-ntp.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib = File.expand_path("lib", __dir__)
$:.unshift lib unless $:.include?(lib)
require "net/ntp/version"
Gem::Specification.new do |s|
s.name = "net-ntp"
s.version = Net::NTP::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Cora Sutton", "Jerome Waibel", "Brandon Arbini"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/zencoder/net-ntp"
s.summary = "NTP client for ruby."
s.description = "Query an NTP server as specified in RFC1305 and RFC2030."
s.files = Dir.glob("lib/**/*") + %w[LICENSE README.markdown Rakefile]
s.require_path = "lib"
s.required_ruby_version = ">= 2.7"
s.add_development_dependency "standard", "~> 1.11.0"
s.add_development_dependency "rake", "~> 13.0.6"
s.add_development_dependency "test-unit", "~> 3.5.3"
s.add_development_dependency "rspec", "~> 3.11.0"
s.add_development_dependency "minitest", "~> 5.15.0"
end