Remove duplicate gem dependencies

Bundler was printing warnings because some gems where declared twice, I
believe this is because `appraisal generate` wasn't run when these were
moved to the `.gemspec` file.
This commit is contained in:
Anton Rieder 2020-01-02 16:38:30 +01:00
parent 13c60debb4
commit b8845b19c9
3 changed files with 0 additions and 9 deletions

View File

@ -4,8 +4,5 @@ source "https://rubygems.org"
gem "activerecord", [">= 5.1.6.2", "< 5.2"]
gem "rails-controller-testing", "~> 1.0.2"
gem "mysql2", "~> 0.5.2"
gem "pg", "~> 1.1"
gem "sqlite3", "~> 1.4"
gemspec path: "../"

View File

@ -4,8 +4,5 @@ source "https://rubygems.org"
gem "activerecord", [">= 5.2.2.1", "< 5.3"]
gem "rails-controller-testing", "~> 1.0.2"
gem "mysql2", "~> 0.5.2"
gem "pg", "~> 1.1"
gem "sqlite3", "~> 1.4"
gemspec path: "../"

View File

@ -4,8 +4,5 @@ source "https://rubygems.org"
gem "activerecord", ["6.0.0"]
gem "rails-controller-testing", "~> 1.0.3"
gem "mysql2", "~> 0.5.2"
gem "pg", "~> 1.1"
gem "sqlite3", "~> 1.4"
gemspec path: "../"