aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/vendor
Commit message (Collapse)AuthorAgeFilesLines
* Ruby 1.9 compat: rename deprecated assert_raises to assert_raise.Jeremy Kemper2009-03-082-15/+15
| | | | [#1617 state:resolved]
* Vendorize i18n 0.1.3 gem (fixes issues with incompatible character encodings ↵Sven Fuchs2009-02-2714-15/+48
| | | | | | in Ruby 1.9) (Akira Matsuda) [#2038 state:committed] Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Update bundled memcache-client from 1.5.0.5 to 1.6.4.99.Jeremy Kemper2009-02-231-129/+196
| | | | See http://www.mikeperham.com/2009/02/15/memcache-client-performance/
* add #available_locales to I18n and I18n::SimpleBackend, flatten translations ↵Sven Fuchs2009-01-253-1/+34
| | | | | | load_path when loading translations [#1714 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Update i18n gem to version 0.1.1 (Rails' changes were backported) [#1635 ↵Yaroslav Markin2008-12-2814-69/+880
| | | | | | state:committed] Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Updated included memcache-client to the 1.5.0.5 version which includes fixes ↵David Heinemeier Hansson2008-12-091-221/+240
| | | | | | from fiveruns and 37signals to deal with failover and timeouts (Joshua Sierles) [#1535 state:committed] Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Unbundled XmlSimpleJeremy Kemper2008-11-251-1021/+0
|
* Revert "Hack builder to look for fast_xs instead of insisting on its own ↵Jeremy Kemper2008-11-241-2/+2
| | | | | | String#to_xs" This reverts commit 5d3712a81e502f46b2745d238d9bb76fcdb31f5b.
* Hack builder to look for fast_xs instead of insisting on its own String#to_xsJeremy Kemper2008-11-231-2/+2
|
* Update bundled TZInfo to 0.3.12gbuesing2008-11-18139-170/+86
|
* use :en as a default locale (in favor of :en-US)Sven Fuchs2008-11-181-3/+3
| | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Increment the version of our modified memcache_client code to prevent users ↵Luca Guidi2008-11-061-3/+3
| | | | | | | | with the gem installed not seeing our changes. The changes will be submitted upstream. Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1239 state:committed]
* Proper API for reloading translationsDavid Heinemeier Hansson2008-10-292-1/+9
|
* Remove reload call from vendored gem. Breaks a bunch of stuff as Dispatcher ↵Michael Koziarski2008-10-281-4/+0
| | | | | | isn't always defined. This call will be moved into Dispatcher in a bit.
* A few more style changesDavid Heinemeier Hansson2008-10-281-4/+4
|
* Make I18n::Backend::Simple reload its translations in development mode [DHH]David Heinemeier Hansson2008-10-281-2/+9
|
* Follow style conventionsDavid Heinemeier Hansson2008-10-281-14/+14
|
* Bundle TzInfo version 0.3.11gbuesing2008-10-19139-200/+250
|
* Fix Brasilia timezone. [#1180 state:resolved]Pratik Naik2008-10-171-0/+171
|
* Made i18n simple backend able to store false values (and not confuse them ↵Tarmo Tänav2008-10-091-2/+14
| | | | | | | | | with nil or lack of value) Implemented support.array.skip_last_comma i18n key for Array#to_sentence, this also tests the ability to store false. Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* I18n: Introduce I18n.load_path in favor of I18n.load_translations and change ↵Sven Fuchs2008-09-202-12/+29
| | | | | | Simple backend to load translations lazily. [#1048 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* I18n: move old-style interpolation syntax deprecation to Active Record. ↵Sven Fuchs2008-09-201-7/+0
| | | | | | [#1044 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Add the Asia/Colombo definition from the tzinfo gemJamis Buck2008-09-111-0/+30
|
* Deprecate %d and %s in message interpolation, but only in the bundled i18n lib.Jeremy Kemper2008-09-041-2/+7
|
* I18n: applied Luca Guidi's patch for better #interpolate performanceSven Fuchs2008-08-301-17/+20
| | | | | | [#943 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* I18n: remove #populate from Simple backend as wellMarko Seppae2008-08-271-7/+0
|
* I18n: removed #populate and #store_translations from apiMarko Seppae2008-08-272-13/+4
|
* update i18n gemSven Fuchs2008-08-252-175/+173
|
* Ruby 1.9 compat: update bundled i18n libJeremy Kemper2008-08-232-168/+174
|
* Ruby 1.9: silence some warnings for block args shadowing local varsJeremy Kemper2008-08-232-7/+7
|
* I18n: use :other instead of :many as default key for pluralization to better ↵Sven Fuchs2008-08-231-1/+1
| | | | | | conform w/ cldr pluralization rules Signed-off-by: Michael Koziarski <michael@koziarski.com>
* remove warning in i18n gemSven Fuchs2008-08-201-1/+1
|
* switch to class and instance instead of a module for the simple backendSven Fuchs2008-08-192-169/+169
|
* fix bug in I18n::Backend::Simple (A default array of non-existant keys ↵Sven Fuchs2008-08-131-1/+1
| | | | returns the default array)
* update activesupport/vendor i18n gemSven Fuchs2008-08-132-3/+20
|
* update i18n gem and clean up dir structure within i18n-0.0.1Sven Fuchs2008-08-1010-694/+47
|
* Fix some warnings in i18n libJoshua Peek2008-07-192-5/+5
|
* Merge branch 'master' into i18n-mergeJeremy Kemper2008-07-178-11/+11
|\ | | | | | | | | | | | | Conflicts: actionpack/lib/action_view/helpers/form_options_helper.rb activerecord/lib/active_record/validations.rb
| * Merge with docrails.Pratik Naik2008-07-168-11/+11
| |
* | add i18n lib filesSven Fuchs2008-07-1610-0/+1064
| |
* | remove i18n lib subprojectSven Fuchs2008-07-161-0/+0
| |
* | align with changes in i18nSven Fuchs2008-07-061-0/+0
| |
* | remove core extensions in favor of I18n#translate and I18n#localizeSven Fuchs2008-07-021-0/+0
| |
* | incorporate #translate usage with several default keysSven Fuchs2008-06-211-0/+0
| | | | | | | | | | (use first default key that resolves to a translation). this might, depending on the backend implementation save some expensive lookups (like db lookups)
* | Changed process of storing translations from theSven Fuchs2008-06-211-0/+0
| | | | | | | | | | | | | | | | | | client libraries to the backend: clients now can pass a block to backend#populate which can contain code to load and register translations. This makes sense for backends that persist their translations (e.g. to db) so the repeated loading and passing of translations throughout the server startup would be wasted resources.
* | rename Backend::Simple#add_translations to set_translationsSven Fuchs2008-06-201-0/+0
| | | | | | | | because it overwrites existing translations
* | integrating I18n into RailsSven Fuchs2008-06-191-0/+0
|/
* Updated bundled TZInfo gem to version 0.3.9 for Ruby 1.9 compatJoshua Peek2008-06-14136-107/+113
|
* - Updated tzinfo to use Rational() instead of Rational.new! due to "private ↵Nate Wiger2008-05-191-57/+57
| | | | | | method new!" in Ruby 1.9 - Added ^object_id$ as ignore pattern to fixing "redefining object_id" issue in Ruby 1.9 Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Ruby 1.9 compat: don't shadow local with block varJeremy Kemper2008-05-011-4/+4
|