aboutsummaryrefslogtreecommitdiffstats
path: root/guides/bug_report_templates/generic_master.rb
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-11-03 15:24:45 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-11-03 22:25:47 +0900
commitb106242f52272c4a5ced7a0e9d1dcb1b50542501 (patch)
treeb286efe90db103ff7b4b804157d787acfe957716 /guides/bug_report_templates/generic_master.rb
parentc3db9297c8886c404eddef806f40a6cb31c898c3 (diff)
downloadrails-b106242f52272c4a5ced7a0e9d1dcb1b50542501.tar.gz
rails-b106242f52272c4a5ced7a0e9d1dcb1b50542501.tar.bz2
rails-b106242f52272c4a5ced7a0e9d1dcb1b50542501.zip
Specify bundler version in template files
We have already specified to install `bundler` 1.15.4 in `.travis.yml`. https://github.com/rails/rails/blob/master/.travis.yml#L31..L32 However, `bundler` 1.16.0 may be used in the test. https://travis-ci.org/rails/rails/jobs/296582467#L2208 The test failed due to this influence. In order to avoid this, specifying `bundler` version in bug report templates.
Diffstat (limited to 'guides/bug_report_templates/generic_master.rb')
-rw-r--r--guides/bug_report_templates/generic_master.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/bug_report_templates/generic_master.rb b/guides/bug_report_templates/generic_master.rb
index 384c8b1833..240571ba9a 100644
--- a/guides/bug_report_templates/generic_master.rb
+++ b/guides/bug_report_templates/generic_master.rb
@@ -1,5 +1,7 @@
# frozen_string_literal: true
+gem "bundler", "< 1.16"
+
begin
require "bundler/inline"
rescue LoadError => e