dyndnsd/dyndnsd.gemspec

33 lines
957 B
Ruby
Raw Normal View History

2013-04-27 14:07:14 +02:00
$:.push File.expand_path("../lib", __FILE__)
require 'dyndnsd/version'
Gem::Specification.new do |s|
s.name = 'dyndnsd'
s.version = Dyndnsd::VERSION
s.summary = 'dyndnsd.rb'
s.description = 'A small, lightweight and extensible DynDNS server written with Ruby and Rack.'
s.author = 'Christian Nicolai'
s.email = 'chrnicolai@gmail.com'
s.homepage = 'https://github.com/cmur2/dyndnsd'
s.license = 'Apache-2.0'
2013-04-27 14:07:14 +02:00
s.files = `git ls-files`.split($/)
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.executables = ['dyndnsd']
s.required_ruby_version = '>= 2.3'
2018-02-05 15:23:27 +01:00
s.add_runtime_dependency 'rack', '~> 2.0'
s.add_runtime_dependency 'json'
s.add_runtime_dependency 'metriks'
2013-04-27 14:07:14 +02:00
s.add_development_dependency 'bundler'
2013-04-27 14:07:14 +02:00
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rack-test'
2018-02-23 11:13:28 +01:00
s.add_development_dependency 'rubocop', '~> 0.52.1'
2013-04-27 14:07:14 +02:00
end