aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
Commit message (Collapse)AuthorAgeFilesLines
* :scissors:Rafael Mendonça França2013-04-011-4/+4
| | | | [ci skip]
* Remove CHANGELOG entry for #10002Rafael Mendonça França2013-04-011-4/+0
| | | | [ci skip]
* Merge pull request #9991 from Passionate/patch-1Rafael Mendonça França2013-03-301-18/+50
|\ | | | | improve readability
| * improve readabilityParitosh Piplewar2013-03-291-18/+50
| |
* | registers the new doc:rails behaviour in the changelogXavier Noria2013-03-301-0/+5
|/
* Put coffee-rails in top-level of generated GemfileGabe Kopley2013-03-241-0/+12
| | | | v3 of pull request based on additional feedback from @jeremy
* add changelog entryCharlie Somerville2013-03-241-0/+4
|
* Don't generate a scaffold.css if no-assetsKevin Glowacz2013-03-201-0/+4
|
* Revert "make new rails apps log to STDOUT"Steve Klabnik2013-03-151-4/+0
| | | | | | This reverts commit b7d9d6e2cd5082d269dafbc0316e2107febe1451. Per discussion with @jeremy and @rubys on Campfire.
* make new rails apps log to STDOUTTerence Lee2013-03-151-0/+4
|
* Add support for generate scaffold password:digestSam Ruby2013-03-131-0/+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
* Move some railties changelog entries to the top [ci skip]Carlos Antonio da Silva2013-03-131-20/+21
|
* Improve wording for rails test commandDalibor Nasevic2013-03-091-8/+11
|
* Load fixtures only when running suites, or `-f`Prem Sichanugrist2013-03-091-0/+8
| | | | | | * `rails test -f` will run the test suites with all fixtures loaded * New application will now generated without `fixtures :all` line enabled by default.
* Add `rails test` command to run the test suitePrem Sichanugrist and Chris Toomey2013-03-091-0/+21
| | | | | | | | | | | | | | | | | | | To run the whole test suite: $ rails test To run the test file(s): $ rails test test/unit/foo_test.rb [test/unit/bar_test.rb ...] To run the test suite $ rails test [models,helpers,units,controllers,mailers,...] For more information, see `rails test --help`. This command will eventually replacing `rake test:*`, and `rake test` command will actually invoking `rails test` instead.
* Use "Fixes" in place of "Fix" in changelogs for consistency [ci skip].Yves Senn2013-03-091-7/+7
|
* New beauty pages(404, 422, 500)Stanislav2013-03-021-0/+1
| | | | | | moving changelog note to unreleased section New beauty pages(404, 422, 500)
* Update CHANGELOGSRafael Mendonça França2013-02-261-0/+3
|
* Preparing for 4.0.0.beta1 releaseDavid Heinemeier Hansson2013-02-251-1/+1
|
* Improve `rake stats` for JavaScript and CoffeeScript.Hendy Tanata2013-02-251-0/+5
| | | | Ignore block comments and calculates number of functions.
* Remove `--builder` option from `rails` commandPrem Sichanugrist2013-02-241-0/+7
| | | | | | | Ability to use a custom builder by passing `--builder` (or `-b`) has been removed. Consider using application template instead. See this guide for more detail: http://guides.rubyonrails.org/rails_application_templates.html
* Revert "move config.assets.precompile into config/application.rb"Yves Senn2013-02-241-6/+0
| | | | | | | This reverts commit 304f4d4c25ccabdbf97d37dd7a92a54d0b63a9c9. As it turns out everything should behave as it did and we don't need to move this configuration option.
* Merge pull request #9341 from senny/move_precompiled_asset_config_to_applicationRafael Mendonça França2013-02-201-0/+6
|\ | | | | move config.assets.precompile into config/application.rb
| * move config.assets.precompile into config/application.rbYves Senn2013-02-201-0/+6
| |
* | update changelogTerence Lee2013-02-211-0/+3
|/
* Revert "Deprecate the `eager_load_paths` configuration"Andrew White2013-02-191-9/+0
| | | | | | | | | | | Because of the possibility of lib being unintentionally eager loaded it's been agreed that we'll leave autoload paths and eager load paths separate for Rails 4.0. This reverts commit 0757b3388ffe4f44b60de950d40e18ef05055931. Conflicts: railties/CHANGELOG.md
* Add changelog entry for #9177 [ci skip]Carlos Antonio da Silva2013-02-111-4/+11
| | | | Add test:all and test:all:db rake tests to speed up full test runs.
* Added notice message for destroy method in scaffoldRahul P. Chaudhari2013-02-101-0/+4
|
* Add --rc option to support the load of a custom rc fileAmparo Luna2013-02-011-0/+4
|
* Add --no-rc option to skip the loading of railsrc fileAmparo Luna2013-01-311-0/+4
|
* Merge pull request #8303 from jeremywrowe/masterRafael Mendonça França2013-01-251-0/+5
|\ | | | | | | | | | | | | Fixes improper database name when creating a new rails app with a '.' Conflicts: railties/CHANGELOG.md
| * Fixes improper database name when a '.' is included while creating a new railsJeremy W. Rowe2013-01-161-0/+5
| | | | | | | | | | | | application. EG: `rails new something.awesome.com` Conflicts: railties/CHANGELOG.md
* | Deprecate the `eager_load_paths` configurationAndrew White2013-01-241-0/+9
| | | | | | | | | | | | | | | | | | | | Since the default in Rails 4.0 is to run in 'threadsafe' mode we need to eager load all of the paths in `autoload_paths` so we alias `eager_load_paths` to it. This may have unintended consequences if you have added 'lib' to `autoload_paths` such as loading unneeded code or code intended only for development and/or test environments. If this applies to your application you should thoroughly check what is being eager loaded.
* | Merge pull request #8557 from timraymond/add_back_engines_and_deprecateRafael Mendonça França2013-01-221-0/+6
|\ \ | | | | | | | | | | | | | | | | | | Adding Back Rails::Engine::Railties#engines Conflicts: railties/CHANGELOG.md
| * | Adding Back Rails::Engine::Railties#enginesTim Raymond2013-01-031-0/+6
| | | | | | | | | | | | | | | Removing it breaks functionality with gems such as Thinking Sphinx. This restores it with a deprecation warning. Closes #8551
* | | clear specific logs when using rake log:clearMatt Bridges2013-01-161-0/+5
| |/ |/|
* | allow :dirs option for .enumerateBrian D. Burns2013-01-151-0/+6
| | | | | | | | | | | | Allows custom rake tasks to be defined using: SourceAnnotationExtractor.enumerate 'TODO|FIXME', dirs: %w(app lib), tag: true
* | Deprecate `Rails::Generators::ActiveModel#update_attributes`Carlos Antonio da Silva2013-01-121-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Deprecate #update_attributes in favor of `#update`. ORMs that implement `Generators::ActiveModel#update_attributes` should change to `#update`. Scaffold controller generators should change calls like: @orm_instance.update_attributes(...) to: @orm_instance.update(...) This goes along with the addition of `ActiveRecord::Base#update`, introduced in cb2bd4aa619d9329c42aaf6d9f8eacc616ce53f4.
* | Add changelog entry for scaffold generator and jbuilder changesCarlos Antonio da Silva2013-01-111-0/+9
| | | | | | | | | | | | | | Introduced in 3bfd99defb559af0b017ee920ca714aa1e367fdd. Related to #8840. [ci skip]
* | new README generated for new appsXavier Noria2013-01-081-0/+5
| |
* | doc/README_FOR_APP is no longer generatedXavier Noria2013-01-081-0/+6
| |
* | Take the heat :fire:Jeremy Kemper2013-01-061-0/+2
| |
* | Introduce ./bin for your app's executables: bin/bundle, bin/rails, bin/rake. ↵Jeremy Kemper2013-01-061-0/+14
| | | | | | | | 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 the content_tag_for change from CHANGELOG since it was revertedRafael Mendonça França2013-01-051-5/+3
| |
* | config.assets.enabled is now true by defaultDavid Heinemeier Hansson2013-01-051-0/+6
| |
* | Move changelog entry in railties to the topCarlos Antonio da Silva2013-01-041-8/+7
| | | | | | | | Other minor changelog improvements [ci skip]
* | Small typo fix in railties/CHANGELOG.mdMatt Bridges2013-01-041-1/+1
| |
* | This commit fixes issue #8628Mykola Kyryk2013-01-041-0/+7
|/ | | | | | | | | | | | Allow environment name to start with a substring of the default environment names. For example: tes, pro, prod, dev, devel, etc. Fixing identation. Adding test for Rails::Console.parse_arguments method. Fix issue 8628 for Rails::DBConsole.
* Add missing changelog entry for #8676 [ci skip]Jiri Pospisil2013-01-021-0/+4
|
* quote column names in generated fixture filesYves Senn2012-12-261-0/+6
|