-
Notifications
You must be signed in to change notification settings - Fork 52
/
cisco_node_utils.gemspec
41 lines (36 loc) · 1.66 KB
/
cisco_node_utils.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cisco_node_utils/version'
Gem::Specification.new do |spec|
spec.name = 'cisco_node_utils'
spec.version = CiscoNodeUtils::VERSION
spec.authors = ['Rob Gries', 'Alex Hunsberger', 'Glenn Matthews',
'Chris Van Heuveln', 'Rich Wellum', 'Mike Wiebe',
'Jie Yang', 'Sai Chintalapudi']
spec.email = '[email protected]'
spec.summary = 'Utilities for management of Cisco network nodes'
spec.description = <<-EOF
Utilities for management of Cisco network nodes.
Designed to work with Puppet and Chef.
Currently supports NX-OS nodes.
EOF
spec.license = 'Apache-2.0'
spec.homepage = 'https://github.com/cisco/cisco-network-node-utils'
spec.files = `git ls-files -z`.split("\x0")
# Files in bin/git are not executables as far as the Gem is concerned
spec.executables = []
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.0.0'
spec.required_rubygems_version = '>= 2.1.0'
spec.add_development_dependency 'bundler', '~> 1.7'
spec.add_development_dependency 'kwalify', '~> 0.7.2'
spec.add_development_dependency 'minitest', '~> 5.0'
spec.add_development_dependency 'net-telnet', '~> 0.1.1'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop', '= 0.35.1'
spec.add_development_dependency 'simplecov', '~> 0.9'
spec.extensions = ['ext/mkrf_conf.rb']
end