aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2019-02-04 17:42:39 -0500
committerGitHub <noreply@github.com>2019-02-04 17:42:39 -0500
commit264a5417b38c16eeee786d87bcc668fc5d966037 (patch)
treef7068f7e256d927cca2b3b1e8fbab3020c02ace0
parent3cf57007bfcba8172a0f5cce445bb364720d5665 (diff)
parent0375ccbae31a2c86f2df4880dd59482e49f08d9d (diff)
downloadrails-264a5417b38c16eeee786d87bcc668fc5d966037.tar.gz
rails-264a5417b38c16eeee786d87bcc668fc5d966037.tar.bz2
rails-264a5417b38c16eeee786d87bcc668fc5d966037.zip
Merge pull request #35157 from sponomarev/fix/big-report-templates-sqlite
Specify sqlite gem version explicitly in bug report templates
-rw-r--r--guides/bug_report_templates/active_record_gem.rb2
-rw-r--r--guides/bug_report_templates/active_record_migrations_gem.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/guides/bug_report_templates/active_record_gem.rb b/guides/bug_report_templates/active_record_gem.rb
index d88304a219..74b329115d 100644
--- a/guides/bug_report_templates/active_record_gem.rb
+++ b/guides/bug_report_templates/active_record_gem.rb
@@ -9,7 +9,7 @@ gemfile(true) do
# Activate the gem you are reporting the issue against.
gem "activerecord", "5.2.0"
- gem "sqlite3"
+ gem "sqlite3", "~> 1.3.6"
end
require "active_record"
diff --git a/guides/bug_report_templates/active_record_migrations_gem.rb b/guides/bug_report_templates/active_record_migrations_gem.rb
index 5dfd49fb38..8d71863034 100644
--- a/guides/bug_report_templates/active_record_migrations_gem.rb
+++ b/guides/bug_report_templates/active_record_migrations_gem.rb
@@ -9,7 +9,7 @@ gemfile(true) do
# Activate the gem you are reporting the issue against.
gem "activerecord", "5.2.0"
- gem "sqlite3"
+ gem "sqlite3", "~> 1.3.6"
end
require "active_record"