aboutsummaryrefslogtreecommitdiffstats
path: root/guides/bug_report_templates
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-11-29 17:07:24 +0100
committerYves Senn <yves.senn@gmail.com>2013-11-29 17:07:24 +0100
commitd4294fe95294672a5e98e1db3d0984078f7aff70 (patch)
treef500a11252085c792cbdc643964d29cf8931603a /guides/bug_report_templates
parentc85957ec7c247063cdc2f429c59132935ee64350 (diff)
downloadrails-d4294fe95294672a5e98e1db3d0984078f7aff70.tar.gz
rails-d4294fe95294672a5e98e1db3d0984078f7aff70.tar.bz2
rails-d4294fe95294672a5e98e1db3d0984078f7aff70.zip
add missing arel dependency to `active_record_master` bug report script.
[ci skip]. This solves: ``` Could not find gem 'arel (~> 5.0.0) ruby', which is required by gem 'rails (>= 0) ruby', in any of the sources. ```
Diffstat (limited to 'guides/bug_report_templates')
-rw-r--r--guides/bug_report_templates/active_record_master.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/guides/bug_report_templates/active_record_master.rb b/guides/bug_report_templates/active_record_master.rb
index 2435444dc9..d95354e12d 100644
--- a/guides/bug_report_templates/active_record_master.rb
+++ b/guides/bug_report_templates/active_record_master.rb
@@ -2,6 +2,7 @@ unless File.exist?('Gemfile')
File.write('Gemfile', <<-GEMFILE)
source 'https://rubygems.org'
gem 'rails', github: 'rails/rails'
+ gem 'arel', github: 'rails/arel'
gem 'sqlite3'
GEMFILE