aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [getting started][ci skip] fix link to the codeFabián Rodríguez2012-03-231-1/+1
|
* :foreign_key option should be on has_many side of associationMikhail Dieterle2012-03-231-2/+2
|
* Adding documentation for ActiveRecord::Base.abstract_class to clarify a ↵Joe Goggins2012-03-221-0/+14
| | | | particular usecase for this feature (to allow you to use inheritance in ActiveRecord without using the STI table name
* Update config.assets.initialize_on_precompile warning to include engine side ↵adman652012-03-221-1/+3
| | | | affects
* [engines] [ci-skip] Add example of precompiling engine assetsadman652012-03-221-0/+15
|
* improvements in "caching_with_rails" guidekucaahbe2012-03-221-8/+10
|
* Fixed-width font fix for instance variableJuanjo Bazán2012-03-201-1/+1
|
* [ci skip] Make guides more readable & consistentMark D. Blackwell2012-03-203-82/+83
|
* Correct description of ['migrated_at > ?', 1.week.ago] from "more than a ↵Dave Burt2012-03-201-1/+1
| | | | week ago" to "more recently than a week ago."
* Merge branch 'master' of github.com:lifo/docrailsCharles Brian Quinn2012-03-191-1/+1
|\
| * Adding comma to correct syntax in comment.Jesse Brown2012-03-191-1/+1
| |
* | Updates ActionMailer Base summary and fixes space in code example.Charles Brian Quinn2012-03-191-4/+4
|/
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-03-199-23/+122
|\
| * -h also shows help options.Sandeep2012-03-191-1/+1
| |
| * respond_with description: changed 'response' to 'format'Mark Thomson2012-03-181-1/+1
| |
| * Revised comments for respond_withMark Thomson2012-03-181-17/+18
| |
| * Merge remote-tracking branch 'origin/master'Mark Thomson2012-03-177-3/+5
| |\
| | * [getting started] Explain what the create action is accomplishing after ↵Ryan Bigg2012-03-171-1/+1
| | | | | | | | | | | | | | | | | | params are output [ci skip]
| | * [getting started] [ci skip] Explain in better terms what we are doing with ↵Ryan Bigg2012-03-171-1/+3
| | | | | | | | | | | | render and params[:post] inspection upon first use
| | * [getting started] [ci skip] Just want to get post paramsRyan Bigg2012-03-171-1/+1
| | |
| | * [getting started] Add imagesRyan Bigg2012-03-176-0/+0
| | |
| * | Merge remote-tracking branch 'origin/master'Mark Thomson2012-03-17533-11025/+2734
| |\|
| * | Revised description for responds_withMark Thomson2012-03-171-19/+115
| | |
* | | Merge pull request #5507 from sandeepravi/warning_fixesXavier Noria2012-03-191-1/+1
|\ \ \ | | | | | | | | changed all.map to pluck
| * | | changed all.map to pluckSandeep2012-03-191-1/+1
| | | |
* | | | Merge pull request #5508 from FND/tagged_logger_shortcutJosé Valim2012-03-192-2/+7
|\ \ \ \ | |/ / / |/| | | Provide access to logger instance within TaggedLogging blocks
| * | | Provide access to logger instance within TaggedLogging blocksFND2012-03-192-2/+7
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | this improves encapsulation, simplifying occurrences like the following: Rails.logger.tagged("DEBUG") { Rails.logger.debug(msg) } ... by removing the need to rely on (i.e. repeat) outer variables: Rails.logger.tagged("DEBUG") { |logger| logger.debug(msg) }
* | | Increase minimum version of mail.Mikel Lindsaar2012-03-191-1/+1
| | | | | | | | | | | | | | | Second security vulnerability found in mail file delivery method patched in version 2.4.4.
* | | Merge pull request #5492 from arunagw/build_fix_app_generator_testPiotr Sarnacki2012-03-181-1/+1
|\ \ \ | | | | | | | | Build fix for app_generator_test.rb
| * | | Build fix for app_generator_test.rbArun Agrawal2012-03-181-1/+1
| | | |
* | | | Merge pull request #3329 from armstrjare/autosave_collection_new_record_bugJosé Valim2012-03-182-1/+16
|\ \ \ \ | | | | | | | | | | Autosave association doesn't save all records on a new record for a collection association if there are records marked for destruction
| * | | | Fix bug with autosave collection association on new record with a marked for ↵Jared Armstrong2012-03-182-1/+16
| | | | | | | | | | | | | | | | | | | | destroy record in autosave collection.
* | | | | Merge pull request #5496 from atd/masterJosé Valim2012-03-182-2/+11
|\ \ \ \ \ | | | | | | | | | | | | time_tag support for blocks
| * | | | | time_tag support for blocksAntonio Tapiador del Dujo2012-03-182-2/+11
|/ / / / /
* | | | | Merge pull request #5486 from kennyj/fix_5435Aaron Patterson2012-03-172-0/+13
|\ \ \ \ \ | |_|/ / / |/| | | | Fix GH #5435. db:structure:dump should be re-enable.
| * | | | Fix GH #5435. db:structure:dump should be reenable.kennyj2012-03-172-0/+13
| | | | |
* | | | | Rubyracer does not work on ruby, so add it to Gemfile with :ruby platform onlyPiotr Sarnacki2012-03-171-1/+1
| | | | |
* | | | | Merge pull request #5489 from rdavila/fix_typo_activerecord_testJosé Valim2012-03-171-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Fix typo in ActiveRecord::Relation#blank? test
| * | | | | Fix typo in ActiveRecord::Relation#blank? testRuben Davila2012-03-171-1/+1
| | |_|_|/ | |/| | |
* | | | | Merge pull request #5488 from rafaelfranca/ad-sslJosé Valim2012-03-1710-11/+226
|\ \ \ \ \ | |/ / / / |/| | | | Remove Rack::SSL in favour of ActionDispatch::SSL
| * | | | Update the guides and CHANGELOGRafael Mendonça França2012-03-173-4/+8
| | | | |
| * | | | Whitespaces :scissors:Rafael Mendonça França2012-03-171-1/+1
| | | | |
| * | | | Some refactoring and update ActionDispatch::SSL code to use the Rack 1.4.xRafael Mendonça França2012-03-172-37/+13
| | | | |
| * | | | Rack::SSL -> ActionDispatch::SSLRafael Mendonça França2012-03-176-6/+241
|/ / / /
* | | | Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-03-171-1/+1
|\ \ \ \
| * | | | Updates 'modyfing' typo to 'modifying'Jonathan R. Wallace2012-03-171-1/+1
| | | | |
* | | | | Add missing requireSantiago Pastorino2012-03-171-0/+1
| | | | |
* | | | | Remove unused requireSantiago Pastorino2012-03-171-1/+0
| | | | |
* | | | | moves the guides up to the root directoryXavier Noria2012-03-17275-21/+21
|/ / / /
* | | | Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-03-176-453/+706
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: railties/guides/source/getting_started.textile