Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Tensho committed Dec 5, 2018
1 parent e7d883f commit 1352833
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gemfiles/rails_4.gemfile
Expand Up @@ -6,7 +6,7 @@ gem "rake"
gem "redis-namespace"
gem "rails", "~> 4.2"
gem "sqlite3", platforms: :ruby
gem "activerecord-jdbcpostgresql-adapter", platforms: :jruby
gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby

group :development do
gem "appraisal"
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5.gemfile
Expand Up @@ -6,7 +6,7 @@ gem "rake"
gem "redis-namespace"
gem "rails", "~> 5.2"
gem "sqlite3", platforms: :ruby
gem "activerecord-jdbcpostgresql-adapter", platforms: :jruby
gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby

group :development do
gem "appraisal"
Expand Down
5 changes: 4 additions & 1 deletion test/dummy/config/application.rb
Expand Up @@ -7,6 +7,9 @@ class Application < Rails::Application
config.root = File.expand_path("../..", __FILE__)
config.eager_load = false
config.logger = Logger.new('/dev/null')
config.active_record.sqlite3.represent_boolean_as_integer = true

if Rails::VERSION::MAJOR >= 5
config.active_record.sqlite3.represent_boolean_as_integer = true
end
end
end

0 comments on commit 1352833

Please sign in to comment.