aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/app_base.rb
Commit message (Collapse)AuthorAgeFilesLines
* application and plugin generation run bundle check unless --skip-gemfileXavier Noria2011-05-131-3/+14
| | | | | | | The purpose of this feature is that the user knows whether dependencies are satisfied. In particular, if they are not he will be warned upfront, rather than finding out himself in an abrupt way by trying to run something.
* review fixesAditya Sanghi2011-05-061-0/+8
|
* No longer need to reference mysql2 from gitDavid Heinemeier Hansson2011-05-041-9/+1
|
* restores the -j option, but now it accepts the name of any libraryXavier Noria2011-05-041-1/+7
| | | | | | If passed "foo", a gem "foo-rails" is added to the Gemfile and "foo" and "foo_ujs" are required in the application JavaScript manifest.
* We no longer depend on those git repos.José Valim2011-05-031-6/+0
|
* Use sprockets beta gemJoshua Peek2011-05-011-7/+4
|
* Prototype and Scriptaculous are no longer vendored, but provided by ↵Xavier Noria2011-04-301-3/+0
| | | | prototype-rails from now on, also the -j option of the application generator is removed
* minor git sources formatting change in railties app_base.rbJosh Kalderimis2011-04-271-3/+3
|
* jdbcpostgresql support added into template.Vishnu Atrai2011-04-261-2/+3
|
* Adding jdbcsqlite3 name in comment.Arun Agrawal2011-04-241-1/+1
|
* Looks more friendly. Arun Agrawal2011-04-241-1/+2
|
* jdbcsqlite3 support added into template. #jrubyArun Agrawal2011-04-231-1/+3
|
* Start Adding jdbcmysql support to new rails template.Arun Agrawal2011-04-231-2/+3
| | | More will come for jruby app.
* Cleanup the Gemfile and compute whats needed depending on whether we are on ↵David Heinemeier Hansson2011-04-131-1/+20
| | | | 1.8 or 1.9
* Move json requirement to user Gemfile -- still need to do better than this, ↵David Heinemeier Hansson2011-04-131-3/+0
| | | | though
* Move the asset template engines to the user-generated GemfileDavid Heinemeier Hansson2011-04-131-2/+0
|
* Include CoffeeScript in GemfileJoshua Peek2011-04-131-2/+4
|
* Fix tripletsDavid Heinemeier Hansson2011-04-131-397/+1
|
* Clean up the generator, switch to assets usage, use vendor/assets for the ↵David Heinemeier Hansson2011-04-131-0/+403
| | | | default scripts, and more
* Until the latest sprockets gem is released, we need new apps to reference it ↵David Heinemeier Hansson2011-04-131-9/+12
| | | | directly
* jQuery is the new defaultXavier Noria2011-04-131-4/+4
|
* Add --old-style-hash option to force creating old style hash on Ruby 1.9Prem Sichanugrist2011-04-101-1/+4
| | | | That means if you don't like the new syntax, you can pass --old-style-hash to force Rails to generate code with hash rockets.
* Rails will now generate Ruby 1.9 style hash when running app generator on ↵Prem Sichanugrist2011-04-101-0/+9
| | | | | | Ruby 1.9.x The new hash syntax of Ruby 1.9 looks more superior, so we decide to switch to it in the places that appropriate.
* let these heredocs flow with the codeXavier Noria2011-03-281-14/+15
|
* Make edge and dev options use edge mysql2Santiago Pastorino2011-03-271-6/+14
|
* change sqlite3-ruby => sqlite3 in the generatorsAaron Patterson2011-01-161-13/+1
|
* Generate javascripts in engine with --mountable optionPiotr Sarnacki2010-12-161-0/+6
|
* Allow http templates again, fix the broken testXavier Shay2010-11-271-1/+1
| | | | | | [#5926 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Application templates should work with HTTPS tooMikel Lindsaar2010-11-271-1/+1
|
* Properly skip test unit in 'plugin new' generatorPiotr Sarnacki2010-11-021-0/+3
|
* Properly handle other databases in 'plugin new' generatorPiotr Sarnacki2010-11-021-0/+27
|
* Pass more options to test/dummy in 'plugin new' generatorPiotr Sarnacki2010-11-021-3/+13
|
* Add --full option to 'plugin new' generator, which generates rails enginePiotr Sarnacki2010-11-021-0/+5
|
* No need for say_step in 'plugin new' generatorPiotr Sarnacki2010-11-021-10/+0
|
* DRY up app generator and plugin new generator. Moved shared options to ↵Piotr Sarnacki2010-11-021-0/+28
| | | | AppBase generator
* Add --dev and --edge options to rails plugin newPiotr Sarnacki2010-11-021-0/+34
|
* Add support for templates for rails plugin newPiotr Sarnacki2010-11-021-0/+18
|
* Refactored AppGenerator and PluginNewGenerator to inherit from AppBase.Piotr Sarnacki2010-11-021-0/+61