aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/erb
Commit message (Collapse)AuthorAgeFilesLines
* Show object ids in scaffold pages when displaying referenced objectsRasesh Patel2018-10-142-2/+2
| | | | | | | | | | | | Resolve Issue#29200 When scaffolding a model that references another model the generated show and index html pages display the object directly on the page. Basically, it just shows a memory address. That is not very helpful. In this commit we show the object's id rather than the memory address. This updates the scaffold templates and the json builder files.
* Strip duplicated suffixes more strictlyRyuta Kamizono2018-04-221-1/+1
| | | | In the previous code incorrectly removes intermediate words.
* Remove field ids from scaffold formyuuji.yaginuma2017-11-261-3/+3
| | | | | | This was added with 27f103fc7e3260efe0b8dde66bf5354f2202ee32 for link labels and fields. However, `form_with` changed to generates ids by default with d3893ec38ec61282c2598b01a298124356d6b35a. So I think that adding an explicit ids is unnecessary.
* Use .tt extension to all the template filesRafael Mendonça França2017-11-138-0/+0
| | | | | | | | Make clear that the files are not to be run for interpreters. Fixes #23847. Fixes #30690. Closes #23878.
* [Railties] require_relative => requireAkira Matsuda2017-10-213-4/+4
| | | | This basically reverts 618268b4b9382f4bcf004a945fe2d85c0bd03e32
* scaffold nested name controller should be fine.yalab2017-09-272-5/+5
|
* Adding frozen_string_literal pragma to Railties.Pat Allan2017-08-143-0/+6
|
* [Railties] require => require_relativeAkira Matsuda2017-07-013-4/+4
|
* add field ids when generating a scaffold form.Yves Senn2017-03-261-3/+3
| | | | | | This is a follow up to a6d065e. When using `form_with` you must supply field ids manually. Since the scaffold generator is using labels we need to make sure that they are linked up properly.
* Default to yielding a `form` variable.Kasper Timm Hansen2017-03-201-8/+8
| | | | More intention revealing and means `f` can go F itself 😋
* disable remote submitsIvan Velasquez2017-03-141-1/+1
|
* user form with instead of form for in scaffold generatorIvan Velasquez2017-03-131-1/+1
|
* generate mailer layout files only when it does not existyuuji.yaginuma2017-02-021-1/+1
| | | | If already have layout files, in many cases use it.
* `self.` is not needed when calling its own instance methodAkira Matsuda2017-01-051-1/+1
| | | | Actually, private methods cannot be called with `self.`, so it's not just redundant, it's a bad habit in Ruby
* Privatize unneededly protected methods in RailtiesAkira Matsuda2016-12-252-2/+2
|
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-6/+6
|
* applies new string literal convention in railties/libXavier Noria2016-08-063-7/+7
| | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
* generate mailer layout files if it does not already existyuuji.yaginuma2016-05-153-0/+21
| | | | | | | | | Currently, if `ApplicationMailer` does not exist, it is generated when run the mailer generator, but layouts files does not generate. However, because it uses the layouts in `ApplicationMailer`, layouts are required. Follow up to #24161
* Remove redundant regexp escapes in generatorsGadzhi Gadzhiev2016-03-081-1/+1
|
* ApplicationMailer should be generated by default just like every other ↵David Heinemeier Hansson2015-12-173-13/+0
| | | | Application* parent
* Remove <br> from scaffold, in favor of using CSSSean Collins2015-11-251-3/+3
|
* titleizing the New LinkThiago Pinto2015-07-201-1/+1
|
* Add blank lines between divs in form scaffoldingSean Collins2015-04-201-0/+2
|
* Merge pull request #18393 from y-yagi/fix_mailerRafael Mendonça França2015-02-181-1/+5
|\ | | | | follow up to #18074
| * follow up to #18074yuuji.yaginuma2015-01-081-1/+5
| | | | | | | | | | * ignore mailer suffix when generate test files * add mailer suffix to view files
* | Clean up grammar in scaffold index view, by removing the word 'Listing' from ↵Adrien Lamothe2015-01-121-1/+1
|/ | | | list title.
* Merge pull request #13434 from tanraya/local_variablesCarlos Antonio da Silva2015-01-033-6/+6
|\ | | | | | | | | | | | | Use local variables in _form.html.erb generated by scaffold. Conflicts: railties/CHANGELOG.md
| * Use local variables in _form.html.erb generated by scaffold generator.tanraya2014-07-263-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | It seems a good idea to use local variables in generated partials instead of using instance variables. Before <%= render 'form' %> After <%= render 'form', product: @product %>
* | Don't remove mailer layouts filesyuuji.yaginuma2014-11-271-3/+5
| |
* | Generate mailer layouts even if no action is given.Guo Xiang Tan2014-11-251-4/+4
| |
* | MailerGenerator should inherit from Base.Guo Xiang Tan2014-11-251-3/+4
| |
* | Add tests which were incorrectly removed.Guo Xiang Tan2014-11-251-4/+4
| |
* | Removing unnecessary File.join callsAndy Jeffries2014-11-241-1/+1
| |
* | Creates an ApplicationMailer and layout by default, including html and body ↵Andy Jeffries2014-11-213-0/+26
| | | | | | | | tags to reduce spam score
* | Give password_confirmation div the "field" class in erb form templatenoinkling2014-07-291-1/+1
|/
* Display notice in index.html pages in scaffolded generated viewsArun Agrawal2014-07-041-0/+2
| | | | | | | | | As we are setting notice in destroy action we should display that For more information see https://github.com/rails/rails/pull/14044 And https://github.com/rails/jbuilder/pull/191 closes #14044
* Titling the model name in views generated by scaffold.Amit Suryavanshi2014-06-183-3/+3
| | | | | eg. rails g scaffold UserProfile will have in index.html.erb "Listing User Profiles" rather than Listing user_profiles.
* Avoid unnecessary conditional blockGiovanni Cappellotto2014-05-011-5/+0
| | | | | GeneratedAttribute#column_name checks already for reference? on the attribute returning the right name to use as symbol for label and field.
* Dont abbreviate that which needs no abbreviationDavid Heinemeier Hansson2014-04-081-2/+2
|
* Always return an array from formats so there is no need to wrap it when callingCarlos Antonio da Silva2014-03-042-2/+2
|
* fix path shown in mailer's templatesKassio Borges2014-02-142-2/+2
|
* `html` and `text` templates for mailers by defaultKassio Borges2013-12-204-6/+15
|
* Fix the indentation on the from template of the scaffold generatorRafael Mendonça França2013-08-191-3/+3
|
* Use GeneratedAttribute#column_name if #reference? scaffold_generator in ↵Zachary Scott2013-07-231-0/+5
| | | | _form view [Fixes #11573]
* Use Colspan in th TagsSıtkı Bağdat2013-06-171-3/+1
| | | | | | | | | | Is it more suitable that using ```<th colspan="3">``` instead of three empty ```<th>```? It is simple, but what i am missing about it? Change repetitive th tags to use colspan attribute Update CHANGELOG.md Update CHANGELOG.md
* Unindent attributes iteration in scaffold index templateCarlos Antonio da Silva2013-04-181-2/+2
| | | | | | | | | | Otherwise we get extra indent for the <td> elements due to the extra spaces at the beginning of the lines, like this: <tr> <td><%= author.name %></td> <td><%= link_to 'Show', author %></td> <td><%= link_to 'Edit', edit_author_path(author) %></td>
* Indent around the scaffold loopDavid Heinemeier Hansson2013-04-181-8/+8
|
* HTML5 breaksDavid Heinemeier Hansson2013-04-182-4/+4
|
* Add support for generate scaffold password:digestSam Ruby2013-03-133-3/+12
| | | | | | | | | | * adds password_digest attribute to the migration * adds has_secure_password to the model * adds password and password_confirmation password_fields to _form.html * omits password entirely from index.html and show.html * adds password and password_confirmation to the controller * adds unencrypted password and password_confirmation to the controller test * adds encrypted password_digest to the fixture
* :scissors: extra blank lineAkira Matsuda2013-03-021-1/+0
|