Skip to content

Commit

Permalink
Dont install unused adapters
Browse files Browse the repository at this point in the history
  • Loading branch information
seuros committed Jun 17, 2018
1 parent 5f5eae3 commit a790d4b
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ group :local_development do
gem 'guard-rspec'
gem 'appraisal'
gem 'rake'
gem 'byebug' , platforms: [:mri_21, :mri_22, :mri_23]
gem 'byebug', platforms: [:mri]
end
4 changes: 0 additions & 4 deletions acts-as-taggable-on.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ Gem::Specification.new do |gem|

gem.add_runtime_dependency 'activerecord', ['~> 5.0']

gem.add_development_dependency 'sqlite3'
gem.add_development_dependency 'mysql2', '~> 0.3'
gem.add_development_dependency 'pg'

gem.add_development_dependency 'rspec-rails'
gem.add_development_dependency 'rspec-its'
gem.add_development_dependency 'rspec'
Expand Down
8 changes: 8 additions & 0 deletions gemfiles/activerecord_5.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
source "https://rubygems.org"

gem "activerecord", "~> 5.0.3"
case ENV["DB"]
when "postgresql"
gem 'pg'
when "mysql"
gem 'mysql2', '~> 0.3'
else
gem 'sqlite3'
end

group :local_development do
gem "guard"
Expand Down
8 changes: 8 additions & 0 deletions gemfiles/activerecord_5.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
source "https://rubygems.org"

gem "activerecord", "~> 5.1.1"
case ENV["DB"]
when "postgresql"
gem 'pg'
when "mysql"
gem 'mysql2', '~> 0.3'
else
gem 'sqlite3'
end

group :local_development do
gem "guard"
Expand Down
8 changes: 8 additions & 0 deletions gemfiles/activerecord_5.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
source "https://rubygems.org"

gem "activerecord", "~> 5.2.0"
case ENV["DB"]
when "postgresql"
gem 'pg'
when "mysql"
gem 'mysql2', '~> 0.3'
else
gem 'sqlite3'
end

group :local_development do
gem "guard"
Expand Down

0 comments on commit a790d4b

Please sign in to comment.