2024-12-11 11:25:13 -05:00
|
|
|
require 'find'
|
2024-06-28 14:01:04 -04:00
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = "RubyQA"
|
|
|
|
s.version = '0.1.0'
|
2024-07-17 13:14:28 -04:00
|
|
|
s.summary = 'A Ruby framework for QA-ing *NIX system builds'
|
2024-06-28 14:01:04 -04:00
|
|
|
s.description = 'A Ruby based framework defining & orchestrating tests against a host or hosts'
|
|
|
|
s.authors = ['Tristan Ancelet']
|
|
|
|
s.email = 'tristanancelet@yahoo.com'
|
2024-12-11 12:20:08 -05:00
|
|
|
s.homepage = 'https://git.arcanium.tech/tristan/RubyQA'
|
2024-12-11 11:25:13 -05:00
|
|
|
s.executables += [ 'generate-qa','impromptu-qa']
|
|
|
|
s.files = Find::find('lib').select{|file| file =~ /rb/}
|
2024-12-11 12:20:08 -05:00
|
|
|
s.license = 'MIT'
|
|
|
|
s.required_ruby_version = ">= 2.7.0"
|
2024-12-11 11:25:13 -05:00
|
|
|
|
|
|
|
s.add_dependency 'net-ssh', '~> 7.1', '>= 7.1.0'
|
|
|
|
s.add_dependency 'net-ssh-telnet', '~> 0.3', '>= 0.3.0'
|
2024-06-28 14:01:04 -04:00
|
|
|
end
|