Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin mysql2 < 0.5.0 to prevent CI build from breaking #382

Merged
merged 1 commit into from
Mar 22, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ if RUBY_VERSION < '2.4.0' && RUBY_PLATFORM != 'java'
if RUBY_VERSION >= '2.1.10'
appraise 'rails4-mysql2' do
gem 'rails', '4.2.7.1'
gem 'mysql2', platform: :ruby
gem 'mysql2', '< 0.5', platform: :ruby
gem 'activerecord-jdbcmysql-adapter', platform: :jruby
end

Expand All @@ -79,7 +79,7 @@ if RUBY_VERSION < '2.4.0' && RUBY_PLATFORM != 'java'
if RUBY_VERSION >= '2.2.2'
appraise 'rails5-mysql2' do
gem 'rails', '5.0.1'
gem 'mysql2', platform: :ruby
gem 'mysql2', '< 0.5', platform: :ruby
end

appraise 'rails5-postgres' do
Expand Down Expand Up @@ -129,7 +129,7 @@ if RUBY_VERSION >= '2.2.2' && RUBY_PLATFORM != 'java'
gem 'dalli'
gem 'resque', '< 2.0'
gem 'racecar', '>= 0.3.5'
gem 'mysql2', platform: :ruby
gem 'mysql2', '< 0.5', platform: :ruby
end
else
appraise 'contrib-old' do
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/contrib.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ gem "sucker_punch"
gem "dalli"
gem "resque", "< 2.0"
gem "racecar", ">= 0.3.5"
gem "mysql2", platform: :ruby
gem "mysql2", "< 0.5", platform: :ruby

gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/rails4_mysql2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source "https://rubygems.org"

gem "pry-nav", git: "https://github.com/nixme/pry-nav.git", branch: "master"
gem "rails", "4.2.7.1"
gem "mysql2", platform: :ruby
gem "mysql2", "< 0.5", platform: :ruby
gem "activerecord-jdbcmysql-adapter", platform: :jruby

gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/rails5_mysql2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ source "https://rubygems.org"

gem "pry-nav", git: "https://github.com/nixme/pry-nav.git", branch: "master"
gem "rails", "5.0.1"
gem "mysql2", platform: :ruby
gem "mysql2", "< 0.5", platform: :ruby

gemspec path: "../"