aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators
Commit message (Collapse)AuthorAgeFilesLines
* #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-062-6/+6
| | | | Signed-off-by: Carl Lerche <carllerche@mac.com>
* Add config.generators.templates to provide alternative paths for template ↵José Valim2010-02-061-2/+1
| | | | lookup.
* Make bin/rails call rails/commands/application, fix generators usage and ↵José Valim2010-02-031-1/+1
| | | | update .gitignores.
* No more vendored thor.José Valim2010-02-032-6/+4
|
* Ensure that attr_reader methods in generators are protected.José Valim2010-02-021-8/+5
|
* Change Rails::Generators::Migration protected instance methods to class ↵Szymon Nowak2010-02-021-23/+27
| | | | | | methods. [#3820 status:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Convert to class_attributeJeremy Kemper2010-02-011-3/+4
|
* Change mailer generator templates and refactor the whole naming schema.José Valim and Mikel Lindsaar2010-01-252-65/+57
|
* Generators load path now will be Ruby load path. If you want to use ↵José Valim2010-01-18156-10310/+1
| | | | rspec:install generator, you need generators/rspec/install_generator in your load path.
* Automatically remove :generators: from namespaces.José Valim2010-01-181-1/+1
|
* Ensure generators can be invoked by their shortcut and remove attr_reader tasks.José Valim2010-01-183-6/+16
|
* Plugin generator should use templates.José Valim2010-01-173-0/+0
|
* Take --skip-activerecord into account boot.rb requires. [#3711 status:resolved]Rizwan Reza2010-01-172-2/+13
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Bundle automatically if --dev or --edge is given as option.José Valim2010-01-151-2/+4
|
* Add documentation to f.submit and make scaffold generators use the new shortcut.José Valim2010-01-141-5/+1
|
* Get everyone running on Rails.env and fix the broken environment settings ↵David Heinemeier Hansson2010-01-113-3/+8
| | | | for script/console and script/dbconsole
* No more hacks to ensure generators are executed inside Rails.root.José Valim2010-01-071-17/+0
|
* Ensure application names are not singularized.José Valim2010-01-071-1/+1
|
* Ensure config/application.rb also uses app_const instead of app_name.classify.José Valim2010-01-072-2/+6
|
* Remove stray semicolon from cookie_verification_secret initialzer templateJeffrey Hardy2010-01-071-1/+1
|
* Align assignments in the session_store initializer templateJeffrey Hardy2010-01-071-2/+2
|
* Rails layouts, error pages, and public/index now use HTML5.Dan Croak2010-01-055-5/+0
| | | | | | | | | | The specification allows the character encoding meta tag to be removed if character encoding is set at the transport level (Content-Type), which Rails is doing. http://dev.w3.org/html5/html4-differences/#character-encoding Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Fix --dev optionCarlhuda2010-01-041-1/+2
|
* Autoload AS test caseJoshua Peek2010-01-042-7/+4
|
* MergeDavid Heinemeier Hansson2010-01-035-35/+286
|\
| * Move all generators tests to use new test case syntax.José Valim2010-01-031-4/+19
| |
| * Create Rails::Generators::TestCase.José Valim2010-01-032-1/+225
| |
| * Assert for valid application names. [#3556 status:resolved]José Valim2010-01-031-2/+10
| |
| * Use regexp in lookups instead of traversing namespaces. This removes the ↵José Valim2010-01-031-28/+32
| | | | | | | | need of special cases.
| * Doc fixYehuda Katz2010-01-021-1/+1
| |
| * app_generator option should be skip_activerecord not no_activerecordSteve Agalloco2010-01-031-1/+1
| | | | | | | | | | | | (Thor actually accepts both, the patch was applied to improve readability) Signed-off-by: José Valim <jose.valim@gmail.com>
* | Stop featuring ActiveSupport::TestCase.use_instantiated_fixtures and ↵David Heinemeier Hansson2010-01-031-25/+0
| | | | | | | | ActiveSupport::TestCase.use_transactional_fixtures as likely-to-change settings in test/test_helper.rb -- they are not and their values are already set in test_help.rb [DHH]
* | Describe intent, not implementationDavid Heinemeier Hansson2010-01-031-3/+2
| |
* | Removed config/initializers/new_rails_defaults.rb as all frameworks now ↵David Heinemeier Hansson2010-01-031-9/+0
| | | | | | | | follow the settings from it [DHH]
* | Changed the default ActiveSupport.use_standard_json_time_format from false ↵David Heinemeier Hansson2010-01-031-11/+1
| | | | | | | | | | | | to true and ActiveSupport.escape_html_entities_in_json from true to false to match previously announced Rails 3 defaults [DHH]
* | Time zoning should be turned on by default with UTCDavid Heinemeier Hansson2010-01-031-4/+3
| |
* | This comment has been true of all helpers for a long timeDavid Heinemeier Hansson2010-01-031-1/+0
| |
* | Remove self-evident comment about how subclasses workDavid Heinemeier Hansson2010-01-031-3/+0
| |
* | Added that ActionController::Base now does helper :all instead of relying on ↵David Heinemeier Hansson2010-01-031-1/+0
|/ | | | the default ApplicationController in Rails to do it [DHH]
* Some railties cleanup:Carl Lerche2009-12-311-8/+7
| | | | | | * Rename <framework>/rails.rb -> <framework>/railtie.rb * Rails::Plugin -> Rails::Railtie * Rails::Plugin::Vendored -> Rails::Plugin
* Rename rails.rb -> rails/all.rb and rails/core.rb -> rails.rbCarl Lerche2009-12-311-5/+4
|
* Add a /rails.rb for each framework for consistencyCarl Lerche2009-12-311-2/+4
|
* Fully remove config.frameworks in favor of requires in boot.rbCarl Lerche2009-12-312-8/+9
|
* Dont gitkeep things that are gitignoredDavid Heinemeier Hansson2009-12-311-1/+1
|
* Added .gitkeep to empty directories and --skip-git to skip gitignore/gitkeep ↵David Heinemeier Hansson2009-12-311-6/+13
| | | | files
* Revert "Add default respond_to formats to ApplicationController."Jeremy Kemper2009-12-291-1/+0
| | | | | | (Needs consensus that these are appropriate defaults.) This reverts commit 66604b2e0e8d3aba25cab673c7a3d7831a68490c.