index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activesupport
/
lib
/
active_support
/
inflector.rb
Commit message (
Expand
)
Author
Age
Files
Lines
*
[Active Support] require_relative => require
Akira Matsuda
2017-10-21
1
-5
/
+5
*
[Active Support] `rubocop -a --only Layout/EmptyLineAfterMagicComment`
Koichi ITO
2017-07-11
1
-0
/
+1
*
Use frozen-string-literal in ActiveSupport
Kir Shatrov
2017-07-09
1
-0
/
+1
*
[Active Support] require => require_relative
Akira Matsuda
2017-07-01
1
-5
/
+5
*
applies new string literal convention in activesupport/lib
Xavier Noria
2016-08-06
1
-5
/
+5
*
Break up inflector to reduce the dependency burden on dependency-les methods ...
Yehuda Katz
2009-11-07
1
-407
/
+4
*
Fix that irregular plural inflections should not be double-pluralized: 'peopl...
Prem Sichanugrist
2009-08-09
1
-0
/
+3
*
Merge docrails
Pratik Naik
2009-07-25
1
-3
/
+3
*
ensure Inflector.camelize works with symbols [#2856 state:resolved]
Yehuda Katz + Carl Lerche
2009-07-01
1
-1
/
+1
*
Fix dependencies revealed by testing in isolation
Jeremy Kemper
2009-04-22
1
-1
/
+2
*
Convert string extension modules to class reopens
Jeremy Kemper
2009-04-22
1
-3
/
+0
*
Explicit dependency on multibyte String extension
Jeremy Kemper
2009-03-28
1
-0
/
+2
*
Simple singleton. We don't need the full monty.
Jeremy Kemper
2009-03-21
1
-2
/
+3
*
Make Inflector#parameterize correctly squeeze multi-character separators [#14...
Henrik N
2009-03-10
1
-5
/
+7
*
Handle every error that can come out of the Iconv branch by rescuing and retu...
Michael Koziarski
2009-02-06
1
-1
/
+1
*
Merge with docrails
Pratik Naik
2008-12-07
1
-1
/
+1
*
Ruby 1.9 compat: no Unicode normalization support yet
Jeremy Kemper
2008-11-26
1
-1
/
+8
*
The inflector is meant to work on words not phrases -- dont confuse people wi...
David Heinemeier Hansson
2008-11-16
1
-2
/
+0
*
Mark utf-8 encoding
Jeremy Kemper
2008-11-07
1
-0
/
+1
*
Avoid warnings by undefining the old method transliterate.
Michael Koziarski
2008-10-14
1
-0
/
+1
*
Reverse the order of the iconv arguments to remain compatible with older rubi...
Michael Koziarski
2008-10-14
1
-1
/
+1
*
Reduce memory usage slightly in String#parameterize
Michael Koziarski
2008-10-07
1
-5
/
+9
*
Extract transliteration code to a seperate method.
Michael Koziarski
2008-10-07
1
-2
/
+17
*
Modified ActiveSupport::Inflector#parameterize with code from slugalizer (htt...
Adam Cigánek
2008-09-23
1
-5
/
+11
*
Change call to String#chars in inflector to String#mb_chars.
Manfred Stienstra
2008-09-21
1
-1
/
+1
*
Flesh out the parameterize method to support non-ascii text and underscores.
Michael Koziarski
2008-09-11
1
-1
/
+1
*
Added Inflector#parameterize for easy slug generation ("Donald E. Knuth".para...
David Heinemeier Hansson
2008-09-10
1
-0
/
+19
*
Ruby 1.9: constantize takes advantage of new inherit arg to const_get and con...
Jeremy Kemper
2008-08-23
1
-24
/
+39
*
New inflectors will overwrite defaults [#337 state:resolved]
Peter Wagenet
2008-08-23
1
-0
/
+6
*
camelize(:lower) should always downcase first character. [#696 state:resolved]
Amos King
2008-08-22
1
-1
/
+1
*
JRuby: improve constantize performance. [#410 state:resolved]
Jeremy Kemper
2008-08-06
1
-5
/
+8
*
Add Inflection rules for String#humanize. [#535 state:resolved] [dcmanges]
Pratik Naik
2008-07-02
1
-4
/
+18
*
add special requires for ActiveSupport::Inflector so you can load it individu...
rick
2008-06-27
1
-0
/
+5
*
Qualify Inflector in rdoc examples also. [#356 state:resolved]
Jeremy Kemper
2008-06-06
1
-2
/
+2
*
Fix doc typo. Move extend self so it's more immediately obvious. Require infl...
Jeremy Kemper
2008-06-06
1
-4
/
+4
*
Namespace Inflector, Dependencies, OrderedOptions, and TimeZone under ActiveS...
Joshua Peek
2008-06-03
1
-262
/
+264
*
Merge docrails.
Pratik Naik
2008-05-25
1
-59
/
+59
*
Merge documentation changes from docrails.
Pratik Naik
2008-05-16
1
-0
/
+7
*
Merge docrails:
Pratik Naik
2008-05-09
1
-0
/
+5
*
Improve documentation coverage and markup
Xavier Noria
2008-05-02
1
-8
/
+19
*
Improve documentation.
Pratik Naik
2008-03-26
1
-1
/
+1
*
Slight camelize speedup [Pratik Naik]
Jeremy Kemper
2008-02-02
1
-1
/
+1
*
Improve documentation to classify to make it clear that it expects names to b...
Michael Koziarski
2008-01-08
1
-2
/
+5
*
Fixed String#titleize to work for strings with 's too (closes #10571) [trek]
David Heinemeier Hansson
2008-01-03
1
-1
/
+1
*
Fixed that pluralizing an empty string should return the same empty string, n...
David Heinemeier Hansson
2007-09-22
1
-1
/
+1
*
Some 1.9 forward compatibility
Jeremy Kemper
2007-09-14
1
-3
/
+3
*
Added support for pluralization with a different starting letter than the sin...
David Heinemeier Hansson
2007-06-23
1
-2
/
+9
*
Full test coverage for Inflector. Closes #7228.
Jeremy Kemper
2007-01-28
1
-3
/
+2
*
Document Inflector.ordinalize and merge docs from String inflections. Closes ...
Jeremy Kemper
2007-01-14
1
-18
/
+115
*
Normalize classify's argument to a String so that it plays nice with Symbols....
Marcel Molina
2006-05-22
1
-1
/
+1
[next]