aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/actions.rb
Commit message (Collapse)AuthorAgeFilesLines
* Initialize instance variable to remove warningCarlos Antonio da Silva2013-01-071-0/+4
| | | | actions.rb:34: warning: instance variable @in_group not initialized
* Introduce ./bin for your app's executables: bin/bundle, bin/rails, bin/rake. ↵Jeremy Kemper2013-01-061-1/+1
| | | | Executable scripts are versioned code like the rest of your app. To generate a stub for a bundled gem: 'bundle binstubs unicorn' and 'git add bin/unicorn'
* Remove observers and sweepersRafael Mendonça França2012-11-281-1/+1
| | | | | | | | They was extracted from a plugin. See https://github.com/rails/rails-observers [Rafael Mendonça França + Steve Klabnik]
* Use Ruby 1.9 Hash syntax in railtiesRobin Dupret2012-10-141-22/+22
|
* Revert "Use flat_map { } instead of map {}.flatten"Santiago Pastorino2012-10-051-1/+1
| | | | | | | | | | | This reverts commit abf8de85519141496a6773310964ec03f6106f3f. We should take a deeper look to those cases flat_map doesn't do deep flattening. irb(main):002:0> [[[1,3], [1,2]]].map{|i| i}.flatten => [1, 3, 1, 2] irb(main):003:0> [[[1,3], [1,2]]].flat_map{|i| i} => [[1, 3], [1, 2]]
* Use flat_map { } instead of map {}.flattenSantiago Pastorino2012-10-051-1/+1
|
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-05-231-2/+1
|\
| * Remove obsolete comment from generator gem methodAlexey Vakhov2012-05-221-2/+1
| | | | | | | | | | This comment about :env option for gem method was actual for rails 2.3 without bundler. Now bundler uses grups for this goal.
* | Use new hash syntax for generators gem methodAlexey Vakhov2012-05-221-1/+1
|/ | | | | | The Gemfile of new application uses ruby 1.9 hashes. Gem method of generators should use them too. It prevents from mixing two kinds of syntax in one file.
* Removing ==Examples and last blank lines of docs from railtiesFrancesco Rodriguez2012-05-141-42/+0
|
* minor fixes [ci skip]Vijay Dev2012-04-051-2/+2
|
* added example, removed blank linesHrvoje Šimić2012-04-041-4/+13
|
* Correct invalid route example [ci skip]Cezary Baginski2012-04-021-1/+1
|
* Fixes #4764 - remove generated new line in routes.rb on scaffold generationVijay Dev2012-01-311-1/+1
| | | | | | | | | As explained in #4764, when destroying a scaffold, routes.rb loses a new line. This seems to happen because a new line is added while generating the route and the destroy generator removes it. However, this causes a problem if the routes file is manually edited to remove such new lines. This commit just removes that extra new line from added in the first place.
* No need to check for 'draw do |map|' anymorePiotr Sarnacki2012-01-071-1/+1
|
* use Kernel#Array instead of Array.wrap in Rails::Generators::ActionsSergey Nartimov2012-01-061-2/+1
|
* Rails::Plugin has goneSantiago Pastorino2012-01-031-34/+0
|
* Merge pull request #4221 from tonycoco/masterJon Leighton2011-12-281-0/+1
|\ | | | | Rails template creation issue
| * Update railties/lib/rails/generators/actions.rbTony Coconate2011-12-281-0/+1
| |
* | Updating newline fix to maintain existing linebreaks and indentation and ↵John Donahue2011-11-251-3/+4
| | | | | | | | test for b/eol on inserts
* | Added tests for #3751ganesh2011-11-251-1/+1
|/
* warning removed : '&' interpreted as argument prefixArun Agrawal2011-09-301-1/+1
|
* Honour RAILS_ENV environment variable when running rake.Dmitriy Kiriyenko2011-09-291-1/+1
|
* Merge pull request #2841 from wojtekmach/app-generators-groupJosé Valim2011-09-041-1/+26
|\ | | | | Add gem group support to generators
| * Add gem_group support to generatorsWojciech Mach2011-09-041-1/+26
| |
* | Warnings removed for using shadow variable.Arun Agrawal2011-09-041-2/+2
|/
* fix indent for generator environment methodAlexey Vakhov2011-09-021-1/+1
|
* Fix Rails::Generators::Actions#environment when env is passed. Closes #2110Guillermo Iguaran2011-07-181-2/+3
|
* Removed warnings about shadowing variablesAlexey Gaziev2011-06-201-4/+4
|
* parenthesize the arguments with splatAkira Matsuda2011-05-181-1/+1
| | | | to make sure we're not calling the :* operator
* log and readme should respect --quietJosé Valim2011-03-041-3/+4
|
* For templates' gem method, :env is deprecated, use :group insteadRyan Bigg2010-12-011-1/+1
|
* Fixing two minor errors in Rails::Generators::Actions initializer method ↵Juan Maiz2010-10-081-2/+2
| | | | | | | | comments [#5771 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Remove deprecation warnings in railtiesCarlos Antonio da Silva2010-09-061-25/+0
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Config is deprecated on 1.8.8 and 1.9.3 use RbConfigSantiago Pastorino2010-08-231-2/+2
|
* Makes rails destroy scaffold don't duplicate routes.draw do |map| |map| when ↵Santiago Pastorino2010-08-021-1/+1
| | | | | | using the deprecated syntax [#5263 state:committed]
* Fixed many references to the old config/environment.rb and Rails::InitializerBenjamin Quorning2010-07-131-2/+2
|
* Fixed typo in Rails::Generators::Base [#5051 state:resolved]Mark Hayes2010-07-061-1/+1
|
* Make the sentinel flag for route a bit more robust.José Valim2010-06-281-1/+1
|
* Bundler deprecated options in Gemfile with application template using method ↵Adrian Sanchez2010-05-151-1/+2
| | | | | | "gem" [#4534 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Use Config::CONFIG['host_os'] instead of RUBY_PLATFORM [#4477 state:resolved]Anil Wadghule2010-04-261-2/+3
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* #add_source: Fixed docco + added required newline to line added to GemfileDr Nic Williams2010-02-261-2/+2
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Add readme as method in Rails::Generators::Actions (as we had in 2.3)José Valim2010-02-171-0/+10
|
* Fixes unescaped version passthrough of generator 'gem' command. [#3901 ↵Michael Bleigh2010-02-101-1/+1
| | | | | | status:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Added newline to appended gem config in GemfileDan Kubb2010-02-061-1/+1
| | | | Signed-off-by: Yehuda Katz <yehudakatz@YK.local>
* fix usage examples and more to use new invocationsRomD2010-02-061-2/+2
| | | | Signed-off-by: Carl Lerche <carllerche@mac.com>
* Update routes.rb template to use App nameJoshua Peek2009-12-211-1/+1
|
* Fixed old routing mapper example in generated routes.rbJoshua Peek2009-12-091-1/+1
|
* Fix the application.rb generatorCarl Lerche2009-11-251-1/+1
|
* Pass config.generators options along when RAILS_GENERATORS is set and show ↵José Valim2009-11-031-0/+1
| | | | | | --force-plural message just once. Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>