File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11---
2- sudo : false
32language : ruby
3+ sudo : false
44cache : bundler
5+ before_install : gem install bundler -v 1.17
6+ before_script : RAILS_ENV=test bin/rails db:create db:migrate
7+
58rvm :
9+ - 2.2.10
10+ - 2.3.8
11+ - 2.4.6
12+ - 2.5.5
613 - 2.6.3
7- before_install : gem install bundler -v 2.0.2
14+
15+ gemfile :
16+ - gemfiles/rails4.2_graphql1.8.gemfile
17+ - gemfiles/rails5.0_graphql1.8.gemfile
18+ - gemfiles/rails5.0_graphql1.9.gemfile
19+ - gemfiles/rails5.1_graphql1.8.gemfile
20+ - gemfiles/rails5.1_graphql1.9.gemfile
21+ - gemfiles/rails5.2_graphql1.8.gemfile
22+ - gemfiles/rails5.2_graphql1.9.gemfile
23+
24+ matrix :
25+ include :
26+ - gemfile : gemfiles/rails4.2_graphql1.8.gemfile
27+ rvm : 2.1.10
28+ - gemfile : gemfiles/rails_edge_graphql_edge.gemfile
29+ rvm : 2.5.5
30+ - gemfile : gemfiles/rails_edge_graphql_edge.gemfile
31+ rvm : 2.6.3
Original file line number Diff line number Diff line change @@ -25,5 +25,9 @@ class Application < Rails::Application
2525 # Middleware like session, flash, cookies can be added back manually.
2626 # Skip views, helpers and assets when generating a new resource.
2727 # config.api_only = true
28+
29+ if Rails ::VERSION ::MAJOR >= 5 && Rails ::VERSION ::MINOR > 1
30+ config . active_record . sqlite3 . represent_boolean_as_integer = true
31+ end
2832 end
2933end
You can’t perform that action at this time.
0 commit comments