aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/inflector/methods.rb
Commit message (Expand)AuthorAgeFilesLines
* Replace with gsub! in ActiveSupport::Inflector.Elben Shira2013-12-101-1/+2
* Add +capitalize+ option to Inflector.humanizeclaudiob2013-11-061-9/+15
* Fix doc for singularize - `pluralized` => `singularized`Vipul A M2013-08-271-1/+1
* Speed up AS::Inflector.underscoreAkira Matsuda2013-07-101-2/+1
* Speedup AS::Inflector.camelizeAkira Matsuda2013-07-101-1/+3
* Speedup AS::Inflector.deconstantizeAkira Matsuda2013-07-101-1/+1
* Merge pull request #10542 from waseem/remove_requireCarlos Antonio da Silva2013-06-251-1/+0
|\
| * Remove unnecessary require from active_support/inflector/methods.rbWaseem Ahmad2013-05-101-1/+0
* | Updated the doc for const_regexp [ci skip]Arun Agrawal2013-06-151-1/+3
* | Changing const_regexp to check for constant name.Arun Agrawal2013-06-151-0/+3
* | Fix #10932. Treat "" and "::" as invalid on constantizeNikolay Shebanov2013-06-141-1/+6
|/
* Revert "Merge pull request #8156 from fredwu/acronym_fix-master"Steve Klabnik2013-03-161-1/+1
* Fixed a bug where the inflector would replace camelCase strings and disregard...Fred Wu2013-03-171-1/+1
* Remove unnecessary begin..rescue..end, use only rescueAkira Matsuda2013-01-061-8/+6
* Refactor Inflector#ordinal to avoid converting the number twiceCarlos Antonio da Silva2012-11-041-2/+4
* update AS/inflector docs [ci skip]Francesco Rodriguez2012-09-141-89/+97
* Make ActiveSupport::Inflector locale aware and multilingualDavid Celis2012-07-301-6/+16
* make sure the inflection rules are loaded when cherry-picking active_support/...Xavier Noria2012-06-291-0/+1
* Fix warning: shadowing outer local variable - constant.kennyj2012-05-191-3/+3
* Handle case where ancestor is not the end of the chainAndrew White2012-05-191-7/+12
* Fix constantize so top level constants are looked up properly.Marc-Andre Lafortune2012-05-191-1/+1
* Make constantize look down the ancestor chain (excluding Object)Marc-Andre Lafortune2012-05-191-1/+13
* removing unnecessary 'examples' noise from activesupportFrancesco Rodriguez2012-05-131-13/+0
* fix typo in ActiveSupport::Inflector#titleizeFrancesco Rodriguez2012-04-281-1/+1
* revises the regexp used in titleizeXavier Noria2012-04-071-1/+1
* Updated/changed useless tr/gsubsJurriaan Pruis2012-04-031-1/+1
* Fix typoArtyom Bolshakov2012-04-031-1/+1
* String#titleize works properly with smart quotes, closes #5584Vasiliy Ermolovich2012-03-261-2/+4
* Inflector/constantize - inject method lets us to avoid using another variablehoma2012-02-281-5/+3
* prefer tr to gsub for replacing charactersXavier Noria2012-02-121-2/+2
* inflection regexp are meant to be applied onceXavier Noria2012-02-121-2/+2
* removes redundant argumentXavier Noria2012-02-121-1/+1
* boosts inflectionsXavier Noria2012-02-121-1/+1
* Add ActiveSupport::Inflector.ordinal and Integer#ordinalTim Gildea2012-02-041-10/+24
* There is an "inherit" option on const_get too, why not use it?Semyon Perepelitsa2012-01-311-1/+1
* safe_constantize should handle wrong constant name NameErrors Fixes #4710Alex Tambellini2012-01-261-1/+1
* global variables may not be set depending on the match. fixes #4703Aaron Patterson2012-01-261-1/+4
* Change ActiveRecord::Errors to ActiveModel::Errors in guidesCarlos Antonio da Silva2012-01-251-6/+6
* remove ruby 1.8 checking in constantize methodVasiliy Ermolovich2011-12-291-39/+24
* fix typo again (Thanks Phillip Oertel)Vijay Dev2011-11-081-1/+1
* fix typoVijay Dev2011-11-061-1/+1
* Refactored pluralize and singularize into a common method.Henrik Hodne2011-11-061-16/+18
* defines Module#qualified_const_(defined?|get|set) and String#deconstantizeXavier Noria2011-10-291-6/+23
* let demodulize do less work, and add testsXavier Noria2011-10-291-1/+3
* Update CHANGELOG for safe_constantize.José Valim2011-09-231-1/+4
* Ensure that constantize just rescues NameError that applies to the constant b...José Valim2011-09-231-4/+20
* Added ActiveSupport::Inflector.safe_constantize and String#safe_constantize; ...Ryan Oblak2011-09-231-0/+27
* Revert removing gsub and sub from safe buffer.José Valim2011-09-081-24/+8
* remove support of symbols on classify and camelizeDamien Mathieu2011-09-081-0/+16
* make gsub and sub unavailable in SafeBuffers - Closes #1555Damien Mathieu2011-09-081-8/+8