aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/record_identifier.rb
Commit message (Collapse)AuthorAgeFilesLines
* Fix ActionView::RecordIdentifier to work as a singletonPiotr Sarnacki2012-08-281-0/+1
| | | | | We extend it with self, but the methods were not working properly were used directly on module.
* Add ActionView::ModelNamingPiotr Sarnacki2012-08-281-1/+1
| | | | | | | It's just a duplicate of ActionController::ModelNaming. These are just a simple helpers for decoupling Active Model, so it does not make sense to extract it to Active Support, but the point is to decouple also Action View and Action Pack
* Move ActionController::RecordIdentifier to ActionViewPiotr Sarnacki2012-08-281-0/+83
Since it's more about DOM classes and ids it belongs to Action View better. What's more, it's more convenient to make it part of Action View to follow the rule that Action Pack can depend on Action View, but not the other way round.