activesupport 3.0.pre → 3.0.0.rc
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activesupport might be problematic. Click here for more details.
- data/CHANGELOG +121 -1
- data/README.rdoc +33 -0
- data/lib/active_support.rb +42 -4
- data/lib/active_support/backtrace_cleaner.rb +31 -9
- data/lib/active_support/benchmarkable.rb +1 -0
- data/lib/active_support/buffered_logger.rb +5 -2
- data/lib/active_support/builder.rb +6 -0
- data/lib/active_support/cache.rb +454 -84
- data/lib/active_support/cache/compressed_mem_cache_store.rb +6 -13
- data/lib/active_support/cache/file_store.rb +140 -41
- data/lib/active_support/cache/mem_cache_store.rb +121 -76
- data/lib/active_support/cache/memory_store.rb +127 -27
- data/lib/active_support/cache/strategy/local_cache.rb +111 -58
- data/lib/active_support/cache/synchronized_memory_store.rb +2 -38
- data/lib/active_support/callbacks.rb +105 -76
- data/lib/active_support/configurable.rb +19 -18
- data/lib/active_support/core_ext/array.rb +1 -0
- data/lib/active_support/core_ext/array/access.rb +1 -1
- data/lib/active_support/core_ext/array/conversions.rb +29 -54
- data/lib/active_support/core_ext/array/extract_options.rb +16 -1
- data/lib/active_support/core_ext/array/grouping.rb +1 -1
- data/lib/active_support/core_ext/array/random_access.rb +26 -5
- data/lib/active_support/core_ext/array/uniq_by.rb +17 -0
- data/lib/active_support/core_ext/array/wrap.rb +13 -9
- data/lib/active_support/core_ext/benchmark.rb +0 -12
- data/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +2 -0
- data/lib/active_support/core_ext/class.rb +2 -1
- data/lib/active_support/core_ext/class/attribute.rb +67 -0
- data/lib/active_support/core_ext/class/attribute_accessors.rb +33 -27
- data/lib/active_support/core_ext/class/delegating_attributes.rb +35 -41
- data/lib/active_support/core_ext/class/inheritable_attributes.rb +23 -14
- data/lib/active_support/core_ext/class/subclasses.rb +50 -0
- data/lib/active_support/core_ext/date/calculations.rb +35 -12
- data/lib/active_support/core_ext/date/conversions.rb +5 -5
- data/lib/active_support/core_ext/date/zones.rb +14 -0
- data/lib/active_support/core_ext/date_time/calculations.rb +3 -1
- data/lib/active_support/core_ext/date_time/conversions.rb +24 -5
- data/lib/active_support/core_ext/date_time/zones.rb +4 -0
- data/lib/active_support/core_ext/enumerable.rb +5 -9
- data/lib/active_support/core_ext/exception.rb +0 -47
- data/lib/active_support/core_ext/file.rb +1 -0
- data/lib/active_support/core_ext/file/atomic.rb +3 -2
- data/lib/active_support/core_ext/file/path.rb +5 -0
- data/lib/active_support/core_ext/float/rounding.rb +3 -2
- data/lib/active_support/core_ext/hash/conversions.rb +65 -145
- data/lib/active_support/core_ext/hash/deep_merge.rb +6 -7
- data/lib/active_support/core_ext/hash/except.rb +8 -1
- data/lib/active_support/core_ext/hash/indifferent_access.rb +5 -0
- data/lib/active_support/core_ext/hash/keys.rb +10 -11
- data/lib/active_support/core_ext/hash/slice.rb +6 -0
- data/lib/active_support/core_ext/integer.rb +1 -1
- data/lib/active_support/core_ext/integer/multiple.rb +6 -0
- data/lib/active_support/core_ext/kernel.rb +1 -1
- data/lib/active_support/core_ext/kernel/debugger.rb +3 -2
- data/lib/active_support/core_ext/kernel/reporting.rb +2 -1
- data/lib/active_support/core_ext/kernel/requires.rb +2 -2
- data/lib/active_support/core_ext/kernel/singleton_class.rb +13 -0
- data/lib/active_support/core_ext/load_error.rb +17 -30
- data/lib/active_support/core_ext/logger.rb +2 -40
- data/lib/active_support/core_ext/module.rb +5 -3
- data/lib/active_support/core_ext/module/aliasing.rb +1 -1
- data/lib/active_support/core_ext/module/anonymous.rb +24 -0
- data/lib/active_support/core_ext/module/attr_accessor_with_default.rb +1 -1
- data/lib/active_support/core_ext/module/attr_internal.rb +2 -2
- data/lib/active_support/core_ext/module/attribute_accessors.rb +20 -22
- data/lib/active_support/core_ext/module/delegation.rb +21 -10
- data/lib/active_support/core_ext/module/introspection.rb +8 -8
- data/lib/active_support/core_ext/module/method_names.rb +14 -0
- data/lib/active_support/core_ext/module/reachable.rb +10 -0
- data/lib/active_support/core_ext/module/remove_method.rb +11 -0
- data/lib/active_support/core_ext/module/synchronization.rb +2 -1
- data/lib/active_support/core_ext/name_error.rb +3 -1
- data/lib/active_support/core_ext/object.rb +5 -3
- data/lib/active_support/core_ext/object/blank.rb +20 -2
- data/lib/active_support/core_ext/object/conversions.rb +2 -16
- data/lib/active_support/core_ext/object/duplicable.rb +23 -1
- data/lib/active_support/core_ext/object/instance_variables.rb +0 -7
- data/lib/active_support/core_ext/object/to_json.rb +19 -0
- data/lib/active_support/core_ext/object/to_param.rb +49 -0
- data/lib/active_support/core_ext/object/to_query.rb +27 -0
- data/lib/active_support/core_ext/object/with_options.rb +2 -0
- data/lib/active_support/core_ext/proc.rb +4 -4
- data/lib/active_support/core_ext/range/overlaps.rb +1 -1
- data/lib/active_support/core_ext/regexp.rb +0 -22
- data/lib/active_support/core_ext/rexml.rb +4 -1
- data/lib/active_support/core_ext/string.rb +3 -2
- data/lib/active_support/core_ext/string/access.rb +4 -2
- data/lib/active_support/core_ext/string/conversions.rb +28 -1
- data/lib/active_support/core_ext/string/encoding.rb +11 -0
- data/lib/active_support/core_ext/string/exclude.rb +6 -0
- data/lib/active_support/core_ext/string/filters.rb +29 -0
- data/lib/active_support/core_ext/string/inflections.rb +12 -12
- data/lib/active_support/core_ext/string/interpolation.rb +2 -92
- data/lib/active_support/core_ext/string/multibyte.rb +16 -19
- data/lib/active_support/core_ext/string/output_safety.rb +101 -35
- data/lib/active_support/core_ext/string/starts_ends_with.rb +0 -14
- data/lib/active_support/core_ext/string/xchar.rb +1 -1
- data/lib/active_support/core_ext/time/calculations.rb +14 -7
- data/lib/active_support/core_ext/time/conversions.rb +1 -0
- data/lib/active_support/core_ext/time/marshal.rb +56 -0
- data/lib/active_support/core_ext/time/zones.rb +2 -5
- data/lib/active_support/core_ext/uri.rb +10 -4
- data/lib/active_support/dependencies.rb +200 -197
- data/lib/active_support/dependencies/autoload.rb +50 -0
- data/lib/active_support/deprecation/behaviors.rb +13 -9
- data/lib/active_support/deprecation/method_wrappers.rb +10 -9
- data/lib/active_support/deprecation/proxy_wrappers.rb +7 -0
- data/lib/active_support/deprecation/reporting.rb +5 -3
- data/lib/active_support/descendants_tracker.rb +43 -0
- data/lib/active_support/duration.rb +8 -4
- data/lib/active_support/file_update_checker.rb +36 -0
- data/lib/active_support/hash_with_indifferent_access.rb +9 -1
- data/lib/active_support/i18n.rb +9 -0
- data/lib/active_support/i18n_railtie.rb +81 -0
- data/lib/active_support/inflections.rb +1 -1
- data/lib/active_support/inflector.rb +4 -407
- data/lib/active_support/inflector/inflections.rb +211 -0
- data/lib/active_support/inflector/methods.rb +151 -0
- data/lib/active_support/inflector/transliterate.rb +97 -0
- data/lib/active_support/json/backends/jsongem.rb +12 -9
- data/lib/active_support/json/backends/yajl.rb +40 -0
- data/lib/active_support/json/backends/yaml.rb +1 -1
- data/lib/active_support/json/decoding.rb +17 -2
- data/lib/active_support/json/encoding.rb +48 -31
- data/lib/active_support/json/variable.rb +2 -4
- data/lib/active_support/lazy_load_hooks.rb +27 -0
- data/lib/active_support/locale/en.yml +5 -2
- data/lib/active_support/log_subscriber.rb +123 -0
- data/lib/active_support/log_subscriber/test_helper.rb +99 -0
- data/lib/active_support/memoizable.rb +1 -1
- data/lib/active_support/message_encryptor.rb +1 -0
- data/lib/active_support/message_verifier.rb +2 -1
- data/lib/active_support/multibyte.rb +8 -23
- data/lib/active_support/multibyte/chars.rb +213 -446
- data/lib/active_support/multibyte/unicode.rb +392 -0
- data/lib/active_support/multibyte/utils.rb +6 -7
- data/lib/active_support/notifications.rb +29 -122
- data/lib/active_support/notifications/fanout.rb +61 -0
- data/lib/active_support/notifications/instrumenter.rb +54 -0
- data/lib/active_support/ordered_hash.rb +59 -14
- data/lib/active_support/ordered_options.rb +6 -0
- data/lib/active_support/railtie.rb +60 -0
- data/lib/active_support/rescuable.rb +7 -4
- data/lib/active_support/ruby/shim.rb +4 -6
- data/lib/active_support/test_case.rb +2 -7
- data/lib/active_support/testing/assertions.rb +15 -0
- data/lib/active_support/testing/declarative.rb +1 -1
- data/lib/active_support/testing/isolation.rb +64 -17
- data/lib/active_support/testing/performance.rb +306 -335
- data/lib/active_support/testing/setup_and_teardown.rb +51 -29
- data/lib/active_support/time.rb +24 -3
- data/lib/active_support/time_with_zone.rb +10 -14
- data/lib/active_support/values/time_zone.rb +192 -234
- data/lib/active_support/values/unicode_tables.dat +0 -0
- data/lib/active_support/version.rb +3 -2
- data/lib/active_support/whiny_nil.rb +9 -7
- data/lib/active_support/xml_mini.rb +130 -1
- data/lib/active_support/xml_mini/jdom.rb +2 -0
- data/lib/active_support/xml_mini/libxml.rb +23 -86
- data/lib/active_support/xml_mini/libxmlsax.rb +85 -0
- data/lib/active_support/xml_mini/nokogiri.rb +27 -24
- data/lib/active_support/xml_mini/nokogirisax.rb +83 -0
- data/lib/active_support/xml_mini/rexml.rb +8 -2
- metadata +62 -195
- data/README +0 -43
- data/lib/active_support/autoload.rb +0 -28
- data/lib/active_support/core_ext/boolean.rb +0 -1
- data/lib/active_support/core_ext/boolean/conversions.rb +0 -11
- data/lib/active_support/core_ext/class/removal.rb +0 -53
- data/lib/active_support/core_ext/date.rb +0 -7
- data/lib/active_support/core_ext/date_time.rb +0 -5
- data/lib/active_support/core_ext/integer/even_odd.rb +0 -16
- data/lib/active_support/core_ext/kernel/daemonizing.rb +0 -7
- data/lib/active_support/core_ext/module/inclusion.rb +0 -30
- data/lib/active_support/core_ext/module/loading.rb +0 -23
- data/lib/active_support/core_ext/nil.rb +0 -1
- data/lib/active_support/core_ext/nil/conversions.rb +0 -5
- data/lib/active_support/core_ext/object/extending.rb +0 -80
- data/lib/active_support/core_ext/object/metaclass.rb +0 -13
- data/lib/active_support/core_ext/object/misc.rb +0 -3
- data/lib/active_support/core_ext/object/returning.rb +0 -42
- data/lib/active_support/core_ext/object/tap.rb +0 -16
- data/lib/active_support/core_ext/string/bytesize.rb +0 -5
- data/lib/active_support/core_ext/string/iterators.rb +0 -13
- data/lib/active_support/core_ext/symbol.rb +0 -1
- data/lib/active_support/core_ext/symbol/to_proc.rb +0 -14
- data/lib/active_support/core_ext/time.rb +0 -10
- data/lib/active_support/core_ext/time/marshal_with_utc_flag.rb +0 -22
- data/lib/active_support/deprecated_callbacks.rb +0 -283
- data/lib/active_support/multibyte/unicode_database.rb +0 -71
- data/lib/active_support/vendor.rb +0 -16
- data/lib/active_support/vendor/builder-2.1.2/lib/blankslate.rb +0 -113
- data/lib/active_support/vendor/builder-2.1.2/lib/builder.rb +0 -13
- data/lib/active_support/vendor/builder-2.1.2/lib/builder/blankslate.rb +0 -20
- data/lib/active_support/vendor/builder-2.1.2/lib/builder/css.rb +0 -250
- data/lib/active_support/vendor/builder-2.1.2/lib/builder/xchar.rb +0 -115
- data/lib/active_support/vendor/builder-2.1.2/lib/builder/xmlbase.rb +0 -139
- data/lib/active_support/vendor/builder-2.1.2/lib/builder/xmlevents.rb +0 -63
- data/lib/active_support/vendor/builder-2.1.2/lib/builder/xmlmarkup.rb +0 -328
- data/lib/active_support/vendor/i18n-0.1.3/MIT-LICENSE +0 -20
- data/lib/active_support/vendor/i18n-0.1.3/README.textile +0 -20
- data/lib/active_support/vendor/i18n-0.1.3/Rakefile +0 -5
- data/lib/active_support/vendor/i18n-0.1.3/i18n.gemspec +0 -27
- data/lib/active_support/vendor/i18n-0.1.3/lib/i18n.rb +0 -204
- data/lib/active_support/vendor/i18n-0.1.3/lib/i18n/backend/simple.rb +0 -215
- data/lib/active_support/vendor/i18n-0.1.3/lib/i18n/exceptions.rb +0 -53
- data/lib/active_support/vendor/i18n-0.1.3/test/all.rb +0 -5
- data/lib/active_support/vendor/i18n-0.1.3/test/i18n_exceptions_test.rb +0 -99
- data/lib/active_support/vendor/i18n-0.1.3/test/i18n_test.rb +0 -124
- data/lib/active_support/vendor/i18n-0.1.3/test/locale/en.rb +0 -1
- data/lib/active_support/vendor/i18n-0.1.3/test/locale/en.yml +0 -3
- data/lib/active_support/vendor/i18n-0.1.3/test/simple_backend_test.rb +0 -567
- data/lib/active_support/vendor/memcache-client-1.7.5/lib/memcache.rb +0 -1133
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo.rb +0 -33
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/data_timezone.rb +0 -47
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/data_timezone_info.rb +0 -228
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Africa/Algiers.rb +0 -55
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Africa/Cairo.rb +0 -219
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Africa/Casablanca.rb +0 -42
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Africa/Harare.rb +0 -18
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Africa/Johannesburg.rb +0 -25
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Africa/Monrovia.rb +0 -22
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Africa/Nairobi.rb +0 -23
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +0 -166
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Argentina/San_Juan.rb +0 -86
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Bogota.rb +0 -23
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Caracas.rb +0 -23
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Chicago.rb +0 -283
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Chihuahua.rb +0 -136
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Denver.rb +0 -204
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Godthab.rb +0 -161
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Guatemala.rb +0 -27
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Halifax.rb +0 -274
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Indiana/Indianapolis.rb +0 -149
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Juneau.rb +0 -194
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/La_Paz.rb +0 -22
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Lima.rb +0 -35
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Los_Angeles.rb +0 -232
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Mazatlan.rb +0 -139
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Mexico_City.rb +0 -144
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Monterrey.rb +0 -131
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/New_York.rb +0 -282
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Phoenix.rb +0 -30
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Regina.rb +0 -74
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Santiago.rb +0 -205
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Sao_Paulo.rb +0 -171
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/St_Johns.rb +0 -288
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Tijuana.rb +0 -196
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Almaty.rb +0 -67
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Baghdad.rb +0 -73
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Baku.rb +0 -161
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Bangkok.rb +0 -20
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Chongqing.rb +0 -33
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Colombo.rb +0 -30
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Dhaka.rb +0 -27
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Hong_Kong.rb +0 -87
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Irkutsk.rb +0 -165
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Jakarta.rb +0 -30
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Jerusalem.rb +0 -163
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Kabul.rb +0 -20
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Kamchatka.rb +0 -163
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Karachi.rb +0 -32
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Kathmandu.rb +0 -20
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Kolkata.rb +0 -25
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Krasnoyarsk.rb +0 -163
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Kuala_Lumpur.rb +0 -31
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Kuwait.rb +0 -18
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Magadan.rb +0 -163
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Muscat.rb +0 -18
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Novosibirsk.rb +0 -164
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Rangoon.rb +0 -24
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Riyadh.rb +0 -18
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Seoul.rb +0 -34
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Shanghai.rb +0 -35
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Singapore.rb +0 -33
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Taipei.rb +0 -59
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Tashkent.rb +0 -47
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Tbilisi.rb +0 -78
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Tehran.rb +0 -121
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Tokyo.rb +0 -30
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Ulaanbaatar.rb +0 -65
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Urumqi.rb +0 -33
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Vladivostok.rb +0 -164
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Yakutsk.rb +0 -163
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Yekaterinburg.rb +0 -165
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Yerevan.rb +0 -165
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Atlantic/Azores.rb +0 -270
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Atlantic/Cape_Verde.rb +0 -23
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Atlantic/South_Georgia.rb +0 -18
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Australia/Adelaide.rb +0 -187
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Australia/Brisbane.rb +0 -35
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Australia/Darwin.rb +0 -29
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Australia/Hobart.rb +0 -193
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Australia/Melbourne.rb +0 -185
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Australia/Perth.rb +0 -37
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Australia/Sydney.rb +0 -185
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Etc/UTC.rb +0 -16
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Amsterdam.rb +0 -228
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Athens.rb +0 -185
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Belgrade.rb +0 -163
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Berlin.rb +0 -188
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Bratislava.rb +0 -13
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Brussels.rb +0 -232
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Bucharest.rb +0 -181
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Budapest.rb +0 -197
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Copenhagen.rb +0 -179
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Dublin.rb +0 -276
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Helsinki.rb +0 -163
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Istanbul.rb +0 -218
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Kiev.rb +0 -168
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Lisbon.rb +0 -268
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Ljubljana.rb +0 -13
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/London.rb +0 -288
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Madrid.rb +0 -211
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Minsk.rb +0 -170
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Moscow.rb +0 -181
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Paris.rb +0 -232
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Prague.rb +0 -187
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Riga.rb +0 -176
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Rome.rb +0 -215
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Sarajevo.rb +0 -13
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Skopje.rb +0 -13
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Sofia.rb +0 -173
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Stockholm.rb +0 -165
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Tallinn.rb +0 -172
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Vienna.rb +0 -183
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Vilnius.rb +0 -170
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Warsaw.rb +0 -212
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Zagreb.rb +0 -13
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Auckland.rb +0 -202
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Fiji.rb +0 -23
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Guam.rb +0 -22
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Honolulu.rb +0 -28
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Majuro.rb +0 -20
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Midway.rb +0 -25
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Noumea.rb +0 -25
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Pago_Pago.rb +0 -26
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Port_Moresby.rb +0 -20
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Tongatapu.rb +0 -27
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/info_timezone.rb +0 -52
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/linked_timezone.rb +0 -51
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/linked_timezone_info.rb +0 -44
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/offset_rationals.rb +0 -98
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/ruby_core_support.rb +0 -56
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/time_or_datetime.rb +0 -292
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/timezone.rb +0 -508
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/timezone_definition.rb +0 -56
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/timezone_info.rb +0 -40
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/timezone_offset_info.rb +0 -94
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/timezone_period.rb +0 -198
- data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/timezone_transition_info.rb +0 -129
@@ -1,204 +0,0 @@
|
|
1
|
-
#--
|
2
|
-
# Authors:: Matt Aimonetti (http://railsontherun.com/),
|
3
|
-
# Sven Fuchs (http://www.artweb-design.de),
|
4
|
-
# Joshua Harvey (http://www.workingwithrails.com/person/759-joshua-harvey),
|
5
|
-
# Saimon Moore (http://saimonmoore.net),
|
6
|
-
# Stephan Soller (http://www.arkanis-development.de/)
|
7
|
-
# Copyright:: Copyright (c) 2008 The Ruby i18n Team
|
8
|
-
# License:: MIT
|
9
|
-
#++
|
10
|
-
|
11
|
-
module I18n
|
12
|
-
autoload :ArgumentError, 'i18n/exceptions'
|
13
|
-
module Backend
|
14
|
-
autoload :Simple, 'i18n/backend/simple'
|
15
|
-
end
|
16
|
-
|
17
|
-
@@backend = nil
|
18
|
-
@@load_path = nil
|
19
|
-
@@default_locale = :'en'
|
20
|
-
@@exception_handler = :default_exception_handler
|
21
|
-
|
22
|
-
class << self
|
23
|
-
# Returns the current backend. Defaults to +Backend::Simple+.
|
24
|
-
def backend
|
25
|
-
@@backend ||= Backend::Simple.new
|
26
|
-
end
|
27
|
-
|
28
|
-
# Sets the current backend. Used to set a custom backend.
|
29
|
-
def backend=(backend)
|
30
|
-
@@backend = backend
|
31
|
-
end
|
32
|
-
|
33
|
-
# Returns the current default locale. Defaults to :'en'
|
34
|
-
def default_locale
|
35
|
-
@@default_locale
|
36
|
-
end
|
37
|
-
|
38
|
-
# Sets the current default locale. Used to set a custom default locale.
|
39
|
-
def default_locale=(locale)
|
40
|
-
@@default_locale = locale
|
41
|
-
end
|
42
|
-
|
43
|
-
# Returns the current locale. Defaults to I18n.default_locale.
|
44
|
-
def locale
|
45
|
-
Thread.current[:locale] ||= default_locale
|
46
|
-
end
|
47
|
-
|
48
|
-
# Sets the current locale pseudo-globally, i.e. in the Thread.current hash.
|
49
|
-
def locale=(locale)
|
50
|
-
Thread.current[:locale] = locale
|
51
|
-
end
|
52
|
-
|
53
|
-
# Returns an array of locales for which translations are available
|
54
|
-
def available_locales
|
55
|
-
backend.available_locales
|
56
|
-
end
|
57
|
-
|
58
|
-
# Sets the exception handler.
|
59
|
-
def exception_handler=(exception_handler)
|
60
|
-
@@exception_handler = exception_handler
|
61
|
-
end
|
62
|
-
|
63
|
-
# Allow clients to register paths providing translation data sources. The
|
64
|
-
# backend defines acceptable sources.
|
65
|
-
#
|
66
|
-
# E.g. the provided SimpleBackend accepts a list of paths to translation
|
67
|
-
# files which are either named *.rb and contain plain Ruby Hashes or are
|
68
|
-
# named *.yml and contain YAML data. So for the SimpleBackend clients may
|
69
|
-
# register translation files like this:
|
70
|
-
# I18n.load_path << 'path/to/locale/en.yml'
|
71
|
-
def load_path
|
72
|
-
@@load_path ||= []
|
73
|
-
end
|
74
|
-
|
75
|
-
# Sets the load path instance. Custom implementations are expected to
|
76
|
-
# behave like a Ruby Array.
|
77
|
-
def load_path=(load_path)
|
78
|
-
@@load_path = load_path
|
79
|
-
end
|
80
|
-
|
81
|
-
# Tells the backend to reload translations. Used in situations like the
|
82
|
-
# Rails development environment. Backends can implement whatever strategy
|
83
|
-
# is useful.
|
84
|
-
def reload!
|
85
|
-
backend.reload!
|
86
|
-
end
|
87
|
-
|
88
|
-
# Translates, pluralizes and interpolates a given key using a given locale,
|
89
|
-
# scope, and default, as well as interpolation values.
|
90
|
-
#
|
91
|
-
# *LOOKUP*
|
92
|
-
#
|
93
|
-
# Translation data is organized as a nested hash using the upper-level keys
|
94
|
-
# as namespaces. <em>E.g.</em>, ActionView ships with the translation:
|
95
|
-
# <tt>:date => {:formats => {:short => "%b %d"}}</tt>.
|
96
|
-
#
|
97
|
-
# Translations can be looked up at any level of this hash using the key argument
|
98
|
-
# and the scope option. <em>E.g.</em>, in this example <tt>I18n.t :date</tt>
|
99
|
-
# returns the whole translations hash <tt>{:formats => {:short => "%b %d"}}</tt>.
|
100
|
-
#
|
101
|
-
# Key can be either a single key or a dot-separated key (both Strings and Symbols
|
102
|
-
# work). <em>E.g.</em>, the short format can be looked up using both:
|
103
|
-
# I18n.t 'date.formats.short'
|
104
|
-
# I18n.t :'date.formats.short'
|
105
|
-
#
|
106
|
-
# Scope can be either a single key, a dot-separated key or an array of keys
|
107
|
-
# or dot-separated keys. Keys and scopes can be combined freely. So these
|
108
|
-
# examples will all look up the same short date format:
|
109
|
-
# I18n.t 'date.formats.short'
|
110
|
-
# I18n.t 'formats.short', :scope => 'date'
|
111
|
-
# I18n.t 'short', :scope => 'date.formats'
|
112
|
-
# I18n.t 'short', :scope => %w(date formats)
|
113
|
-
#
|
114
|
-
# *INTERPOLATION*
|
115
|
-
#
|
116
|
-
# Translations can contain interpolation variables which will be replaced by
|
117
|
-
# values passed to #translate as part of the options hash, with the keys matching
|
118
|
-
# the interpolation variable names.
|
119
|
-
#
|
120
|
-
# <em>E.g.</em>, with a translation <tt>:foo => "foo {{bar}}"</tt> the option
|
121
|
-
# value for the key +bar+ will be interpolated into the translation:
|
122
|
-
# I18n.t :foo, :bar => 'baz' # => 'foo baz'
|
123
|
-
#
|
124
|
-
# *PLURALIZATION*
|
125
|
-
#
|
126
|
-
# Translation data can contain pluralized translations. Pluralized translations
|
127
|
-
# are arrays of singluar/plural versions of translations like <tt>['Foo', 'Foos']</tt>.
|
128
|
-
#
|
129
|
-
# Note that <tt>I18n::Backend::Simple</tt> only supports an algorithm for English
|
130
|
-
# pluralization rules. Other algorithms can be supported by custom backends.
|
131
|
-
#
|
132
|
-
# This returns the singular version of a pluralized translation:
|
133
|
-
# I18n.t :foo, :count => 1 # => 'Foo'
|
134
|
-
#
|
135
|
-
# These both return the plural version of a pluralized translation:
|
136
|
-
# I18n.t :foo, :count => 0 # => 'Foos'
|
137
|
-
# I18n.t :foo, :count => 2 # => 'Foos'
|
138
|
-
#
|
139
|
-
# The <tt>:count</tt> option can be used both for pluralization and interpolation.
|
140
|
-
# <em>E.g.</em>, with the translation
|
141
|
-
# <tt>:foo => ['{{count}} foo', '{{count}} foos']</tt>, count will
|
142
|
-
# be interpolated to the pluralized translation:
|
143
|
-
# I18n.t :foo, :count => 1 # => '1 foo'
|
144
|
-
#
|
145
|
-
# *DEFAULTS*
|
146
|
-
#
|
147
|
-
# This returns the translation for <tt>:foo</tt> or <tt>default</tt> if no translation was found:
|
148
|
-
# I18n.t :foo, :default => 'default'
|
149
|
-
#
|
150
|
-
# This returns the translation for <tt>:foo</tt> or the translation for <tt>:bar</tt> if no
|
151
|
-
# translation for <tt>:foo</tt> was found:
|
152
|
-
# I18n.t :foo, :default => :bar
|
153
|
-
#
|
154
|
-
# Returns the translation for <tt>:foo</tt> or the translation for <tt>:bar</tt>
|
155
|
-
# or <tt>default</tt> if no translations for <tt>:foo</tt> and <tt>:bar</tt> were found.
|
156
|
-
# I18n.t :foo, :default => [:bar, 'default']
|
157
|
-
#
|
158
|
-
# <b>BULK LOOKUP</b>
|
159
|
-
#
|
160
|
-
# This returns an array with the translations for <tt>:foo</tt> and <tt>:bar</tt>.
|
161
|
-
# I18n.t [:foo, :bar]
|
162
|
-
#
|
163
|
-
# Can be used with dot-separated nested keys:
|
164
|
-
# I18n.t [:'baz.foo', :'baz.bar']
|
165
|
-
#
|
166
|
-
# Which is the same as using a scope option:
|
167
|
-
# I18n.t [:foo, :bar], :scope => :baz
|
168
|
-
def translate(key, options = {})
|
169
|
-
locale = options.delete(:locale) || I18n.locale
|
170
|
-
backend.translate(locale, key, options)
|
171
|
-
rescue I18n::ArgumentError => e
|
172
|
-
raise e if options[:raise]
|
173
|
-
send(@@exception_handler, e, locale, key, options)
|
174
|
-
end
|
175
|
-
alias :t :translate
|
176
|
-
|
177
|
-
# Localizes certain objects, such as dates and numbers to local formatting.
|
178
|
-
def localize(object, options = {})
|
179
|
-
locale = options[:locale] || I18n.locale
|
180
|
-
format = options[:format] || :default
|
181
|
-
backend.localize(locale, object, format)
|
182
|
-
end
|
183
|
-
alias :l :localize
|
184
|
-
|
185
|
-
protected
|
186
|
-
# Handles exceptions raised in the backend. All exceptions except for
|
187
|
-
# MissingTranslationData exceptions are re-raised. When a MissingTranslationData
|
188
|
-
# was caught and the option :raise is not set the handler returns an error
|
189
|
-
# message string containing the key/scope.
|
190
|
-
def default_exception_handler(exception, locale, key, options)
|
191
|
-
return exception.message if MissingTranslationData === exception
|
192
|
-
raise exception
|
193
|
-
end
|
194
|
-
|
195
|
-
# Merges the given locale, key and scope into a single array of keys.
|
196
|
-
# Splits keys that contain dots into multiple keys. Makes sure all
|
197
|
-
# keys are Symbols.
|
198
|
-
def normalize_translation_keys(locale, key, scope)
|
199
|
-
keys = [locale] + Array(scope) + [key]
|
200
|
-
keys = keys.map { |k| k.to_s.split(/\./) }
|
201
|
-
keys.flatten.map { |k| k.to_sym }
|
202
|
-
end
|
203
|
-
end
|
204
|
-
end
|
@@ -1,215 +0,0 @@
|
|
1
|
-
require 'i18n/exceptions'
|
2
|
-
|
3
|
-
module I18n
|
4
|
-
module Backend
|
5
|
-
class Simple
|
6
|
-
INTERPOLATION_RESERVED_KEYS = %w(scope default)
|
7
|
-
MATCH = /(\\\\)?\{\{([^\}]+)\}\}/
|
8
|
-
|
9
|
-
# Accepts a list of paths to translation files. Loads translations from
|
10
|
-
# plain Ruby (*.rb) or YAML files (*.yml). See #load_rb and #load_yml
|
11
|
-
# for details.
|
12
|
-
def load_translations(*filenames)
|
13
|
-
filenames.each { |filename| load_file(filename) }
|
14
|
-
end
|
15
|
-
|
16
|
-
# Stores translations for the given locale in memory.
|
17
|
-
# This uses a deep merge for the translations hash, so existing
|
18
|
-
# translations will be overwritten by new ones only at the deepest
|
19
|
-
# level of the hash.
|
20
|
-
def store_translations(locale, data)
|
21
|
-
merge_translations(locale, data)
|
22
|
-
end
|
23
|
-
|
24
|
-
def translate(locale, key, options = {})
|
25
|
-
raise InvalidLocale.new(locale) if locale.nil?
|
26
|
-
return key.map { |k| translate(locale, k, options) } if key.is_a? Array
|
27
|
-
|
28
|
-
reserved = :scope, :default
|
29
|
-
count, scope, default = options.values_at(:count, *reserved)
|
30
|
-
options.delete(:default)
|
31
|
-
values = options.reject { |name, value| reserved.include?(name) }
|
32
|
-
|
33
|
-
entry = lookup(locale, key, scope)
|
34
|
-
if entry.nil?
|
35
|
-
entry = default(locale, default, options)
|
36
|
-
if entry.nil?
|
37
|
-
raise(I18n::MissingTranslationData.new(locale, key, options))
|
38
|
-
end
|
39
|
-
end
|
40
|
-
entry = pluralize(locale, entry, count)
|
41
|
-
entry = interpolate(locale, entry, values)
|
42
|
-
entry
|
43
|
-
end
|
44
|
-
|
45
|
-
# Acts the same as +strftime+, but returns a localized version of the
|
46
|
-
# formatted date string. Takes a key from the date/time formats
|
47
|
-
# translations as a format argument (<em>e.g.</em>, <tt>:short</tt> in <tt>:'date.formats'</tt>).
|
48
|
-
def localize(locale, object, format = :default)
|
49
|
-
raise ArgumentError, "Object must be a Date, DateTime or Time object. #{object.inspect} given." unless object.respond_to?(:strftime)
|
50
|
-
|
51
|
-
type = object.respond_to?(:sec) ? 'time' : 'date'
|
52
|
-
# TODO only translate these if format is a String?
|
53
|
-
formats = translate(locale, :"#{type}.formats")
|
54
|
-
format = formats[format.to_sym] if formats && formats[format.to_sym]
|
55
|
-
# TODO raise exception unless format found?
|
56
|
-
format = format.to_s.dup
|
57
|
-
|
58
|
-
# TODO only translate these if the format string is actually present
|
59
|
-
# TODO check which format strings are present, then bulk translate then, then replace them
|
60
|
-
format.gsub!(/%a/, translate(locale, :"date.abbr_day_names")[object.wday])
|
61
|
-
format.gsub!(/%A/, translate(locale, :"date.day_names")[object.wday])
|
62
|
-
format.gsub!(/%b/, translate(locale, :"date.abbr_month_names")[object.mon])
|
63
|
-
format.gsub!(/%B/, translate(locale, :"date.month_names")[object.mon])
|
64
|
-
format.gsub!(/%p/, translate(locale, :"time.#{object.hour < 12 ? :am : :pm}")) if object.respond_to? :hour
|
65
|
-
object.strftime(format)
|
66
|
-
end
|
67
|
-
|
68
|
-
def initialized?
|
69
|
-
@initialized ||= false
|
70
|
-
end
|
71
|
-
|
72
|
-
# Returns an array of locales for which translations are available
|
73
|
-
def available_locales
|
74
|
-
init_translations unless initialized?
|
75
|
-
translations.keys
|
76
|
-
end
|
77
|
-
|
78
|
-
def reload!
|
79
|
-
@initialized = false
|
80
|
-
@translations = nil
|
81
|
-
end
|
82
|
-
|
83
|
-
protected
|
84
|
-
def init_translations
|
85
|
-
load_translations(*I18n.load_path.flatten)
|
86
|
-
@initialized = true
|
87
|
-
end
|
88
|
-
|
89
|
-
def translations
|
90
|
-
@translations ||= {}
|
91
|
-
end
|
92
|
-
|
93
|
-
# Looks up a translation from the translations hash. Returns nil if
|
94
|
-
# eiher key is nil, or locale, scope or key do not exist as a key in the
|
95
|
-
# nested translations hash. Splits keys or scopes containing dots
|
96
|
-
# into multiple keys, i.e. <tt>currency.format</tt> is regarded the same as
|
97
|
-
# <tt>%w(currency format)</tt>.
|
98
|
-
def lookup(locale, key, scope = [])
|
99
|
-
return unless key
|
100
|
-
init_translations unless initialized?
|
101
|
-
keys = I18n.send(:normalize_translation_keys, locale, key, scope)
|
102
|
-
keys.inject(translations) do |result, k|
|
103
|
-
if (x = result[k.to_sym]).nil?
|
104
|
-
return nil
|
105
|
-
else
|
106
|
-
x
|
107
|
-
end
|
108
|
-
end
|
109
|
-
end
|
110
|
-
|
111
|
-
# Evaluates a default translation.
|
112
|
-
# If the given default is a String it is used literally. If it is a Symbol
|
113
|
-
# it will be translated with the given options. If it is an Array the first
|
114
|
-
# translation yielded will be returned.
|
115
|
-
#
|
116
|
-
# <em>I.e.</em>, <tt>default(locale, [:foo, 'default'])</tt> will return +default+ if
|
117
|
-
# <tt>translate(locale, :foo)</tt> does not yield a result.
|
118
|
-
def default(locale, default, options = {})
|
119
|
-
case default
|
120
|
-
when String then default
|
121
|
-
when Symbol then translate locale, default, options
|
122
|
-
when Array then default.each do |obj|
|
123
|
-
result = default(locale, obj, options.dup) and return result
|
124
|
-
end and nil
|
125
|
-
end
|
126
|
-
rescue MissingTranslationData
|
127
|
-
nil
|
128
|
-
end
|
129
|
-
|
130
|
-
# Picks a translation from an array according to English pluralization
|
131
|
-
# rules. It will pick the first translation if count is not equal to 1
|
132
|
-
# and the second translation if it is equal to 1. Other backends can
|
133
|
-
# implement more flexible or complex pluralization rules.
|
134
|
-
def pluralize(locale, entry, count)
|
135
|
-
return entry unless entry.is_a?(Hash) and count
|
136
|
-
# raise InvalidPluralizationData.new(entry, count) unless entry.is_a?(Hash)
|
137
|
-
key = :zero if count == 0 && entry.has_key?(:zero)
|
138
|
-
key ||= count == 1 ? :one : :other
|
139
|
-
raise InvalidPluralizationData.new(entry, count) unless entry.has_key?(key)
|
140
|
-
entry[key]
|
141
|
-
end
|
142
|
-
|
143
|
-
# Interpolates values into a given string.
|
144
|
-
#
|
145
|
-
# interpolate "file {{file}} opened by \\{{user}}", :file => 'test.txt', :user => 'Mr. X'
|
146
|
-
# # => "file test.txt opened by {{user}}"
|
147
|
-
#
|
148
|
-
# Note that you have to double escape the <tt>\\</tt> when you want to escape
|
149
|
-
# the <tt>{{...}}</tt> key in a string (once for the string and once for the
|
150
|
-
# interpolation).
|
151
|
-
def interpolate(locale, string, values = {})
|
152
|
-
return string unless string.is_a?(String)
|
153
|
-
|
154
|
-
string.gsub(MATCH) do
|
155
|
-
escaped, pattern, key = $1, $2, $2.to_sym
|
156
|
-
|
157
|
-
if escaped
|
158
|
-
pattern
|
159
|
-
elsif INTERPOLATION_RESERVED_KEYS.include?(pattern)
|
160
|
-
raise ReservedInterpolationKey.new(pattern, string)
|
161
|
-
elsif !values.include?(key)
|
162
|
-
raise MissingInterpolationArgument.new(pattern, string)
|
163
|
-
else
|
164
|
-
values[key].to_s
|
165
|
-
end
|
166
|
-
end
|
167
|
-
end
|
168
|
-
|
169
|
-
# Loads a single translations file by delegating to #load_rb or
|
170
|
-
# #load_yml depending on the file extension and directly merges the
|
171
|
-
# data to the existing translations. Raises I18n::UnknownFileType
|
172
|
-
# for all other file extensions.
|
173
|
-
def load_file(filename)
|
174
|
-
type = File.extname(filename).tr('.', '').downcase
|
175
|
-
raise UnknownFileType.new(type, filename) unless respond_to?(:"load_#{type}")
|
176
|
-
data = send :"load_#{type}", filename # TODO raise a meaningful exception if this does not yield a Hash
|
177
|
-
data.each { |locale, d| merge_translations(locale, d) }
|
178
|
-
end
|
179
|
-
|
180
|
-
# Loads a plain Ruby translations file. eval'ing the file must yield
|
181
|
-
# a Hash containing translation data with locales as toplevel keys.
|
182
|
-
def load_rb(filename)
|
183
|
-
eval(IO.read(filename), binding, filename)
|
184
|
-
end
|
185
|
-
|
186
|
-
# Loads a YAML translations file. The data must have locales as
|
187
|
-
# toplevel keys.
|
188
|
-
def load_yml(filename)
|
189
|
-
require 'yaml' unless defined? :YAML
|
190
|
-
YAML::load(IO.read(filename))
|
191
|
-
end
|
192
|
-
|
193
|
-
# Deep merges the given translations hash with the existing translations
|
194
|
-
# for the given locale
|
195
|
-
def merge_translations(locale, data)
|
196
|
-
locale = locale.to_sym
|
197
|
-
translations[locale] ||= {}
|
198
|
-
data = deep_symbolize_keys(data)
|
199
|
-
|
200
|
-
# deep_merge by Stefan Rusterholz, see http://www.ruby-forum.com/topic/142809
|
201
|
-
merger = proc { |key, v1, v2| Hash === v1 && Hash === v2 ? v1.merge(v2, &merger) : v2 }
|
202
|
-
translations[locale].merge!(data, &merger)
|
203
|
-
end
|
204
|
-
|
205
|
-
# Return a new hash with all keys and nested keys converted to symbols.
|
206
|
-
def deep_symbolize_keys(hash)
|
207
|
-
hash.inject({}) { |result, (key, value)|
|
208
|
-
value = deep_symbolize_keys(value) if value.is_a? Hash
|
209
|
-
result[(key.to_sym rescue key) || key] = value
|
210
|
-
result
|
211
|
-
}
|
212
|
-
end
|
213
|
-
end
|
214
|
-
end
|
215
|
-
end
|
@@ -1,53 +0,0 @@
|
|
1
|
-
module I18n
|
2
|
-
class ArgumentError < ::ArgumentError; end
|
3
|
-
|
4
|
-
class InvalidLocale < ArgumentError
|
5
|
-
attr_reader :locale
|
6
|
-
def initialize(locale)
|
7
|
-
@locale = locale
|
8
|
-
super "#{locale.inspect} is not a valid locale"
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
class MissingTranslationData < ArgumentError
|
13
|
-
attr_reader :locale, :key, :options
|
14
|
-
def initialize(locale, key, options)
|
15
|
-
@key, @locale, @options = key, locale, options
|
16
|
-
keys = I18n.send(:normalize_translation_keys, locale, key, options[:scope])
|
17
|
-
keys << 'no key' if keys.size < 2
|
18
|
-
super "translation missing: #{keys.join(', ')}"
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
class InvalidPluralizationData < ArgumentError
|
23
|
-
attr_reader :entry, :count
|
24
|
-
def initialize(entry, count)
|
25
|
-
@entry, @count = entry, count
|
26
|
-
super "translation data #{entry.inspect} can not be used with :count => #{count}"
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
class MissingInterpolationArgument < ArgumentError
|
31
|
-
attr_reader :key, :string
|
32
|
-
def initialize(key, string)
|
33
|
-
@key, @string = key, string
|
34
|
-
super "interpolation argument #{key} missing in #{string.inspect}"
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
class ReservedInterpolationKey < ArgumentError
|
39
|
-
attr_reader :key, :string
|
40
|
-
def initialize(key, string)
|
41
|
-
@key, @string = key, string
|
42
|
-
super "reserved key #{key.inspect} used in #{string.inspect}"
|
43
|
-
end
|
44
|
-
end
|
45
|
-
|
46
|
-
class UnknownFileType < ArgumentError
|
47
|
-
attr_reader :type, :filename
|
48
|
-
def initialize(type, filename)
|
49
|
-
@type, @filename = type, filename
|
50
|
-
super "can not load translations from #{filename}, the file type #{type} is not known"
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|