aboutsummaryrefslogtreecommitdiffstats
path: root/guides/bug_report_templates/active_record_migrations_gem.rb
Commit message (Collapse)AuthorAgeFilesLines
* Update bug report templatesRyuta Kamizono2019-04-251-3/+3
| | | | Bump gem version to 6.0.0.rc1.
* Specify sqlite gem version explicitly in version-specific bug report templatesSergey Ponomarev2019-02-041-1/+1
|
* Update bug report templatesRobin Dupret2018-10-281-9/+1
| | | | | | | | | | Given that Bundler 1.10 was released back in 2015, we can assume that people are at least on this version or a higher one so there is no need to ask people to upgrade. Also, given that Rails 5.0 supports Ruby 2.2+ and given that this version come with Minitest 5.4.3 bundled, we don't need to ensure backward compatibility with Minitest 4.
* use "minitest" consistentlyXavier Noria2018-09-111-1/+1
| | | | | | | | | The name of the minitest library is spelled that way: regular font, and lowercase. Lowercase is used even at the beginning of sentences, see http://docs.seattlerb.org/minitest/ I double-checked this with @zenspider too (thanks!).
* Update bug report templatesbogdanvlviv2018-04-101-1/+1
| | | | Set Rails 5.2.0 in templates
* Update bug report templatesbogdanvlviv2018-02-171-2/+2
| | | | | | Prepare bug report templates for Rails 6.0 development Add missing `require "active_support"` in `guides/bug_report_templates/generic_gem.rb`
* Set proper migration' version in bug report templatesbogdanvlviv2017-10-181-1/+1
|
* Add newlines before/after the `git_source` in bug report templatesRyuta Kamizono2017-09-271-0/+2
| | | | [ci skip]
* Change :github git source for bug report templatesbogdanvlviv2017-09-271-0/+1
| | | | | | | :github source uses `git://` url by default, `https://` is recommended. See http://bundler.io/v1.15/guides/git.html#security We do the same in our `Gemfile` and templates.
* Use frozen string literal in guides/Koichi ITO2017-08-131-0/+2
|
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
| | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa.
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
|
* Do not use private API in bug report templatesyuuji.yaginuma2017-06-221-4/+2
| | | | | | | | `ActiveRecord::Migrator` is private API. https://github.com/rails/rails/blob/bb9d6eb094f29bb94ef1f26aa44f145f17b973fe/activerecord/lib/active_record/migration.rb#L977 Therefore, it is not good to use it in bug report templates. Instead, should use the public API `ActiveRecord::Migration#migrate`.
* Update the Gem Bug Report Templates to 5.1.0Alex Kitchens2017-05-011-1/+1
| | | | 5.1.0 has been released, and the gem templates can reflect that now.
* Update bug report templatesMatthew Draper2017-03-221-1/+1
|
* Bump bug report template versions to 5.0.1Daniel Martin2017-01-261-1/+1
|
* Add more rubocop rules about whitespacesRafael Mendonça França2016-10-291-1/+1
|
* bug report template for migrations (#26488)Girish Sonawane2016-09-151-0/+65
* added bug report template for migrations