aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Merge pull request #7244 from lucasuyezu/masterCarlos Antonio da Silva2012-08-153-2/+24
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix indentation on template errors to consider line number character count. For instance, when an error is shown, if the related source code snippet has line numbers from, lets say, 8-12, the lines are left aligned, which means the code indent is wrong: 8: foo 9: bar 10: raise 11: baz 12: ... This changes it to right align the source code snippet, so that the indentation is correct: 8: foo 9: bar 10: raise 11: baz 12: ...
| * | | Indentation should consider line number character count.Lucas Uyezu2012-08-133-2/+24
| | | |
* | | | Remove duplicated changelog entry [ci skip]Carlos Antonio da Silva2012-08-151-6/+0
| | | |
* | | | Move changelog entry to the top [ci skip]Carlos Antonio da Silva2012-08-151-5/+4
| | | |
* | | | Merge pull request #7133 from roshats/fix_update_all_with_blank_argumentCarlos Antonio da Silva2012-08-153-1/+11
|\ \ \ \ | | | | | | | | | | | | | | | Change Relation#update_all with blank argument to raise an ArgumentError instead of trying an update with empty fields.
| * | | | raise ArgumentError if list of attributes to change is empty in update_allRoman Shatsov2012-08-143-1/+11
| | | | |
* | | | | Add Request#formats=(extensions) that lets you set multiple formats directly ↵David Heinemeier Hansson2012-08-142-1/+36
| | | | | | | | | | | | | | | | | | | | in a prioritized order
* | | | | revises the contributing guide to document and encourage using the Rails ↵Xavier Noria2012-08-151-27/+33
| | | | | | | | | | | | | | | | | | | | development box
* | | | | Merge pull request #7349 from steveklabnik/masterRafael Mendonça França2012-08-141-3/+0
|\ \ \ \ \ | | | | | | | | | | | | No longer require AS::TestCase
| * | | | | We don't need to require AS::TestCaseSteve Klabnik2012-08-141-3/+0
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was only needed due to https://github.com/rails/rails/blob/6591a10b1f6eccc91bc01ab708050884058e9665/railties/lib/rails/console_app.rb#L6 We don't need that on master. Fixes #6907.
* | | | | Merge pull request #7184 from anthonyalberto/xml_dasherize_includeCarlos Antonio da Silva2012-08-143-1/+43
|\ \ \ \ \ | | | | | | | | | | | | to_xml dasherize option should be passed to included associations
| * | | | | Following the false issue reporting I did here : ↵Anthony2012-08-133-1/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/rails/rails/issues/6958 - Enable propagation of :skip_types, :dasherize and :camelize on included models by default - Adding the option to override this propagation on a per-include basis (:include => { :model => { :dasherize => false } } - Enough tests to prove it works - Updated activemodel CHANGELOG.md Squashed my commits
* | | | | | Some release notes love :heart:Rafael Mendonça França2012-08-141-0/+31
|/ / / / /
* | | | | Merge branch 'concerns'Rafael Mendonça França2012-08-136-30/+232
|\ \ \ \ \ | |_|/ / / |/| | | |
| * | | | Add CHANGELOG entry and documentation for Routing ConcernsRafael Mendonça França2012-08-133-0/+98
| | | | |
| * | | | Extract common controllers to abstract_unitRafael Mendonça França2012-08-133-45/+33
| | | | |
| * | | | Implementing Routing ConcernsRafael Mendonça França2012-08-132-1/+117
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | This pattern was introduced as a plugin by @dhh. The original implementation can be found in https://github.com/rails/routing_concerns
* | | | oops, should be directoryAaron Patterson2012-08-131-1/+1
| | | |
* | | | push header merge down to a private method so that live responses can have ↵Aaron Patterson2012-08-133-8/+22
| | | | | | | | | | | | | | | | their own header object
* | | | live response headers can be merged with a hashAaron Patterson2012-08-132-0/+10
| | | |
* | | | speed up cache directory creationAaron Patterson2012-08-131-3/+9
| | | | | | | | | | | | | | | | | | | | | | | | Let Rake control the cache directories. If the directory already exists, rake will skip creating it (vs the previous task which would always try to mkdir_p)
* | | | Merge pull request #7343 from egtann/masterRafael Mendonça França2012-08-133-1/+42
|\ \ \ \ | | | | | | | | | | Add start_hour and end_hour options for select_hour helper
| * | | | Add support for start_hour and end_hour options in select_hour helperEvan Tann2012-08-133-1/+42
|/ / / / | | | | | | | | | | | | Updated documentation to demonstrate start_hour and end_hour options
* | | | Merge pull request #7338 from sax/masterAaron Patterson2012-08-122-3/+23
|\ \ \ \ | | | | | | | | | | Evented notifications should take priority over Timed
| * | | | Evented notifications take priority over Timed notificationsEric Saxby2012-08-112-3/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In cases where a notification subscriber includes methods to support both Evented and Timed events, Evented should take priority over Timed. This allows subscribers to be backwards compatible (older Rails only allows Timed events) while defaulting to newer behavior.
* | | | | Merge pull request #7341 from edward/patch-1Rafael Mendonça França2012-08-121-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Grammar fix in ActionView Form Tag Helper docs/comments
| * | | | | Grammar fix in ActionView docs/commentsEdward Ocampo-Gooding2012-08-121-1/+1
|/ / / / /
* | | | | Merge pull request #7339 from maletor/patch-1Xavier Noria2012-08-121-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Missing closing tag
| * | | | | Missing closing tagEllis Berner2012-08-121-1/+1
|/ / / / /
* | | | | Merge pull request #6073 from daveyeu/restore-state-on-record-invalidRafael Mendonça França2012-08-113-1/+23
|\ \ \ \ \ | |/ / / / |/| | | | Restore state on create when ActiveRecord::RecordInvalid is raised
| * | | | Restore state on create when ActiveRecord::RecordInvalid is raisedDave Yeu2012-08-113-1/+23
|/ / / / | | | | | | | | | | | | This fixes issue #3217.
* | | | Ensure option_html_attributes does not modify the given option hashesCarlos Antonio da Silva2012-08-112-1/+10
| | | | | | | | | | | | | | | | We can avoid creating extra hashes with #merge, and use #merge! instead.
* | | | Simplify html attributes generation for options_for_selectCarlos Antonio da Silva2012-08-112-8/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Further simplify the option_html_attributes method after the changes introduced in dacbcbe55745aa9e5484b10b11f65ccca7db1c54 to not escape the html options here (since they're going to be escaped down the chain in content tag).
* | | | Refactor model name logic and make it a real private class methodCarlos Antonio da Silva2012-08-111-5/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Under a "private" call, class methods are not real private methods, they're public just like any other method. Make model_name_from_record_or_class a private class method, and nodoc it.
* | | | Sync CHANGELOGs [ci skip]Rafael Mendonça França2012-08-115-33/+231
| | | |
* | | | Add CHANGELOG entry for #7314Rafael Mendonça França2012-08-111-0/+5
| | | |
* | | | Merge pull request #7331 from ↵Vijay Dev2012-08-111-0/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | morgoth/changelog-for-engine-table-name-prefix-generator-fix Added changelog entry for table name prefix fix [ci skip]
| * | | | Added changelog entry for table name prefix fix [ci skip]Wojciech Wnętrzak2012-08-111-0/+3
|/ / / /
* | | | [guides] Add info about CHANGELOGs to contributing guidePiotr Sarnacki2012-08-111-0/+25
| | | |
* | | | Merge branch 'number-helpers-defaults'Carlos Antonio da Silva2012-08-116-36/+191
|\ \ \ \ | | | | | | | | | | | | | | | Closes #6290
| * | | | Ensure I18n format values always have precedence over defaultsCarlos Antonio da Silva2012-08-113-43/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Always merge I18n format values, namespaced or not, over the default ones, to ensure I18n format defaults will have precedence over our namespaced values. Precedence should happen like this: default :format default :namespace :format i18n :format i18n :namespace :format Because we cannot allow our namespaced default to override a I18n :format config - ie precision in I18n :format should always have higher precedence than our default precision for a particular :namespace. Also simplify default format options logic.
| * | | | Fallback to :en locale instead of handling a constant with defaultsCarlos Antonio da Silva2012-08-116-28/+179
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Action Pack already comes with a default locale fine for :en, that is always loaded. We can just fallback to this locale for defaults, if values for the current locale cannot be found. Closes #4420, #2802, #2890.
* | | | Bring back changelog entries for Active SupportCarlos Antonio da Silva2012-08-112-2/+20
| | | | | | | | | | | | | | | | Removed in 0228a73b1094a3e19ad291d2ce4789890c09578a, pull request #7310.
* | | | Merge pull request #7314 from schneems/schneems/form_for_errorRafael Mendonça França2012-08-102-0/+15
|\ \ \ \ | | | | | | | | | | Check for Blank Record in form_for
| * | | | check for nil or empty record in form_forschneems2012-08-102-0/+15
| | | | | | | | | | | | | | | | | | | | if nil or an empty array is passed into form_for you get a horrible error message, this one is much more indicative of what the programmer needs to know to fix the problem.
* | | | | Merge pull request #7329 from guilleiguaran/move-default-headers-ad-railtieRafael Mendonça França2012-08-103-5/+11
|\ \ \ \ \ | | | | | | | | | | | | Move AD default_headers configurations to railtie
| * | | | | Add doc for config.action_dispatch.default_headersGuillermo Iguaran2012-08-101-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add documentation for config.action_dispatch.default_headers to Rails Configuring guide.
| * | | | | Move AD default_headers configurations to railtieGuillermo Iguaran2012-08-102-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ActionDispatch railtie is a better place for config.action_dispatch.default_headers settings, users can continue overriding those settings in their configuration files if needed.
* | | | | | Further refactor build_conditions in route setCarlos Antonio da Silva2012-08-101-5/+3
|/ / / / / | | | | | | | | | | | | | | | | | | | | Return the conditions from the keep_if call, and ignore the value argument since it's not being used.
* | | | | fixup guides in light of :dependent changesJon Leighton2012-08-103-15/+19
| | | | |