aboutsummaryrefslogtreecommitdiffstats
path: root/guides/bug_report_templates
diff options
context:
space:
mode:
authorSergey Ponomarev <me@sergey-ponomarev.ru>2019-02-04 17:35:46 -0500
committerSergey Ponomarev <me@sergey-ponomarev.ru>2019-02-04 17:38:54 -0500
commit0375ccbae31a2c86f2df4880dd59482e49f08d9d (patch)
treec8dc0277e4ba959e3f2d75010889155def01f2de /guides/bug_report_templates
parent3cace9eac95fb4ec8d4b7045b60c5cc9b7b02d01 (diff)
downloadrails-0375ccbae31a2c86f2df4880dd59482e49f08d9d.tar.gz
rails-0375ccbae31a2c86f2df4880dd59482e49f08d9d.tar.bz2
rails-0375ccbae31a2c86f2df4880dd59482e49f08d9d.zip
Specify sqlite gem version explicitly in version-specific bug report templates
Diffstat (limited to 'guides/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"