activesupport 2.1.2 → 2.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of activesupport might be problematic. Click here for more details.
- data/CHANGELOG +64 -5
- data/lib/active_support.rb +6 -6
- data/lib/active_support/base64.rb +13 -2
- data/lib/active_support/basic_object.rb +1 -1
- data/lib/active_support/buffered_logger.rb +15 -14
- data/lib/active_support/cache.rb +116 -40
- data/lib/active_support/cache/compressed_mem_cache_store.rb +7 -2
- data/lib/active_support/cache/file_store.rb +7 -5
- data/lib/active_support/cache/mem_cache_store.rb +48 -21
- data/lib/active_support/cache/memory_store.rb +16 -2
- data/lib/active_support/cache/synchronized_memory_store.rb +47 -0
- data/lib/active_support/callbacks.rb +14 -9
- data/lib/active_support/core_ext/array/access.rb +27 -0
- data/lib/active_support/core_ext/array/conversions.rb +12 -7
- data/lib/active_support/core_ext/array/grouping.rb +53 -10
- data/lib/active_support/core_ext/base64/encoding.rb +3 -0
- data/lib/active_support/core_ext/bigdecimal/conversions.rb +18 -22
- data/lib/active_support/core_ext/blank.rb +5 -0
- data/lib/active_support/core_ext/class/inheritable_attributes.rb +5 -5
- data/lib/active_support/core_ext/date/behavior.rb +3 -0
- data/lib/active_support/core_ext/date/calculations.rb +24 -9
- data/lib/active_support/core_ext/date_time/calculations.rb +19 -5
- data/lib/active_support/core_ext/duplicable.rb +6 -0
- data/lib/active_support/core_ext/enumerable.rb +42 -4
- data/lib/active_support/core_ext/file.rb +4 -20
- data/lib/active_support/core_ext/file/atomic.rb +46 -0
- data/lib/active_support/core_ext/float.rb +2 -0
- data/lib/active_support/core_ext/float/time.rb +27 -0
- data/lib/active_support/core_ext/hash.rb +2 -1
- data/lib/active_support/core_ext/hash/conversions.rb +1 -1
- data/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
- data/lib/active_support/core_ext/hash/except.rb +1 -1
- data/lib/active_support/core_ext/hash/reverse_merge.rb +12 -5
- data/lib/active_support/core_ext/hash/slice.rb +7 -4
- data/lib/active_support/core_ext/integer.rb +2 -0
- data/lib/active_support/core_ext/integer/time.rb +45 -0
- data/lib/active_support/core_ext/kernel/debugger.rb +4 -4
- data/lib/active_support/core_ext/logger.rb +128 -1
- data/lib/active_support/core_ext/module.rb +11 -1
- data/lib/active_support/core_ext/module/aliasing.rb +71 -67
- data/lib/active_support/core_ext/module/delegation.rb +32 -1
- data/lib/active_support/core_ext/module/introspection.rb +81 -66
- data/lib/active_support/core_ext/module/model_naming.rb +8 -7
- data/lib/active_support/core_ext/module/synchronization.rb +39 -0
- data/lib/active_support/core_ext/numeric/time.rb +0 -10
- data/lib/active_support/core_ext/object.rb +1 -0
- data/lib/active_support/core_ext/object/extending.rb +29 -7
- data/lib/active_support/core_ext/object/instance_variables.rb +1 -1
- data/lib/active_support/core_ext/object/metaclass.rb +13 -0
- data/lib/active_support/core_ext/object/misc.rb +36 -21
- data/lib/active_support/core_ext/rexml.rb +2 -2
- data/lib/active_support/core_ext/string.rb +6 -2
- data/lib/active_support/core_ext/string/access.rb +5 -5
- data/lib/active_support/core_ext/string/behavior.rb +13 -0
- data/lib/active_support/core_ext/string/inflections.rb +21 -2
- data/lib/active_support/core_ext/string/multibyte.rb +81 -0
- data/lib/active_support/core_ext/time/calculations.rb +39 -12
- data/lib/active_support/core_ext/time/conversions.rb +1 -0
- data/lib/active_support/core_ext/time/zones.rb +1 -1
- data/lib/active_support/dependencies.rb +178 -110
- data/lib/active_support/deprecation.rb +24 -4
- data/lib/active_support/inflector.rb +122 -38
- data/lib/active_support/json.rb +1 -1
- data/lib/active_support/json/encoders/date.rb +9 -2
- data/lib/active_support/json/encoders/date_time.rb +9 -2
- data/lib/active_support/json/encoders/time.rb +10 -3
- data/lib/active_support/locale/en.yml +32 -0
- data/lib/active_support/memoizable.rb +82 -0
- data/lib/active_support/multibyte.rb +31 -7
- data/lib/active_support/multibyte/chars.rb +664 -122
- data/lib/active_support/multibyte/exceptions.rb +8 -0
- data/lib/active_support/multibyte/unicode_database.rb +71 -0
- data/lib/active_support/option_merger.rb +2 -10
- data/lib/active_support/ordered_hash.rb +15 -0
- data/lib/active_support/rescuable.rb +108 -0
- data/lib/active_support/secure_random.rb +197 -0
- data/lib/active_support/string_inquirer.rb +11 -1
- data/lib/active_support/test_case.rb +16 -5
- data/lib/active_support/testing/core_ext/test.rb +6 -0
- data/lib/active_support/{core_ext → testing/core_ext}/test/unit/assertions.rb +14 -6
- data/lib/active_support/testing/performance.rb +452 -0
- data/lib/active_support/testing/setup_and_teardown.rb +34 -7
- data/lib/active_support/time_with_zone.rb +66 -42
- data/lib/active_support/values/time_zone.rb +11 -4
- data/lib/active_support/values/unicode_tables.dat +0 -0
- data/lib/active_support/vendor.rb +13 -5
- data/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +1 -1
- data/lib/active_support/vendor/i18n-0.0.1/i18n.rb +194 -0
- data/lib/active_support/vendor/i18n-0.0.1/i18n/backend/simple.rb +216 -0
- data/lib/active_support/vendor/i18n-0.0.1/i18n/exceptions.rb +53 -0
- data/lib/active_support/vendor/{memcache-client-1.5.0 → memcache-client-1.5.1}/memcache.rb +5 -5
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/data_timezone.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/data_timezone_info.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Africa/Algiers.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Africa/Cairo.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Africa/Casablanca.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Africa/Harare.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Africa/Johannesburg.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Africa/Monrovia.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Africa/Nairobi.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +0 -0
- data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +86 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Bogota.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Caracas.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Chicago.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Chihuahua.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Denver.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Godthab.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Guatemala.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Halifax.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Indiana/Indianapolis.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Juneau.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/La_Paz.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Lima.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Los_Angeles.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Mazatlan.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Mexico_City.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Monterrey.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/New_York.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Phoenix.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Regina.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Santiago.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Sao_Paulo.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/St_Johns.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/America/Tijuana.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Almaty.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Baghdad.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Baku.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Bangkok.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Chongqing.rb +0 -0
- data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +30 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Dhaka.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Hong_Kong.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Irkutsk.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Jakarta.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Jerusalem.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Kabul.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Kamchatka.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Karachi.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Katmandu.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Kolkata.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Krasnoyarsk.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Kuala_Lumpur.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Kuwait.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Magadan.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Muscat.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Novosibirsk.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Rangoon.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Riyadh.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Seoul.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Shanghai.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Singapore.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Taipei.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Tashkent.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Tbilisi.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Tehran.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Tokyo.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Ulaanbaatar.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Urumqi.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Vladivostok.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Yakutsk.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Yekaterinburg.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Asia/Yerevan.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Atlantic/Azores.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Atlantic/Cape_Verde.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Atlantic/South_Georgia.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Australia/Adelaide.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Australia/Brisbane.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Australia/Darwin.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Australia/Hobart.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Australia/Melbourne.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Australia/Perth.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Australia/Sydney.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Etc/UTC.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Amsterdam.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Athens.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Belgrade.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Berlin.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Bratislava.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Brussels.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Bucharest.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Budapest.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Copenhagen.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Dublin.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Helsinki.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Istanbul.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Kiev.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Lisbon.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Ljubljana.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/London.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Madrid.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Minsk.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Moscow.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Paris.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Prague.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Riga.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Rome.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Sarajevo.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Skopje.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Sofia.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Stockholm.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Tallinn.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Vienna.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Vilnius.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Warsaw.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Europe/Zagreb.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Pacific/Auckland.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Pacific/Fiji.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Pacific/Guam.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Pacific/Honolulu.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Pacific/Majuro.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Pacific/Midway.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Pacific/Noumea.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Pacific/Pago_Pago.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Pacific/Port_Moresby.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/definitions/Pacific/Tongatapu.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/info_timezone.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/linked_timezone.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/linked_timezone_info.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/offset_rationals.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/ruby_core_support.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/time_or_datetime.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/timezone.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/timezone_definition.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/timezone_info.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/timezone_offset_info.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/timezone_period.rb +0 -0
- data/lib/active_support/vendor/{tzinfo-0.3.11 → tzinfo-0.3.12}/tzinfo/timezone_transition_info.rb +0 -0
- data/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb +3 -3
- data/lib/active_support/version.rb +1 -1
- metadata +185 -167
- data/lib/active_support/clean_logger.rb +0 -127
- data/lib/active_support/core_ext/string/unicode.rb +0 -66
- data/lib/active_support/core_ext/test.rb +0 -1
- data/lib/active_support/multibyte/generators/generate_tables.rb +0 -149
- data/lib/active_support/multibyte/handlers/passthru_handler.rb +0 -9
- data/lib/active_support/multibyte/handlers/utf8_handler.rb +0 -564
- data/lib/active_support/multibyte/handlers/utf8_handler_proc.rb +0 -43
- data/lib/active_support/vendor/tzinfo-0.3.11/tzinfo/definitions/America/Argentina/San_Juan.rb +0 -170
| @@ -1,43 +0,0 @@ | |
| 1 | 
            -
            # Methods in this handler call functions in the utf8proc ruby extension. These are significantly faster than the
         | 
| 2 | 
            -
            # pure ruby versions. Chars automatically uses this handler when it can load the utf8proc extension. For
         | 
| 3 | 
            -
            # documentation on handler methods see UTF8Handler.
         | 
| 4 | 
            -
            class ActiveSupport::Multibyte::Handlers::UTF8HandlerProc < ActiveSupport::Multibyte::Handlers::UTF8Handler #:nodoc:
         | 
| 5 | 
            -
              class << self
         | 
| 6 | 
            -
                def normalize(str, form=ActiveSupport::Multibyte::DEFAULT_NORMALIZATION_FORM) #:nodoc:
         | 
| 7 | 
            -
                  codepoints = str.unpack('U*')
         | 
| 8 | 
            -
                  case form
         | 
| 9 | 
            -
                    when :d
         | 
| 10 | 
            -
                      utf8map(str, :stable)
         | 
| 11 | 
            -
                    when :c
         | 
| 12 | 
            -
                      utf8map(str, :stable, :compose)
         | 
| 13 | 
            -
                    when :kd
         | 
| 14 | 
            -
                      utf8map(str, :stable, :compat)
         | 
| 15 | 
            -
                    when :kc
         | 
| 16 | 
            -
                      utf8map(str, :stable, :compose, :compat)
         | 
| 17 | 
            -
                    else
         | 
| 18 | 
            -
                      raise ArgumentError, "#{form} is not a valid normalization variant", caller
         | 
| 19 | 
            -
                  end
         | 
| 20 | 
            -
                end
         | 
| 21 | 
            -
                
         | 
| 22 | 
            -
                def decompose(str) #:nodoc:
         | 
| 23 | 
            -
                  utf8map(str, :stable)
         | 
| 24 | 
            -
                end
         | 
| 25 | 
            -
                
         | 
| 26 | 
            -
                def downcase(str) #:nodoc:c
         | 
| 27 | 
            -
                  utf8map(str, :casefold)
         | 
| 28 | 
            -
                end
         | 
| 29 | 
            -
                
         | 
| 30 | 
            -
                protected
         | 
| 31 | 
            -
                
         | 
| 32 | 
            -
                def utf8map(str, *option_array) #:nodoc:
         | 
| 33 | 
            -
                  options = 0
         | 
| 34 | 
            -
                  option_array.each do |option|
         | 
| 35 | 
            -
                    flag = Utf8Proc::Options[option]
         | 
| 36 | 
            -
                    raise ArgumentError, "Unknown argument given to utf8map." unless
         | 
| 37 | 
            -
                      flag
         | 
| 38 | 
            -
                    options |= flag
         | 
| 39 | 
            -
                  end
         | 
| 40 | 
            -
                  return Utf8Proc::utf8map(str, options)
         | 
| 41 | 
            -
                end
         | 
| 42 | 
            -
              end
         | 
| 43 | 
            -
            end
         | 
    
        data/lib/active_support/vendor/tzinfo-0.3.11/tzinfo/definitions/America/Argentina/San_Juan.rb
    DELETED
    
    | @@ -1,170 +0,0 @@ | |
| 1 | 
            -
            require 'tzinfo/timezone_definition'
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            module TZInfo
         | 
| 4 | 
            -
              module Definitions
         | 
| 5 | 
            -
                module America
         | 
| 6 | 
            -
                  module Argentina
         | 
| 7 | 
            -
                    module San_Juan
         | 
| 8 | 
            -
                      include TimezoneDefinition
         | 
| 9 | 
            -
                      
         | 
| 10 | 
            -
                      timezone 'America/Argentina/San_Juan' do |tz|
         | 
| 11 | 
            -
                        tz.offset :o0, -16444, 0, :LMT
         | 
| 12 | 
            -
                        tz.offset :o1, -15408, 0, :CMT
         | 
| 13 | 
            -
                        tz.offset :o2, -14400, 0, :ART
         | 
| 14 | 
            -
                        tz.offset :o3, -14400, 3600, :ARST
         | 
| 15 | 
            -
                        tz.offset :o4, -10800, 0, :ART
         | 
| 16 | 
            -
                        tz.offset :o5, -10800, 3600, :ARST
         | 
| 17 | 
            -
                        tz.offset :o6, -14400, 0, :WART
         | 
| 18 | 
            -
                        
         | 
| 19 | 
            -
                        tz.transition 1894, 10, :o1, 52123666111, 21600
         | 
| 20 | 
            -
                        tz.transition 1920, 5, :o2, 1453467407, 600
         | 
| 21 | 
            -
                        tz.transition 1930, 12, :o3, 7278935, 3
         | 
| 22 | 
            -
                        tz.transition 1931, 4, :o2, 19411461, 8
         | 
| 23 | 
            -
                        tz.transition 1931, 10, :o3, 7279889, 3
         | 
| 24 | 
            -
                        tz.transition 1932, 3, :o2, 19414141, 8
         | 
| 25 | 
            -
                        tz.transition 1932, 11, :o3, 7281038, 3
         | 
| 26 | 
            -
                        tz.transition 1933, 3, :o2, 19417061, 8
         | 
| 27 | 
            -
                        tz.transition 1933, 11, :o3, 7282133, 3
         | 
| 28 | 
            -
                        tz.transition 1934, 3, :o2, 19419981, 8
         | 
| 29 | 
            -
                        tz.transition 1934, 11, :o3, 7283228, 3
         | 
| 30 | 
            -
                        tz.transition 1935, 3, :o2, 19422901, 8
         | 
| 31 | 
            -
                        tz.transition 1935, 11, :o3, 7284323, 3
         | 
| 32 | 
            -
                        tz.transition 1936, 3, :o2, 19425829, 8
         | 
| 33 | 
            -
                        tz.transition 1936, 11, :o3, 7285421, 3
         | 
| 34 | 
            -
                        tz.transition 1937, 3, :o2, 19428749, 8
         | 
| 35 | 
            -
                        tz.transition 1937, 11, :o3, 7286516, 3
         | 
| 36 | 
            -
                        tz.transition 1938, 3, :o2, 19431669, 8
         | 
| 37 | 
            -
                        tz.transition 1938, 11, :o3, 7287611, 3
         | 
| 38 | 
            -
                        tz.transition 1939, 3, :o2, 19434589, 8
         | 
| 39 | 
            -
                        tz.transition 1939, 11, :o3, 7288706, 3
         | 
| 40 | 
            -
                        tz.transition 1940, 3, :o2, 19437517, 8
         | 
| 41 | 
            -
                        tz.transition 1940, 7, :o3, 7289435, 3
         | 
| 42 | 
            -
                        tz.transition 1941, 6, :o2, 19441285, 8
         | 
| 43 | 
            -
                        tz.transition 1941, 10, :o3, 7290848, 3
         | 
| 44 | 
            -
                        tz.transition 1943, 8, :o2, 19447501, 8
         | 
| 45 | 
            -
                        tz.transition 1943, 10, :o3, 7293038, 3
         | 
| 46 | 
            -
                        tz.transition 1946, 3, :o2, 19455045, 8
         | 
| 47 | 
            -
                        tz.transition 1946, 10, :o3, 7296284, 3
         | 
| 48 | 
            -
                        tz.transition 1963, 10, :o2, 19506429, 8
         | 
| 49 | 
            -
                        tz.transition 1963, 12, :o3, 7315136, 3
         | 
| 50 | 
            -
                        tz.transition 1964, 3, :o2, 19507645, 8
         | 
| 51 | 
            -
                        tz.transition 1964, 10, :o3, 7316051, 3
         | 
| 52 | 
            -
                        tz.transition 1965, 3, :o2, 19510565, 8
         | 
| 53 | 
            -
                        tz.transition 1965, 10, :o3, 7317146, 3
         | 
| 54 | 
            -
                        tz.transition 1966, 3, :o2, 19513485, 8
         | 
| 55 | 
            -
                        tz.transition 1966, 10, :o3, 7318241, 3
         | 
| 56 | 
            -
                        tz.transition 1967, 4, :o2, 19516661, 8
         | 
| 57 | 
            -
                        tz.transition 1967, 10, :o3, 7319294, 3
         | 
| 58 | 
            -
                        tz.transition 1968, 4, :o2, 19519629, 8
         | 
| 59 | 
            -
                        tz.transition 1968, 10, :o3, 7320407, 3
         | 
| 60 | 
            -
                        tz.transition 1969, 4, :o2, 19522541, 8
         | 
| 61 | 
            -
                        tz.transition 1969, 10, :o4, 7321499, 3
         | 
| 62 | 
            -
                        tz.transition 1974, 1, :o5, 128142000
         | 
| 63 | 
            -
                        tz.transition 1974, 5, :o4, 136605600
         | 
| 64 | 
            -
                        tz.transition 1988, 12, :o5, 596948400
         | 
| 65 | 
            -
                        tz.transition 1989, 3, :o4, 605066400
         | 
| 66 | 
            -
                        tz.transition 1989, 10, :o5, 624423600
         | 
| 67 | 
            -
                        tz.transition 1990, 3, :o4, 636516000
         | 
| 68 | 
            -
                        tz.transition 1990, 10, :o5, 656478000
         | 
| 69 | 
            -
                        tz.transition 1991, 3, :o6, 667792800
         | 
| 70 | 
            -
                        tz.transition 1991, 5, :o4, 673588800
         | 
| 71 | 
            -
                        tz.transition 1991, 10, :o5, 687927600
         | 
| 72 | 
            -
                        tz.transition 1992, 3, :o4, 699415200
         | 
| 73 | 
            -
                        tz.transition 1992, 10, :o5, 719377200
         | 
| 74 | 
            -
                        tz.transition 1993, 3, :o4, 731469600
         | 
| 75 | 
            -
                        tz.transition 1999, 10, :o3, 938919600
         | 
| 76 | 
            -
                        tz.transition 2000, 3, :o4, 952052400
         | 
| 77 | 
            -
                        tz.transition 2004, 5, :o6, 1085972400
         | 
| 78 | 
            -
                        tz.transition 2004, 7, :o4, 1090728000
         | 
| 79 | 
            -
                        tz.transition 2007, 12, :o5, 1198983600
         | 
| 80 | 
            -
                        tz.transition 2008, 3, :o4, 1205632800
         | 
| 81 | 
            -
                        tz.transition 2008, 10, :o5, 1224385200
         | 
| 82 | 
            -
                        tz.transition 2009, 3, :o4, 1237082400
         | 
| 83 | 
            -
                        tz.transition 2009, 10, :o5, 1255834800
         | 
| 84 | 
            -
                        tz.transition 2010, 3, :o4, 1269136800
         | 
| 85 | 
            -
                        tz.transition 2010, 10, :o5, 1287284400
         | 
| 86 | 
            -
                        tz.transition 2011, 3, :o4, 1300586400
         | 
| 87 | 
            -
                        tz.transition 2011, 10, :o5, 1318734000
         | 
| 88 | 
            -
                        tz.transition 2012, 3, :o4, 1332036000
         | 
| 89 | 
            -
                        tz.transition 2012, 10, :o5, 1350788400
         | 
| 90 | 
            -
                        tz.transition 2013, 3, :o4, 1363485600
         | 
| 91 | 
            -
                        tz.transition 2013, 10, :o5, 1382238000
         | 
| 92 | 
            -
                        tz.transition 2014, 3, :o4, 1394935200
         | 
| 93 | 
            -
                        tz.transition 2014, 10, :o5, 1413687600
         | 
| 94 | 
            -
                        tz.transition 2015, 3, :o4, 1426384800
         | 
| 95 | 
            -
                        tz.transition 2015, 10, :o5, 1445137200
         | 
| 96 | 
            -
                        tz.transition 2016, 3, :o4, 1458439200
         | 
| 97 | 
            -
                        tz.transition 2016, 10, :o5, 1476586800
         | 
| 98 | 
            -
                        tz.transition 2017, 3, :o4, 1489888800
         | 
| 99 | 
            -
                        tz.transition 2017, 10, :o5, 1508036400
         | 
| 100 | 
            -
                        tz.transition 2018, 3, :o4, 1521338400
         | 
| 101 | 
            -
                        tz.transition 2018, 10, :o5, 1540090800
         | 
| 102 | 
            -
                        tz.transition 2019, 3, :o4, 1552788000
         | 
| 103 | 
            -
                        tz.transition 2019, 10, :o5, 1571540400
         | 
| 104 | 
            -
                        tz.transition 2020, 3, :o4, 1584237600
         | 
| 105 | 
            -
                        tz.transition 2020, 10, :o5, 1602990000
         | 
| 106 | 
            -
                        tz.transition 2021, 3, :o4, 1616292000
         | 
| 107 | 
            -
                        tz.transition 2021, 10, :o5, 1634439600
         | 
| 108 | 
            -
                        tz.transition 2022, 3, :o4, 1647741600
         | 
| 109 | 
            -
                        tz.transition 2022, 10, :o5, 1665889200
         | 
| 110 | 
            -
                        tz.transition 2023, 3, :o4, 1679191200
         | 
| 111 | 
            -
                        tz.transition 2023, 10, :o5, 1697338800
         | 
| 112 | 
            -
                        tz.transition 2024, 3, :o4, 1710640800
         | 
| 113 | 
            -
                        tz.transition 2024, 10, :o5, 1729393200
         | 
| 114 | 
            -
                        tz.transition 2025, 3, :o4, 1742090400
         | 
| 115 | 
            -
                        tz.transition 2025, 10, :o5, 1760842800
         | 
| 116 | 
            -
                        tz.transition 2026, 3, :o4, 1773540000
         | 
| 117 | 
            -
                        tz.transition 2026, 10, :o5, 1792292400
         | 
| 118 | 
            -
                        tz.transition 2027, 3, :o4, 1805594400
         | 
| 119 | 
            -
                        tz.transition 2027, 10, :o5, 1823742000
         | 
| 120 | 
            -
                        tz.transition 2028, 3, :o4, 1837044000
         | 
| 121 | 
            -
                        tz.transition 2028, 10, :o5, 1855191600
         | 
| 122 | 
            -
                        tz.transition 2029, 3, :o4, 1868493600
         | 
| 123 | 
            -
                        tz.transition 2029, 10, :o5, 1887246000
         | 
| 124 | 
            -
                        tz.transition 2030, 3, :o4, 1899943200
         | 
| 125 | 
            -
                        tz.transition 2030, 10, :o5, 1918695600
         | 
| 126 | 
            -
                        tz.transition 2031, 3, :o4, 1931392800
         | 
| 127 | 
            -
                        tz.transition 2031, 10, :o5, 1950145200
         | 
| 128 | 
            -
                        tz.transition 2032, 3, :o4, 1963447200
         | 
| 129 | 
            -
                        tz.transition 2032, 10, :o5, 1981594800
         | 
| 130 | 
            -
                        tz.transition 2033, 3, :o4, 1994896800
         | 
| 131 | 
            -
                        tz.transition 2033, 10, :o5, 2013044400
         | 
| 132 | 
            -
                        tz.transition 2034, 3, :o4, 2026346400
         | 
| 133 | 
            -
                        tz.transition 2034, 10, :o5, 2044494000
         | 
| 134 | 
            -
                        tz.transition 2035, 3, :o4, 2057796000
         | 
| 135 | 
            -
                        tz.transition 2035, 10, :o5, 2076548400
         | 
| 136 | 
            -
                        tz.transition 2036, 3, :o4, 2089245600
         | 
| 137 | 
            -
                        tz.transition 2036, 10, :o5, 2107998000
         | 
| 138 | 
            -
                        tz.transition 2037, 3, :o4, 2120695200
         | 
| 139 | 
            -
                        tz.transition 2037, 10, :o5, 2139447600
         | 
| 140 | 
            -
                        tz.transition 2038, 3, :o4, 29586043, 12
         | 
| 141 | 
            -
                        tz.transition 2038, 10, :o5, 19725709, 8
         | 
| 142 | 
            -
                        tz.transition 2039, 3, :o4, 29590411, 12
         | 
| 143 | 
            -
                        tz.transition 2039, 10, :o5, 19728621, 8
         | 
| 144 | 
            -
                        tz.transition 2040, 3, :o4, 29594779, 12
         | 
| 145 | 
            -
                        tz.transition 2040, 10, :o5, 19731589, 8
         | 
| 146 | 
            -
                        tz.transition 2041, 3, :o4, 29599147, 12
         | 
| 147 | 
            -
                        tz.transition 2041, 10, :o5, 19734501, 8
         | 
| 148 | 
            -
                        tz.transition 2042, 3, :o4, 29603515, 12
         | 
| 149 | 
            -
                        tz.transition 2042, 10, :o5, 19737413, 8
         | 
| 150 | 
            -
                        tz.transition 2043, 3, :o4, 29607883, 12
         | 
| 151 | 
            -
                        tz.transition 2043, 10, :o5, 19740325, 8
         | 
| 152 | 
            -
                        tz.transition 2044, 3, :o4, 29612335, 12
         | 
| 153 | 
            -
                        tz.transition 2044, 10, :o5, 19743237, 8
         | 
| 154 | 
            -
                        tz.transition 2045, 3, :o4, 29616703, 12
         | 
| 155 | 
            -
                        tz.transition 2045, 10, :o5, 19746149, 8
         | 
| 156 | 
            -
                        tz.transition 2046, 3, :o4, 29621071, 12
         | 
| 157 | 
            -
                        tz.transition 2046, 10, :o5, 19749117, 8
         | 
| 158 | 
            -
                        tz.transition 2047, 3, :o4, 29625439, 12
         | 
| 159 | 
            -
                        tz.transition 2047, 10, :o5, 19752029, 8
         | 
| 160 | 
            -
                        tz.transition 2048, 3, :o4, 29629807, 12
         | 
| 161 | 
            -
                        tz.transition 2048, 10, :o5, 19754941, 8
         | 
| 162 | 
            -
                        tz.transition 2049, 3, :o4, 29634259, 12
         | 
| 163 | 
            -
                        tz.transition 2049, 10, :o5, 19757853, 8
         | 
| 164 | 
            -
                        tz.transition 2050, 3, :o4, 29638627, 12
         | 
| 165 | 
            -
                      end
         | 
| 166 | 
            -
                    end
         | 
| 167 | 
            -
                  end
         | 
| 168 | 
            -
                end
         | 
| 169 | 
            -
              end
         | 
| 170 | 
            -
            end
         |