mirror of
https://github.com/omniauth/omniauth.git
synced 2022-11-09 12:31:49 -05:00
Merge pull request #877 from omniauth/ci-bundler
Remove Support for Ruby 1.8.7
This commit is contained in:
commit
14088410c3
4 changed files with 9 additions and 10 deletions
|
@ -8,7 +8,6 @@ language: ruby
|
||||||
rvm:
|
rvm:
|
||||||
- jruby-19mode
|
- jruby-19mode
|
||||||
- jruby-9000
|
- jruby-9000
|
||||||
- 1.8.7
|
|
||||||
- 1.9.3
|
- 1.9.3
|
||||||
- 2.0.0
|
- 2.0.0
|
||||||
- 2.1.10
|
- 2.1.10
|
||||||
|
|
12
Gemfile
12
Gemfile
|
@ -10,16 +10,16 @@ group :development do
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
gem 'hashie', '~> 2.0.5', :platforms => [:jruby_18, :ruby_18]
|
gem 'hashie', '~> 2.0.5', :platforms => [:jruby_18]
|
||||||
gem 'json', '~> 1.8', :platforms => [:jruby_18, :jruby_19, :ruby_18, :ruby_19]
|
gem 'json', '~> 1.8', :platforms => [:jruby_18, :jruby_19, :ruby_19]
|
||||||
gem 'mime-types', '~> 1.25', :platforms => [:jruby_18, :ruby_18]
|
gem 'mime-types', '~> 1.25', :platforms => [:jruby_18]
|
||||||
gem 'rack', '~> 1.0', :platforms => [:jruby_18, :jruby_19, :ruby_18, :ruby_19, :ruby_20, :ruby_21]
|
gem 'rack', '~> 1.0', :platforms => [:jruby_18, :jruby_19, :ruby_19, :ruby_20, :ruby_21]
|
||||||
gem 'rack-test'
|
gem 'rack-test'
|
||||||
gem 'rest-client', '~> 1.6.0', :platforms => [:jruby_18, :ruby_18]
|
gem 'rest-client', '~> 1.6.0', :platforms => [:jruby_18]
|
||||||
gem 'rspec', '~> 3.0'
|
gem 'rspec', '~> 3.0'
|
||||||
gem 'rubocop', '>= 0.25', :platforms => [:ruby_20, :ruby_21, :ruby_22, :ruby_23, :ruby_24]
|
gem 'rubocop', '>= 0.25', :platforms => [:ruby_20, :ruby_21, :ruby_22, :ruby_23, :ruby_24]
|
||||||
gem 'simplecov', '>= 0.9'
|
gem 'simplecov', '>= 0.9'
|
||||||
gem 'tins', '~> 1.6.0', :platforms => [:jruby_18, :jruby_19, :ruby_18, :ruby_19]
|
gem 'tins', '~> 1.6.0', :platforms => [:jruby_18, :jruby_19, :ruby_19]
|
||||||
end
|
end
|
||||||
|
|
||||||
gemspec
|
gemspec
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Copyright (c) 2010-2013 Michael Bleigh and Intridea, Inc.
|
Copyright (c) 2010-2017 Michael Bleigh and Intridea, Inc.
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
|
@ -143,7 +143,7 @@ your first stop if you are wondering about a more in-depth look at
|
||||||
OmniAuth, how it works, and how to use it.
|
OmniAuth, how it works, and how to use it.
|
||||||
|
|
||||||
## Supported Ruby Versions
|
## Supported Ruby Versions
|
||||||
OmniAuth is tested under 1.8.7, 1.9.3, 2.0.0, 2.1.10, 2.2.5, 2.3.1, and JRuby.
|
OmniAuth is tested under 1.9.3, 2.0.0, 2.1.10, 2.2.5, 2.3.1, and JRuby.
|
||||||
|
|
||||||
## Versioning
|
## Versioning
|
||||||
This library aims to adhere to [Semantic Versioning 2.0.0][semver]. Violations
|
This library aims to adhere to [Semantic Versioning 2.0.0][semver]. Violations
|
||||||
|
@ -161,7 +161,7 @@ Constraint][pvc] with two digits of precision. For example:
|
||||||
[pvc]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint
|
[pvc]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint
|
||||||
|
|
||||||
## License
|
## License
|
||||||
Copyright (c) 2010-2013 Michael Bleigh and Intridea, Inc. See [LICENSE][] for
|
Copyright (c) 2010-2017 Michael Bleigh and Intridea, Inc. See [LICENSE][] for
|
||||||
details.
|
details.
|
||||||
|
|
||||||
[license]: LICENSE.md
|
[license]: LICENSE.md
|
||||||
|
|
Loading…
Add table
Reference in a new issue