New changes

This commit is contained in:
2024-12-11 10:25:13 -06:00
parent d663ee765a
commit 12c82281dc
16 changed files with 837 additions and 106 deletions

View File

@@ -1,3 +1,4 @@
require 'find'
Gem::Specification.new do |s|
s.name = "RubyQA"
s.version = '0.1.0'
@@ -6,5 +7,9 @@ Gem::Specification.new do |s|
s.authors = ['Tristan Ancelet']
s.email = 'tristanancelet@yahoo.com'
s.homepatge = 'https://git.arcanium.tech/tristan/RubyQA'
s.files = Dir.glob('lib/*.rb')
s.executables += [ 'generate-qa','impromptu-qa']
s.files = Find::find('lib').select{|file| file =~ /rb/}
s.add_dependency 'net-ssh', '~> 7.1', '>= 7.1.0'
s.add_dependency 'net-ssh-telnet', '~> 0.3', '>= 0.3.0'
end