Skip to content

Commit

Permalink
[Fog 2.0] Remove 1.8.7 support
Browse files Browse the repository at this point in the history
This is the official commit to drop Ruby 1.8.7 support from fog.

This is a backwards incompatible change (for hopefully obvious reasons)
so will be part of the next MAJOR fog release `v2.0`

Ruby 1.8.7 is no longer supported by the language developers.

Anyone needing to stay on Ruby 1.8.7 such as users of LTS distros should
remain on the `v1.x` series of fog.
  • Loading branch information
tokengeek committed Dec 22, 2014
1 parent 393874f commit dd0a1de
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 21 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Expand Up @@ -7,8 +7,6 @@ script: bundle exec rake travis
matrix:
fast_finish: true
include:
- rvm: 1.8.7
gemfile: gemfiles/Gemfile-ruby-1.8.7
- rvm: 1.9.3
gemfile: Gemfile
- rvm: 2.0.0
Expand All @@ -19,8 +17,6 @@ matrix:
gemfile: Gemfile
- rvm: 2.1.1
gemfile: gemfiles/Gemfile-edge
- rvm: jruby-18mode
gemfile: gemfiles/Gemfile-ruby-1.8.7
- rvm: jruby-19mode
gemfile: Gemfile
- rvm: jruby-head
Expand Down
5 changes: 4 additions & 1 deletion fog.gemspec
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
## the sub! line in the Rakefile
s.name = 'fog'
s.version = '1.26.0'
s.date = '2014-12-12'
s.date = '2014-12-17'
s.rubyforge_project = 'fog'

## Make sure your summary is short. The description may be as long
Expand Down Expand Up @@ -44,6 +44,9 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w[README.md]

## Ruby version
s.required_ruby_version = ">= 1.9.0"

## List your runtime dependencies here. Runtime dependencies are those
## that are needed for an end user to actually USE your code.
s.add_dependency("fog-core", "~> 1.27", ">= 1.27.2")
Expand Down
16 changes: 0 additions & 16 deletions gemfiles/Gemfile-ruby-1.8.7

This file was deleted.

0 comments on commit dd0a1de

Please sign in to comment.