sue445/index_shotgun

View on GitHub
gemfiles/activerecord_6_1.gemfile

Summary

Maintainability
Test Coverage
source "https://rubygems.org"

gem "activerecord", "~> 6.1.0"

group :postgresql do
  # c.f. https://github.com/rails/rails/blob/v6.1.0/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb#L3
  gem "pg", "~> 1.1"
end

group :mysql do
  # c.f. https://github.com/rails/rails/blob/v6.1.0/activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb#L6
  gem "mysql2", "~> 0.5"
end

group :oracle do
  gem "activerecord-oracle_enhanced-adapter", "~> 6.1.2"
  gem "ruby-oci8"
end

group :sqlite3 do
  # c.f. https://github.com/rails/rails/blob/v6.1.0/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb#L13
  gem "sqlite3", "~> 1.4"
end

eval_gemfile "#{__dir__}/common.gemfile"

gemspec path: "../"