mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Merge pull request #3707 from fog/remove_ruby_19_support
Remove support for Ruby 1.9.3
This commit is contained in:
commit
7a1564ef23
5 changed files with 6 additions and 23 deletions
|
@ -16,11 +16,6 @@ gemfile:
|
|||
|
||||
matrix:
|
||||
fast_finish: true
|
||||
include:
|
||||
- rvm: 1.9
|
||||
gemfile: gemfiles/Gemfile-ruby-1.9.3
|
||||
- rvm: jruby-19mode
|
||||
gemfile: gemfiles/Gemfile-ruby-1.9.3
|
||||
allow_failures:
|
||||
- rvm: jruby-head
|
||||
- rvm: 2.2
|
||||
|
|
|
@ -56,7 +56,7 @@ Relevant issues include:
|
|||
|
||||
* Organize your patches by keeping all related changes together in a topic branch.
|
||||
* Rebase your branch against master before submitting a pull request (and squish any 'oops' or work in progress commits).
|
||||
* We support several rubies! Make sure your changes will work for all the Rubies in .travis.yml (currently MRI 1.8, 1.9, and Ruby 2.0).
|
||||
* We support several rubies! Make sure your changes will work for all the Rubies in `.travis.yml`
|
||||
* Submit changes as pull requests describing what the changes should cover and referencing issues (if any).
|
||||
* Use 'tags' in your commits to indicate the scope, so things like `[aws|compute] fixed something`.
|
||||
* Write and run tests. Tests should follow through usage workflows and ought to pass both with mocking on and off.
|
||||
|
|
|
@ -38,10 +38,10 @@ true
|
|||
|
||||
## Ruby version
|
||||
|
||||
Fog requires Ruby `1.9.3` or later.
|
||||
Fog requires Ruby `2.0.0` or later.
|
||||
|
||||
Ruby `1.8.7` and `1.9.2` support was dropped in `fog-v2.0.0` as a backwards incompatible
|
||||
change. Please use the later fog `1.x` versions if you require `1.8.7` or `1.9.2` support.
|
||||
Ruby `1.8` and `1.9` support was dropped in `fog-v2.0.0` as a backwards incompatible
|
||||
change. Please use the later fog `1.x` versions if you require `1.8.7` or `1.9.x` support.
|
||||
|
||||
## Collections
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ Gem::Specification.new do |s|
|
|||
s.extra_rdoc_files = %w[README.md]
|
||||
|
||||
## Ruby version
|
||||
s.required_ruby_version = ">= 1.9.3"
|
||||
s.required_ruby_version = ">= 2.0.0"
|
||||
|
||||
s.add_dependency("fog-core", "~> 1.32")
|
||||
s.add_dependency("fog-json")
|
||||
|
@ -84,7 +84,7 @@ Gem::Specification.new do |s|
|
|||
s.add_development_dependency("rake")
|
||||
s.add_development_dependency("rbovirt", "0.0.32")
|
||||
s.add_development_dependency("rbvmomi")
|
||||
s.add_development_dependency("rubocop") if RUBY_VERSION > "1.9"
|
||||
s.add_development_dependency("rubocop")
|
||||
s.add_development_dependency("shindo", "~> 0.3.4")
|
||||
s.add_development_dependency("simplecov")
|
||||
s.add_development_dependency("thor")
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
source "https://rubygems.org"
|
||||
|
||||
gem "net-ssh", "< 3.0"
|
||||
|
||||
group :development, :test do
|
||||
# This is here because gemspec doesn"t support require: false
|
||||
gem "coveralls", :require => false
|
||||
gem "netrc", :require => false
|
||||
gem "octokit", :require => false
|
||||
end
|
||||
|
||||
gemspec :path => "../"
|
Loading…
Add table
Reference in a new issue