Skip to content

Commit

Permalink
Remove Net::SSH dependency for Ruby 1.9.3
Browse files Browse the repository at this point in the history
Given Ruby 1.9.3 unsupported status, we do not want to limit fog
applications by limiting to older versions of `net-ssh`

If running on Ruby 1.9.3, please ensure your application is declaring
it's own dependency in it's `Gemfile`:

    gem "net-ssh", "< 3.0"
  • Loading branch information
tokengeek committed Sep 28, 2015
1 parent 4998213 commit f4a91d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fog-core.gemspec
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
spec.add_dependency("formatador", "~> 0.2")
spec.add_dependency("mime-types")
spec.add_dependency("net-scp", "~> 1.1")
spec.add_dependency("net-ssh", ">= 2.1.3", "< 3.0")
spec.add_dependency("net-ssh", ">= 2.1.3")

spec.add_development_dependency("coveralls")
spec.add_development_dependency("minitest")
Expand Down

0 comments on commit f4a91d4

Please sign in to comment.