diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2015-01-04 16:06:01 +0530 |
---|---|---|
committer | Prathamesh Sonpatki <csonpatki@gmail.com> | 2015-01-04 16:06:01 +0530 |
commit | 55298629c05a1183b965c2270018a5d07e3c46e0 (patch) | |
tree | 43a2aaeabb8f4b007d7e50636c995cd023ce6d64 | |
parent | 2d9b9fb5b5f6015e66d3ad5cb96bc1ba117fd626 (diff) | |
download | rails-55298629c05a1183b965c2270018a5d07e3c46e0.tar.gz rails-55298629c05a1183b965c2270018a5d07e3c46e0.tar.bz2 rails-55298629c05a1183b965c2270018a5d07e3c46e0.zip |
Update bug report templates to use version 4.2.0 instead of 5.0.0 [ci skip]
- Right now master is 5.0.0. Latest gem release is 4.2.0 for which we
are accepting bug reports. So lets use it in bug report templates.
- 5.0.0 is not installable as it's not available on Rubygems yet. So the
gem bug templates are not usable without editing the version. Using
4.2.0 will make them usable again.
-rw-r--r-- | guides/bug_report_templates/action_controller_gem.rb | 2 | ||||
-rw-r--r-- | guides/bug_report_templates/active_record_gem.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/guides/bug_report_templates/action_controller_gem.rb b/guides/bug_report_templates/action_controller_gem.rb index c06a653e2d..e04d79c818 100644 --- a/guides/bug_report_templates/action_controller_gem.rb +++ b/guides/bug_report_templates/action_controller_gem.rb @@ -1,5 +1,5 @@ # Activate the gem you are reporting the issue against. -gem 'rails', '5.0.0' +gem 'rails', '4.2.0' require 'rails' require 'action_controller/railtie' diff --git a/guides/bug_report_templates/active_record_gem.rb b/guides/bug_report_templates/active_record_gem.rb index 1ce8960016..66bbb15afb 100644 --- a/guides/bug_report_templates/active_record_gem.rb +++ b/guides/bug_report_templates/active_record_gem.rb @@ -1,5 +1,5 @@ # Activate the gem you are reporting the issue against. -gem 'activerecord', '5.0.0' +gem 'activerecord', '4.2.0' require 'active_record' require 'minitest/autorun' require 'logger' |