aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators
Commit message (Collapse)AuthorAgeFilesLines
* Create mailers folder when starting a new rails appLawrence Curtis2010-06-121-0/+0
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Rails::Generators::GeneratedAttribute: tests, cleanups and a bugfix [#4631 ↵Jeff Kreeftmeijer2010-06-102-9/+24
| | | | | | state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Remove outdated section on web servers that didnt really tell you much anywayDavid Heinemeier Hansson2010-06-091-26/+1
|
* Remove needless links and search box and update doc linksDavid Heinemeier Hansson2010-06-091-17/+0
|
* You dont have to manually mention the application layout, its automatically usedDavid Heinemeier Hansson2010-06-091-1/+0
|
* Readme file changes:Rizwan Reza2010-06-051-56/+23
| | | | | | | * Took out stuff that's not relevant (or useful) anymore. * Some formatting. * Added helpful links to get started with Rails. * Took out Apache htaccess tutorial since we aren't teaching Apache here.
* Merge branch 'master' of git://github.com/rails/railsRizwan Reza2010-06-053-5/+7
|\
| * Missed fixing the banner on the Usage output for ThorMikel Lindsaar2010-06-041-1/+1
| | | | | | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
| * Changing command line API from 'rails blog' to 'rails new blog'.Mikel Lindsaar2010-06-042-4/+3
| | | | | | | | | | | | | | | | | | | | Also removed the limitation of not being able to call your new server any of the rails commands (generate, server, dbconsole, console etc) as there is no longer any ambiguity here. http://rails.lighthouseapp.com/projects/8994/tickets/4665 Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
| * You need the ruby-debug available in your Gemfile for debugger to workDavid Heinemeier Hansson2010-06-021-0/+3
| |
* | Improve Rails README [#4740 state:resolved]Matt Di Pasquale2010-06-051-119/+189
|/ | | | Signed-off-by: Rizwan Reza <rizwanreza@gmail.com>
* Removing Metal from Rails 3. wycats2010-05-294-32/+1
| | | | | | | | | | | | | | | | | | | | If you have existing Metals, you have a few options: * if your metal behaves like a middleware, add it to the middleware stack via config.middleware.use. You can use methods on the middleware stack to control exactly where it should go * if it behaves like a Rack endpoint, you can link to it in the router. This will result in more optimal routing time, and allows you to remove code in your endpoint that matches specific URLs in favor of the more powerful handling in the router itself. For the future, you can use ActionController::Metal to get a very fast controller with the ability to opt-in to specific controller features without paying the penalty of the full controller stack. Since Rails 3 is closer to Rack, the Metal abstraction is no longer needed.
* performance and integration tests inherit from AD, not ACGonçalo Silva2010-05-282-2/+2
| | | | Signed-off-by: wycats <wycats@gmail.com>
* refactor evals and adds some __FILE__ and __LINE__Santiago Pastorino2010-05-201-1/+1
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Added rails command aliases (s g c db) to reserved words in app generator ↵Aleksandr Koss2010-05-161-1/+1
| | | | | | [#4602 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Rename assert_attribute_type to asser_field_type.José Valim2010-05-161-3/+3
|
* Added assert_attribute_type to clean up GeneratedAttributeTest [#2377 ↵Jeff Kreeftmeijer2010-05-161-0/+12
| | | | | | state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* using :time_select when the attribute type is :time in the scaffold ↵Jeff Kreeftmeijer2010-05-161-6/+7
| | | | | | generator. [#2377 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* 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>
* Expand paths to app builders relative to the working directoryCarl Lerche2010-05-061-1/+4
|
* Merge commit 'rails/master'Xavier Noria2010-05-017-164/+262
|\ | | | | | | | | Conflicts: railties/guides/source/index.html.erb
| * Fix a bug in the generators from the previous commitCarl Lerche2010-04-301-1/+1
| |
| * Provide a mechanism for overriding the entire generator via a class that ↵Carlhuda2010-04-301-57/+85
| | | | | | | | handles the individual elements of generating a new Rails application
| * Set up app generator class to make it easier to for alt-stacks to override ↵Carlhuda2010-04-301-104/+217
| | | | | | | | targeted areas
| * Update generators to use thor 0.13.6 with simpler source_root handling.José Valim2010-04-302-19/+23
| |
| * Move ActionMailer generator to AMCarlhuda2010-04-293-45/+0
| |
| * warn user if options are given before application name [#3435 state:resolved]Ravinder Singh2010-04-291-0/+1
| | | | | | | | Signed-off-by: José Valim <jose.valim@gmail.com>
| * The rake task :environment now loads config/environment.rb instead of ↵José Valim2010-04-291-5/+2
| | | | | | | | initializing the application on its own. This fixes [#4492 state:resolved] and also avoids the application being initialized twice in some rake tasks.
* | Small grammatical fix.Ben Orenstein2010-04-291-1/+1
| |
* | Make output match code.Ben Orenstein2010-04-291-1/+1
| |
* | Fix sentence fragment and improve wording in generated README.Ben Orenstein2010-04-291-2/+2
|/
* Switch driver to pg. [#3635 state:resolved]Jeremy Kemper2010-04-271-5/+5
|
* Use Config::CONFIG['host_os'] instead of RUBY_PLATFORM [#4477 state:resolved]Anil Wadghule2010-04-262-3/+5
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* No need to require test and rdoc tasks.José Valim2010-04-261-3/+0
|
* Rename fieldWithErrors style to field_with_errors. Remove unused alert style.Jeremy Kemper2010-04-242-7/+3
|
* Squash backtraces from Bundler.setupAndre Arko2010-04-211-2/+6
|
* Make i18n fallbacks configurable and fallback to the default locale by ↵Sven Fuchs2010-04-171-0/+4
| | | | | | | | | | | | | | | | | | | | | default in production [#4428 state:resolved] Allows to configure locale fallbacks through config.i18n.fallbacks. The default setting config.i18n.fallbacks = true in production.rb will make I18n.t lookup fallback to the I18n.default_locale if a translation could not be found for the current or given locale. config.fallbacks = true config.fallbacks.map = { :ca => :es } config.fallbacks.defaults = [:'es-ES', :es] config.fallbacks = [:'es-ES', :es] config.fallbacks = { :ca => :es } config.fallbacks = [:'es-ES', :es, { :ca => :es }] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Allow a Rails application to be initialized from any directory and not just ↵José Valim2010-04-141-2/+5
| | | | from inside it (ht: Andre Arko).
* Use correct RUBY_PLATFORM regex for Windows env [#4385 state:resolved]Anil Wadghule2010-04-131-1/+1
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Cleanup indention and spacing and turn errorExplanation into ↵David Heinemeier Hansson2010-04-132-11/+12
| | | | error_explanation now that nobody depends on it anymore
* Update the Bundler snippet for 0.9.15 and aboveAndre Arko2010-04-121-13/+5
|
* Make dev and edge app generation options generate edge arel on GemfileSantiago Pastorino2010-04-121-0/+2
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Generate module file for namespaced models [#4230 state:resolved]Andrew White2010-04-121-0/+15
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Use pluralize to properly inflect the number of errors.José Valim2010-04-101-1/+1
|
* Remove error_messages_for from scaffold.José Valim2010-04-102-9/+13
|
* Need a double escape thereDavid Heinemeier Hansson2010-04-091-1/+1
|
* Notice/alert are out of the layout, so notice has to go back into show to ↵David Heinemeier Hansson2010-04-091-0/+2
| | | | make it work for scaffolding
* Use thor shorthand for indicating that application.html.erb is a templateJeremy Kemper2010-04-093-6/+1
|
* Partially revert "A new application now comes with a layout and a stylesheet."Jeremy Kemper2010-04-097-1/+16
| | | | | | | | | This reverts commit ea2c5fa8046e2f953b366adc94f0610ccfea0828. Conflicts: railties/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb railties/test/generators/app_generator_test.rb
* Include app name in layout titleJeremy Kemper2010-04-092-5/+11
|