-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathoxidized-script.gemspec
30 lines (26 loc) · 1.31 KB
/
oxidized-script.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
Gem::Specification.new do |s|
s.name = 'oxidized-script'
s.version = '0.7.0'
s.licenses = %w[Apache-2.0]
s.platform = Gem::Platform::RUBY
s.authors = ['Saku Ytti']
s.email = %w[[email protected]]
s.homepage = 'http://github.com/ytti/oxidized-script'
s.summary = 'cli + library for scripting network devices'
s.description = 'rancid clogin-like script to push configs to devices + library interface to do same'
s.files = `git ls-files -z`.split("\x0")
s.executables = %w[oxs]
s.require_path = 'lib'
s.metadata['rubygems_mfa_required'] = 'true'
s.required_ruby_version = '>= 3.0'
s.add_runtime_dependency 'oxidized', '~> 0.29'
s.add_runtime_dependency 'slop', '~> 4.6'
s.add_development_dependency 'bundler', '~> 2.2'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rubocop', '~> 1.71.0'
s.add_development_dependency 'rubocop-minitest', '~> 0.36.0'
s.add_development_dependency 'rubocop-rake', '~> 0.6.0'
s.add_development_dependency 'simplecov', '~> 0.22.0'
s.add_development_dependency 'simplecov-cobertura', '~> 2.1.0'
s.add_development_dependency 'simplecov-html', '~> 0.13.1'
end