We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 259cf46 + 55722d0 commit adebd88Copy full SHA for adebd88
1 file changed
specinfra.gemspec
@@ -18,10 +18,13 @@ Gem::Specification.new do |spec|
18
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
20
spec.require_paths = ["lib"]
21
+ # TODO: at some point pin to a minumum version of ruby to reduce support burden in a major version bump
22
+ # spec.required_ruby_version = '>= 2.3.0'
23
24
spec.add_runtime_dependency "net-scp"
25
spec.add_runtime_dependency "net-ssh", ">= 2.7"
- spec.add_runtime_dependency "net-telnet"
26
+ # TODO: remove the lock when you want to ruby ruby < 2.3 support
27
+ spec.add_runtime_dependency "net-telnet", "0.1.1"
28
spec.add_runtime_dependency "sfl"
29
30
spec.add_development_dependency "bundler", "~> 1.3"
0 commit comments