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.

Files changed (351) hide show
  1. data/CHANGELOG +121 -1
  2. data/README.rdoc +33 -0
  3. data/lib/active_support.rb +42 -4
  4. data/lib/active_support/backtrace_cleaner.rb +31 -9
  5. data/lib/active_support/benchmarkable.rb +1 -0
  6. data/lib/active_support/buffered_logger.rb +5 -2
  7. data/lib/active_support/builder.rb +6 -0
  8. data/lib/active_support/cache.rb +454 -84
  9. data/lib/active_support/cache/compressed_mem_cache_store.rb +6 -13
  10. data/lib/active_support/cache/file_store.rb +140 -41
  11. data/lib/active_support/cache/mem_cache_store.rb +121 -76
  12. data/lib/active_support/cache/memory_store.rb +127 -27
  13. data/lib/active_support/cache/strategy/local_cache.rb +111 -58
  14. data/lib/active_support/cache/synchronized_memory_store.rb +2 -38
  15. data/lib/active_support/callbacks.rb +105 -76
  16. data/lib/active_support/configurable.rb +19 -18
  17. data/lib/active_support/core_ext/array.rb +1 -0
  18. data/lib/active_support/core_ext/array/access.rb +1 -1
  19. data/lib/active_support/core_ext/array/conversions.rb +29 -54
  20. data/lib/active_support/core_ext/array/extract_options.rb +16 -1
  21. data/lib/active_support/core_ext/array/grouping.rb +1 -1
  22. data/lib/active_support/core_ext/array/random_access.rb +26 -5
  23. data/lib/active_support/core_ext/array/uniq_by.rb +17 -0
  24. data/lib/active_support/core_ext/array/wrap.rb +13 -9
  25. data/lib/active_support/core_ext/benchmark.rb +0 -12
  26. data/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +2 -0
  27. data/lib/active_support/core_ext/class.rb +2 -1
  28. data/lib/active_support/core_ext/class/attribute.rb +67 -0
  29. data/lib/active_support/core_ext/class/attribute_accessors.rb +33 -27
  30. data/lib/active_support/core_ext/class/delegating_attributes.rb +35 -41
  31. data/lib/active_support/core_ext/class/inheritable_attributes.rb +23 -14
  32. data/lib/active_support/core_ext/class/subclasses.rb +50 -0
  33. data/lib/active_support/core_ext/date/calculations.rb +35 -12
  34. data/lib/active_support/core_ext/date/conversions.rb +5 -5
  35. data/lib/active_support/core_ext/date/zones.rb +14 -0
  36. data/lib/active_support/core_ext/date_time/calculations.rb +3 -1
  37. data/lib/active_support/core_ext/date_time/conversions.rb +24 -5
  38. data/lib/active_support/core_ext/date_time/zones.rb +4 -0
  39. data/lib/active_support/core_ext/enumerable.rb +5 -9
  40. data/lib/active_support/core_ext/exception.rb +0 -47
  41. data/lib/active_support/core_ext/file.rb +1 -0
  42. data/lib/active_support/core_ext/file/atomic.rb +3 -2
  43. data/lib/active_support/core_ext/file/path.rb +5 -0
  44. data/lib/active_support/core_ext/float/rounding.rb +3 -2
  45. data/lib/active_support/core_ext/hash/conversions.rb +65 -145
  46. data/lib/active_support/core_ext/hash/deep_merge.rb +6 -7
  47. data/lib/active_support/core_ext/hash/except.rb +8 -1
  48. data/lib/active_support/core_ext/hash/indifferent_access.rb +5 -0
  49. data/lib/active_support/core_ext/hash/keys.rb +10 -11
  50. data/lib/active_support/core_ext/hash/slice.rb +6 -0
  51. data/lib/active_support/core_ext/integer.rb +1 -1
  52. data/lib/active_support/core_ext/integer/multiple.rb +6 -0
  53. data/lib/active_support/core_ext/kernel.rb +1 -1
  54. data/lib/active_support/core_ext/kernel/debugger.rb +3 -2
  55. data/lib/active_support/core_ext/kernel/reporting.rb +2 -1
  56. data/lib/active_support/core_ext/kernel/requires.rb +2 -2
  57. data/lib/active_support/core_ext/kernel/singleton_class.rb +13 -0
  58. data/lib/active_support/core_ext/load_error.rb +17 -30
  59. data/lib/active_support/core_ext/logger.rb +2 -40
  60. data/lib/active_support/core_ext/module.rb +5 -3
  61. data/lib/active_support/core_ext/module/aliasing.rb +1 -1
  62. data/lib/active_support/core_ext/module/anonymous.rb +24 -0
  63. data/lib/active_support/core_ext/module/attr_accessor_with_default.rb +1 -1
  64. data/lib/active_support/core_ext/module/attr_internal.rb +2 -2
  65. data/lib/active_support/core_ext/module/attribute_accessors.rb +20 -22
  66. data/lib/active_support/core_ext/module/delegation.rb +21 -10
  67. data/lib/active_support/core_ext/module/introspection.rb +8 -8
  68. data/lib/active_support/core_ext/module/method_names.rb +14 -0
  69. data/lib/active_support/core_ext/module/reachable.rb +10 -0
  70. data/lib/active_support/core_ext/module/remove_method.rb +11 -0
  71. data/lib/active_support/core_ext/module/synchronization.rb +2 -1
  72. data/lib/active_support/core_ext/name_error.rb +3 -1
  73. data/lib/active_support/core_ext/object.rb +5 -3
  74. data/lib/active_support/core_ext/object/blank.rb +20 -2
  75. data/lib/active_support/core_ext/object/conversions.rb +2 -16
  76. data/lib/active_support/core_ext/object/duplicable.rb +23 -1
  77. data/lib/active_support/core_ext/object/instance_variables.rb +0 -7
  78. data/lib/active_support/core_ext/object/to_json.rb +19 -0
  79. data/lib/active_support/core_ext/object/to_param.rb +49 -0
  80. data/lib/active_support/core_ext/object/to_query.rb +27 -0
  81. data/lib/active_support/core_ext/object/with_options.rb +2 -0
  82. data/lib/active_support/core_ext/proc.rb +4 -4
  83. data/lib/active_support/core_ext/range/overlaps.rb +1 -1
  84. data/lib/active_support/core_ext/regexp.rb +0 -22
  85. data/lib/active_support/core_ext/rexml.rb +4 -1
  86. data/lib/active_support/core_ext/string.rb +3 -2
  87. data/lib/active_support/core_ext/string/access.rb +4 -2
  88. data/lib/active_support/core_ext/string/conversions.rb +28 -1
  89. data/lib/active_support/core_ext/string/encoding.rb +11 -0
  90. data/lib/active_support/core_ext/string/exclude.rb +6 -0
  91. data/lib/active_support/core_ext/string/filters.rb +29 -0
  92. data/lib/active_support/core_ext/string/inflections.rb +12 -12
  93. data/lib/active_support/core_ext/string/interpolation.rb +2 -92
  94. data/lib/active_support/core_ext/string/multibyte.rb +16 -19
  95. data/lib/active_support/core_ext/string/output_safety.rb +101 -35
  96. data/lib/active_support/core_ext/string/starts_ends_with.rb +0 -14
  97. data/lib/active_support/core_ext/string/xchar.rb +1 -1
  98. data/lib/active_support/core_ext/time/calculations.rb +14 -7
  99. data/lib/active_support/core_ext/time/conversions.rb +1 -0
  100. data/lib/active_support/core_ext/time/marshal.rb +56 -0
  101. data/lib/active_support/core_ext/time/zones.rb +2 -5
  102. data/lib/active_support/core_ext/uri.rb +10 -4
  103. data/lib/active_support/dependencies.rb +200 -197
  104. data/lib/active_support/dependencies/autoload.rb +50 -0
  105. data/lib/active_support/deprecation/behaviors.rb +13 -9
  106. data/lib/active_support/deprecation/method_wrappers.rb +10 -9
  107. data/lib/active_support/deprecation/proxy_wrappers.rb +7 -0
  108. data/lib/active_support/deprecation/reporting.rb +5 -3
  109. data/lib/active_support/descendants_tracker.rb +43 -0
  110. data/lib/active_support/duration.rb +8 -4
  111. data/lib/active_support/file_update_checker.rb +36 -0
  112. data/lib/active_support/hash_with_indifferent_access.rb +9 -1
  113. data/lib/active_support/i18n.rb +9 -0
  114. data/lib/active_support/i18n_railtie.rb +81 -0
  115. data/lib/active_support/inflections.rb +1 -1
  116. data/lib/active_support/inflector.rb +4 -407
  117. data/lib/active_support/inflector/inflections.rb +211 -0
  118. data/lib/active_support/inflector/methods.rb +151 -0
  119. data/lib/active_support/inflector/transliterate.rb +97 -0
  120. data/lib/active_support/json/backends/jsongem.rb +12 -9
  121. data/lib/active_support/json/backends/yajl.rb +40 -0
  122. data/lib/active_support/json/backends/yaml.rb +1 -1
  123. data/lib/active_support/json/decoding.rb +17 -2
  124. data/lib/active_support/json/encoding.rb +48 -31
  125. data/lib/active_support/json/variable.rb +2 -4
  126. data/lib/active_support/lazy_load_hooks.rb +27 -0
  127. data/lib/active_support/locale/en.yml +5 -2
  128. data/lib/active_support/log_subscriber.rb +123 -0
  129. data/lib/active_support/log_subscriber/test_helper.rb +99 -0
  130. data/lib/active_support/memoizable.rb +1 -1
  131. data/lib/active_support/message_encryptor.rb +1 -0
  132. data/lib/active_support/message_verifier.rb +2 -1
  133. data/lib/active_support/multibyte.rb +8 -23
  134. data/lib/active_support/multibyte/chars.rb +213 -446
  135. data/lib/active_support/multibyte/unicode.rb +392 -0
  136. data/lib/active_support/multibyte/utils.rb +6 -7
  137. data/lib/active_support/notifications.rb +29 -122
  138. data/lib/active_support/notifications/fanout.rb +61 -0
  139. data/lib/active_support/notifications/instrumenter.rb +54 -0
  140. data/lib/active_support/ordered_hash.rb +59 -14
  141. data/lib/active_support/ordered_options.rb +6 -0
  142. data/lib/active_support/railtie.rb +60 -0
  143. data/lib/active_support/rescuable.rb +7 -4
  144. data/lib/active_support/ruby/shim.rb +4 -6
  145. data/lib/active_support/test_case.rb +2 -7
  146. data/lib/active_support/testing/assertions.rb +15 -0
  147. data/lib/active_support/testing/declarative.rb +1 -1
  148. data/lib/active_support/testing/isolation.rb +64 -17
  149. data/lib/active_support/testing/performance.rb +306 -335
  150. data/lib/active_support/testing/setup_and_teardown.rb +51 -29
  151. data/lib/active_support/time.rb +24 -3
  152. data/lib/active_support/time_with_zone.rb +10 -14
  153. data/lib/active_support/values/time_zone.rb +192 -234
  154. data/lib/active_support/values/unicode_tables.dat +0 -0
  155. data/lib/active_support/version.rb +3 -2
  156. data/lib/active_support/whiny_nil.rb +9 -7
  157. data/lib/active_support/xml_mini.rb +130 -1
  158. data/lib/active_support/xml_mini/jdom.rb +2 -0
  159. data/lib/active_support/xml_mini/libxml.rb +23 -86
  160. data/lib/active_support/xml_mini/libxmlsax.rb +85 -0
  161. data/lib/active_support/xml_mini/nokogiri.rb +27 -24
  162. data/lib/active_support/xml_mini/nokogirisax.rb +83 -0
  163. data/lib/active_support/xml_mini/rexml.rb +8 -2
  164. metadata +62 -195
  165. data/README +0 -43
  166. data/lib/active_support/autoload.rb +0 -28
  167. data/lib/active_support/core_ext/boolean.rb +0 -1
  168. data/lib/active_support/core_ext/boolean/conversions.rb +0 -11
  169. data/lib/active_support/core_ext/class/removal.rb +0 -53
  170. data/lib/active_support/core_ext/date.rb +0 -7
  171. data/lib/active_support/core_ext/date_time.rb +0 -5
  172. data/lib/active_support/core_ext/integer/even_odd.rb +0 -16
  173. data/lib/active_support/core_ext/kernel/daemonizing.rb +0 -7
  174. data/lib/active_support/core_ext/module/inclusion.rb +0 -30
  175. data/lib/active_support/core_ext/module/loading.rb +0 -23
  176. data/lib/active_support/core_ext/nil.rb +0 -1
  177. data/lib/active_support/core_ext/nil/conversions.rb +0 -5
  178. data/lib/active_support/core_ext/object/extending.rb +0 -80
  179. data/lib/active_support/core_ext/object/metaclass.rb +0 -13
  180. data/lib/active_support/core_ext/object/misc.rb +0 -3
  181. data/lib/active_support/core_ext/object/returning.rb +0 -42
  182. data/lib/active_support/core_ext/object/tap.rb +0 -16
  183. data/lib/active_support/core_ext/string/bytesize.rb +0 -5
  184. data/lib/active_support/core_ext/string/iterators.rb +0 -13
  185. data/lib/active_support/core_ext/symbol.rb +0 -1
  186. data/lib/active_support/core_ext/symbol/to_proc.rb +0 -14
  187. data/lib/active_support/core_ext/time.rb +0 -10
  188. data/lib/active_support/core_ext/time/marshal_with_utc_flag.rb +0 -22
  189. data/lib/active_support/deprecated_callbacks.rb +0 -283
  190. data/lib/active_support/multibyte/unicode_database.rb +0 -71
  191. data/lib/active_support/vendor.rb +0 -16
  192. data/lib/active_support/vendor/builder-2.1.2/lib/blankslate.rb +0 -113
  193. data/lib/active_support/vendor/builder-2.1.2/lib/builder.rb +0 -13
  194. data/lib/active_support/vendor/builder-2.1.2/lib/builder/blankslate.rb +0 -20
  195. data/lib/active_support/vendor/builder-2.1.2/lib/builder/css.rb +0 -250
  196. data/lib/active_support/vendor/builder-2.1.2/lib/builder/xchar.rb +0 -115
  197. data/lib/active_support/vendor/builder-2.1.2/lib/builder/xmlbase.rb +0 -139
  198. data/lib/active_support/vendor/builder-2.1.2/lib/builder/xmlevents.rb +0 -63
  199. data/lib/active_support/vendor/builder-2.1.2/lib/builder/xmlmarkup.rb +0 -328
  200. data/lib/active_support/vendor/i18n-0.1.3/MIT-LICENSE +0 -20
  201. data/lib/active_support/vendor/i18n-0.1.3/README.textile +0 -20
  202. data/lib/active_support/vendor/i18n-0.1.3/Rakefile +0 -5
  203. data/lib/active_support/vendor/i18n-0.1.3/i18n.gemspec +0 -27
  204. data/lib/active_support/vendor/i18n-0.1.3/lib/i18n.rb +0 -204
  205. data/lib/active_support/vendor/i18n-0.1.3/lib/i18n/backend/simple.rb +0 -215
  206. data/lib/active_support/vendor/i18n-0.1.3/lib/i18n/exceptions.rb +0 -53
  207. data/lib/active_support/vendor/i18n-0.1.3/test/all.rb +0 -5
  208. data/lib/active_support/vendor/i18n-0.1.3/test/i18n_exceptions_test.rb +0 -99
  209. data/lib/active_support/vendor/i18n-0.1.3/test/i18n_test.rb +0 -124
  210. data/lib/active_support/vendor/i18n-0.1.3/test/locale/en.rb +0 -1
  211. data/lib/active_support/vendor/i18n-0.1.3/test/locale/en.yml +0 -3
  212. data/lib/active_support/vendor/i18n-0.1.3/test/simple_backend_test.rb +0 -567
  213. data/lib/active_support/vendor/memcache-client-1.7.5/lib/memcache.rb +0 -1133
  214. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo.rb +0 -33
  215. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/data_timezone.rb +0 -47
  216. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/data_timezone_info.rb +0 -228
  217. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Africa/Algiers.rb +0 -55
  218. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Africa/Cairo.rb +0 -219
  219. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Africa/Casablanca.rb +0 -42
  220. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Africa/Harare.rb +0 -18
  221. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Africa/Johannesburg.rb +0 -25
  222. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Africa/Monrovia.rb +0 -22
  223. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Africa/Nairobi.rb +0 -23
  224. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +0 -166
  225. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Argentina/San_Juan.rb +0 -86
  226. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Bogota.rb +0 -23
  227. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Caracas.rb +0 -23
  228. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Chicago.rb +0 -283
  229. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Chihuahua.rb +0 -136
  230. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Denver.rb +0 -204
  231. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Godthab.rb +0 -161
  232. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Guatemala.rb +0 -27
  233. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Halifax.rb +0 -274
  234. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Indiana/Indianapolis.rb +0 -149
  235. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Juneau.rb +0 -194
  236. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/La_Paz.rb +0 -22
  237. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Lima.rb +0 -35
  238. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Los_Angeles.rb +0 -232
  239. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Mazatlan.rb +0 -139
  240. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Mexico_City.rb +0 -144
  241. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Monterrey.rb +0 -131
  242. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/New_York.rb +0 -282
  243. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Phoenix.rb +0 -30
  244. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Regina.rb +0 -74
  245. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Santiago.rb +0 -205
  246. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Sao_Paulo.rb +0 -171
  247. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/St_Johns.rb +0 -288
  248. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/America/Tijuana.rb +0 -196
  249. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Almaty.rb +0 -67
  250. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Baghdad.rb +0 -73
  251. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Baku.rb +0 -161
  252. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Bangkok.rb +0 -20
  253. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Chongqing.rb +0 -33
  254. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Colombo.rb +0 -30
  255. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Dhaka.rb +0 -27
  256. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Hong_Kong.rb +0 -87
  257. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Irkutsk.rb +0 -165
  258. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Jakarta.rb +0 -30
  259. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Jerusalem.rb +0 -163
  260. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Kabul.rb +0 -20
  261. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Kamchatka.rb +0 -163
  262. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Karachi.rb +0 -32
  263. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Kathmandu.rb +0 -20
  264. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Kolkata.rb +0 -25
  265. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Krasnoyarsk.rb +0 -163
  266. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Kuala_Lumpur.rb +0 -31
  267. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Kuwait.rb +0 -18
  268. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Magadan.rb +0 -163
  269. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Muscat.rb +0 -18
  270. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Novosibirsk.rb +0 -164
  271. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Rangoon.rb +0 -24
  272. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Riyadh.rb +0 -18
  273. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Seoul.rb +0 -34
  274. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Shanghai.rb +0 -35
  275. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Singapore.rb +0 -33
  276. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Taipei.rb +0 -59
  277. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Tashkent.rb +0 -47
  278. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Tbilisi.rb +0 -78
  279. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Tehran.rb +0 -121
  280. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Tokyo.rb +0 -30
  281. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Ulaanbaatar.rb +0 -65
  282. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Urumqi.rb +0 -33
  283. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Vladivostok.rb +0 -164
  284. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Yakutsk.rb +0 -163
  285. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Yekaterinburg.rb +0 -165
  286. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Asia/Yerevan.rb +0 -165
  287. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Atlantic/Azores.rb +0 -270
  288. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Atlantic/Cape_Verde.rb +0 -23
  289. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Atlantic/South_Georgia.rb +0 -18
  290. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Australia/Adelaide.rb +0 -187
  291. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Australia/Brisbane.rb +0 -35
  292. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Australia/Darwin.rb +0 -29
  293. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Australia/Hobart.rb +0 -193
  294. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Australia/Melbourne.rb +0 -185
  295. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Australia/Perth.rb +0 -37
  296. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Australia/Sydney.rb +0 -185
  297. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Etc/UTC.rb +0 -16
  298. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Amsterdam.rb +0 -228
  299. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Athens.rb +0 -185
  300. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Belgrade.rb +0 -163
  301. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Berlin.rb +0 -188
  302. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Bratislava.rb +0 -13
  303. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Brussels.rb +0 -232
  304. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Bucharest.rb +0 -181
  305. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Budapest.rb +0 -197
  306. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Copenhagen.rb +0 -179
  307. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Dublin.rb +0 -276
  308. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Helsinki.rb +0 -163
  309. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Istanbul.rb +0 -218
  310. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Kiev.rb +0 -168
  311. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Lisbon.rb +0 -268
  312. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Ljubljana.rb +0 -13
  313. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/London.rb +0 -288
  314. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Madrid.rb +0 -211
  315. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Minsk.rb +0 -170
  316. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Moscow.rb +0 -181
  317. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Paris.rb +0 -232
  318. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Prague.rb +0 -187
  319. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Riga.rb +0 -176
  320. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Rome.rb +0 -215
  321. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Sarajevo.rb +0 -13
  322. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Skopje.rb +0 -13
  323. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Sofia.rb +0 -173
  324. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Stockholm.rb +0 -165
  325. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Tallinn.rb +0 -172
  326. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Vienna.rb +0 -183
  327. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Vilnius.rb +0 -170
  328. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Warsaw.rb +0 -212
  329. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Europe/Zagreb.rb +0 -13
  330. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Auckland.rb +0 -202
  331. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Fiji.rb +0 -23
  332. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Guam.rb +0 -22
  333. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Honolulu.rb +0 -28
  334. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Majuro.rb +0 -20
  335. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Midway.rb +0 -25
  336. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Noumea.rb +0 -25
  337. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Pago_Pago.rb +0 -26
  338. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Port_Moresby.rb +0 -20
  339. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Pacific/Tongatapu.rb +0 -27
  340. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/info_timezone.rb +0 -52
  341. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/linked_timezone.rb +0 -51
  342. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/linked_timezone_info.rb +0 -44
  343. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/offset_rationals.rb +0 -98
  344. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/ruby_core_support.rb +0 -56
  345. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/time_or_datetime.rb +0 -292
  346. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/timezone.rb +0 -508
  347. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/timezone_definition.rb +0 -56
  348. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/timezone_info.rb +0 -40
  349. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/timezone_offset_info.rb +0 -94
  350. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/timezone_period.rb +0 -198
  351. data/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/timezone_transition_info.rb +0 -129
@@ -1,5 +0,0 @@
1
- dir = File.dirname(__FILE__)
2
- require dir + '/i18n_test.rb'
3
- require dir + '/simple_backend_test.rb'
4
- require dir + '/i18n_exceptions_test.rb'
5
- # *require* dir + '/custom_backend_test.rb'
@@ -1,99 +0,0 @@
1
- $:.unshift "lib"
2
-
3
- require 'rubygems'
4
- require 'test/unit'
5
- require 'i18n'
6
- require 'active_support'
7
-
8
- class I18nExceptionsTest < Test::Unit::TestCase
9
- def test_invalid_locale_stores_locale
10
- force_invalid_locale
11
- rescue I18n::ArgumentError => e
12
- assert_nil e.locale
13
- end
14
-
15
- def test_invalid_locale_message
16
- force_invalid_locale
17
- rescue I18n::ArgumentError => e
18
- assert_equal 'nil is not a valid locale', e.message
19
- end
20
-
21
- def test_missing_translation_data_stores_locale_key_and_options
22
- force_missing_translation_data
23
- rescue I18n::ArgumentError => e
24
- options = {:scope => :bar}
25
- assert_equal 'de', e.locale
26
- assert_equal :foo, e.key
27
- assert_equal options, e.options
28
- end
29
-
30
- def test_missing_translation_data_message
31
- force_missing_translation_data
32
- rescue I18n::ArgumentError => e
33
- assert_equal 'translation missing: de, bar, foo', e.message
34
- end
35
-
36
- def test_invalid_pluralization_data_stores_entry_and_count
37
- force_invalid_pluralization_data
38
- rescue I18n::ArgumentError => e
39
- assert_equal [:bar], e.entry
40
- assert_equal 1, e.count
41
- end
42
-
43
- def test_invalid_pluralization_data_message
44
- force_invalid_pluralization_data
45
- rescue I18n::ArgumentError => e
46
- assert_equal 'translation data [:bar] can not be used with :count => 1', e.message
47
- end
48
-
49
- def test_missing_interpolation_argument_stores_key_and_string
50
- force_missing_interpolation_argument
51
- rescue I18n::ArgumentError => e
52
- assert_equal 'bar', e.key
53
- assert_equal "{{bar}}", e.string
54
- end
55
-
56
- def test_missing_interpolation_argument_message
57
- force_missing_interpolation_argument
58
- rescue I18n::ArgumentError => e
59
- assert_equal 'interpolation argument bar missing in "{{bar}}"', e.message
60
- end
61
-
62
- def test_reserved_interpolation_key_stores_key_and_string
63
- force_reserved_interpolation_key
64
- rescue I18n::ArgumentError => e
65
- assert_equal 'scope', e.key
66
- assert_equal "{{scope}}", e.string
67
- end
68
-
69
- def test_reserved_interpolation_key_message
70
- force_reserved_interpolation_key
71
- rescue I18n::ArgumentError => e
72
- assert_equal 'reserved key "scope" used in "{{scope}}"', e.message
73
- end
74
-
75
- private
76
- def force_invalid_locale
77
- I18n.backend.translate nil, :foo
78
- end
79
-
80
- def force_missing_translation_data
81
- I18n.backend.store_translations 'de', :bar => nil
82
- I18n.backend.translate 'de', :foo, :scope => :bar
83
- end
84
-
85
- def force_invalid_pluralization_data
86
- I18n.backend.store_translations 'de', :foo => [:bar]
87
- I18n.backend.translate 'de', :foo, :count => 1
88
- end
89
-
90
- def force_missing_interpolation_argument
91
- I18n.backend.store_translations 'de', :foo => "{{bar}}"
92
- I18n.backend.translate 'de', :foo, :baz => 'baz'
93
- end
94
-
95
- def force_reserved_interpolation_key
96
- I18n.backend.store_translations 'de', :foo => "{{scope}}"
97
- I18n.backend.translate 'de', :foo, :baz => 'baz'
98
- end
99
- end
@@ -1,124 +0,0 @@
1
- $:.unshift "lib"
2
-
3
- require 'rubygems'
4
- require 'test/unit'
5
- require 'i18n'
6
- require 'active_support'
7
-
8
- class I18nTest < Test::Unit::TestCase
9
- def setup
10
- I18n.backend.store_translations :'en', {
11
- :currency => {
12
- :format => {
13
- :separator => '.',
14
- :delimiter => ',',
15
- }
16
- }
17
- }
18
- end
19
-
20
- def test_uses_simple_backend_set_by_default
21
- assert I18n.backend.is_a?(I18n::Backend::Simple)
22
- end
23
-
24
- def test_can_set_backend
25
- assert_nothing_raised{ I18n.backend = self }
26
- assert_equal self, I18n.backend
27
- I18n.backend = I18n::Backend::Simple.new
28
- end
29
-
30
- def test_uses_en_us_as_default_locale_by_default
31
- assert_equal 'en', I18n.default_locale
32
- end
33
-
34
- def test_can_set_default_locale
35
- assert_nothing_raised{ I18n.default_locale = 'de' }
36
- assert_equal 'de', I18n.default_locale
37
- I18n.default_locale = 'en'
38
- end
39
-
40
- def test_uses_default_locale_as_locale_by_default
41
- assert_equal I18n.default_locale, I18n.locale
42
- end
43
-
44
- def test_can_set_locale_to_thread_current
45
- assert_nothing_raised{ I18n.locale = 'de' }
46
- assert_equal 'de', I18n.locale
47
- assert_equal 'de', Thread.current[:locale]
48
- I18n.locale = 'en'
49
- end
50
-
51
- def test_can_set_exception_handler
52
- assert_nothing_raised{ I18n.exception_handler = :custom_exception_handler }
53
- I18n.exception_handler = :default_exception_handler # revert it
54
- end
55
-
56
- def test_uses_custom_exception_handler
57
- I18n.exception_handler = :custom_exception_handler
58
- I18n.expects(:custom_exception_handler)
59
- I18n.translate :bogus
60
- I18n.exception_handler = :default_exception_handler # revert it
61
- end
62
-
63
- def test_delegates_translate_to_backend
64
- I18n.backend.expects(:translate).with 'de', :foo, {}
65
- I18n.translate :foo, :locale => 'de'
66
- end
67
-
68
- def test_delegates_localize_to_backend
69
- I18n.backend.expects(:localize).with 'de', :whatever, :default
70
- I18n.localize :whatever, :locale => 'de'
71
- end
72
-
73
- def test_translate_given_no_locale_uses_i18n_locale
74
- I18n.backend.expects(:translate).with 'en', :foo, {}
75
- I18n.translate :foo
76
- end
77
-
78
- def test_translate_on_nested_symbol_keys_works
79
- assert_equal ".", I18n.t(:'currency.format.separator')
80
- end
81
-
82
- def test_translate_with_nested_string_keys_works
83
- assert_equal ".", I18n.t('currency.format.separator')
84
- end
85
-
86
- def test_translate_with_array_as_scope_works
87
- assert_equal ".", I18n.t(:separator, :scope => ['currency.format'])
88
- end
89
-
90
- def test_translate_with_array_containing_dot_separated_strings_as_scope_works
91
- assert_equal ".", I18n.t(:separator, :scope => ['currency.format'])
92
- end
93
-
94
- def test_translate_with_key_array_and_dot_separated_scope_works
95
- assert_equal [".", ","], I18n.t(%w(separator delimiter), :scope => 'currency.format')
96
- end
97
-
98
- def test_translate_with_dot_separated_key_array_and_scope_works
99
- assert_equal [".", ","], I18n.t(%w(format.separator format.delimiter), :scope => 'currency')
100
- end
101
-
102
- def test_translate_with_options_using_scope_works
103
- I18n.backend.expects(:translate).with('de', :precision, :scope => :"currency.format")
104
- I18n.with_options :locale => 'de', :scope => :'currency.format' do |locale|
105
- locale.t :precision
106
- end
107
- end
108
-
109
- # def test_translate_given_no_args_raises_missing_translation_data
110
- # assert_equal "translation missing: en, no key", I18n.t
111
- # end
112
-
113
- def test_translate_given_a_bogus_key_raises_missing_translation_data
114
- assert_equal "translation missing: en, bogus", I18n.t(:bogus)
115
- end
116
-
117
- def test_localize_nil_raises_argument_error
118
- assert_raise(I18n::ArgumentError) { I18n.l nil }
119
- end
120
-
121
- def test_localize_object_raises_argument_error
122
- assert_raise(I18n::ArgumentError) { I18n.l Object.new }
123
- end
124
- end
@@ -1 +0,0 @@
1
- {:'en-Ruby' => {:foo => {:bar => "baz"}}}
@@ -1,3 +0,0 @@
1
- en-Yaml:
2
- foo:
3
- bar: baz
@@ -1,567 +0,0 @@
1
- # encoding: utf-8
2
- $:.unshift "lib"
3
-
4
- require 'rubygems'
5
- require 'test/unit'
6
- require 'i18n'
7
- require 'time'
8
- require 'yaml'
9
-
10
- module I18nSimpleBackendTestSetup
11
- def setup_backend
12
- # backend_reset_translations!
13
- @backend = I18n::Backend::Simple.new
14
- @backend.store_translations 'en', :foo => {:bar => 'bar', :baz => 'baz'}
15
- @locale_dir = File.dirname(__FILE__) + '/locale'
16
- end
17
- alias :setup :setup_backend
18
-
19
- # def backend_reset_translations!
20
- # I18n::Backend::Simple::ClassMethods.send :class_variable_set, :@@translations, {}
21
- # end
22
-
23
- def backend_get_translations
24
- # I18n::Backend::Simple::ClassMethods.send :class_variable_get, :@@translations
25
- @backend.instance_variable_get :@translations
26
- end
27
-
28
- def add_datetime_translations
29
- @backend.store_translations :'de', {
30
- :date => {
31
- :formats => {
32
- :default => "%d.%m.%Y",
33
- :short => "%d. %b",
34
- :long => "%d. %B %Y",
35
- },
36
- :day_names => %w(Sonntag Montag Dienstag Mittwoch Donnerstag Freitag Samstag),
37
- :abbr_day_names => %w(So Mo Di Mi Do Fr Sa),
38
- :month_names => %w(Januar Februar März April Mai Juni Juli August September Oktober November Dezember).unshift(nil),
39
- :abbr_month_names => %w(Jan Feb Mar Apr Mai Jun Jul Aug Sep Okt Nov Dez).unshift(nil),
40
- :order => [:day, :month, :year]
41
- },
42
- :time => {
43
- :formats => {
44
- :default => "%a, %d. %b %Y %H:%M:%S %z",
45
- :short => "%d. %b %H:%M",
46
- :long => "%d. %B %Y %H:%M",
47
- },
48
- :am => 'am',
49
- :pm => 'pm'
50
- },
51
- :datetime => {
52
- :distance_in_words => {
53
- :half_a_minute => 'half a minute',
54
- :less_than_x_seconds => {
55
- :one => 'less than 1 second',
56
- :other => 'less than {{count}} seconds'
57
- },
58
- :x_seconds => {
59
- :one => '1 second',
60
- :other => '{{count}} seconds'
61
- },
62
- :less_than_x_minutes => {
63
- :one => 'less than a minute',
64
- :other => 'less than {{count}} minutes'
65
- },
66
- :x_minutes => {
67
- :one => '1 minute',
68
- :other => '{{count}} minutes'
69
- },
70
- :about_x_hours => {
71
- :one => 'about 1 hour',
72
- :other => 'about {{count}} hours'
73
- },
74
- :x_days => {
75
- :one => '1 day',
76
- :other => '{{count}} days'
77
- },
78
- :about_x_months => {
79
- :one => 'about 1 month',
80
- :other => 'about {{count}} months'
81
- },
82
- :x_months => {
83
- :one => '1 month',
84
- :other => '{{count}} months'
85
- },
86
- :about_x_years => {
87
- :one => 'about 1 year',
88
- :other => 'about {{count}} year'
89
- },
90
- :over_x_years => {
91
- :one => 'over 1 year',
92
- :other => 'over {{count}} years'
93
- }
94
- }
95
- }
96
- }
97
- end
98
- end
99
-
100
- class I18nSimpleBackendTranslationsTest < Test::Unit::TestCase
101
- include I18nSimpleBackendTestSetup
102
-
103
- def test_store_translations_adds_translations # no, really :-)
104
- @backend.store_translations :'en', :foo => 'bar'
105
- assert_equal Hash[:'en', {:foo => 'bar'}], backend_get_translations
106
- end
107
-
108
- def test_store_translations_deep_merges_translations
109
- @backend.store_translations :'en', :foo => {:bar => 'bar'}
110
- @backend.store_translations :'en', :foo => {:baz => 'baz'}
111
- assert_equal Hash[:'en', {:foo => {:bar => 'bar', :baz => 'baz'}}], backend_get_translations
112
- end
113
-
114
- def test_store_translations_forces_locale_to_sym
115
- @backend.store_translations 'en', :foo => 'bar'
116
- assert_equal Hash[:'en', {:foo => 'bar'}], backend_get_translations
117
- end
118
-
119
- def test_store_translations_converts_keys_to_symbols
120
- # backend_reset_translations!
121
- @backend.store_translations 'en', 'foo' => {'bar' => 'bar', 'baz' => 'baz'}
122
- assert_equal Hash[:'en', {:foo => {:bar => 'bar', :baz => 'baz'}}], backend_get_translations
123
- end
124
- end
125
-
126
- class I18nSimpleBackendAvailableLocalesTest < Test::Unit::TestCase
127
- def test_available_locales
128
- @backend = I18n::Backend::Simple.new
129
- @backend.store_translations 'de', :foo => 'bar'
130
- @backend.store_translations 'en', :foo => 'foo'
131
-
132
- assert_equal ['de', 'en'], @backend.available_locales.map{|locale| locale.to_s }.sort
133
- end
134
- end
135
-
136
- class I18nSimpleBackendTranslateTest < Test::Unit::TestCase
137
- include I18nSimpleBackendTestSetup
138
-
139
- def test_translate_calls_lookup_with_locale_given
140
- @backend.expects(:lookup).with('de', :bar, [:foo]).returns 'bar'
141
- @backend.translate 'de', :bar, :scope => [:foo]
142
- end
143
-
144
- def test_given_no_keys_it_returns_the_default
145
- assert_equal 'default', @backend.translate('en', nil, :default => 'default')
146
- end
147
-
148
- def test_translate_given_a_symbol_as_a_default_translates_the_symbol
149
- assert_equal 'bar', @backend.translate('en', nil, :scope => [:foo], :default => :bar)
150
- end
151
-
152
- def test_translate_given_an_array_as_default_uses_the_first_match
153
- assert_equal 'bar', @backend.translate('en', :does_not_exist, :scope => [:foo], :default => [:does_not_exist_2, :bar])
154
- end
155
-
156
- def test_translate_given_an_array_of_inexistent_keys_it_raises_missing_translation_data
157
- assert_raise I18n::MissingTranslationData do
158
- @backend.translate('en', :does_not_exist, :scope => [:foo], :default => [:does_not_exist_2, :does_not_exist_3])
159
- end
160
- end
161
-
162
- def test_translate_an_array_of_keys_translates_all_of_them
163
- assert_equal %w(bar baz), @backend.translate('en', [:bar, :baz], :scope => [:foo])
164
- end
165
-
166
- def test_translate_calls_pluralize
167
- @backend.expects(:pluralize).with 'en', 'bar', 1
168
- @backend.translate 'en', :bar, :scope => [:foo], :count => 1
169
- end
170
-
171
- def test_translate_calls_interpolate
172
- @backend.expects(:interpolate).with 'en', 'bar', {}
173
- @backend.translate 'en', :bar, :scope => [:foo]
174
- end
175
-
176
- def test_translate_calls_interpolate_including_count_as_a_value
177
- @backend.expects(:interpolate).with 'en', 'bar', {:count => 1}
178
- @backend.translate 'en', :bar, :scope => [:foo], :count => 1
179
- end
180
-
181
- def test_translate_given_nil_as_a_locale_raises_an_argument_error
182
- assert_raise(I18n::InvalidLocale){ @backend.translate nil, :bar }
183
- end
184
-
185
- def test_translate_with_a_bogus_key_and_no_default_raises_missing_translation_data
186
- assert_raise(I18n::MissingTranslationData){ @backend.translate 'de', :bogus }
187
- end
188
- end
189
-
190
- class I18nSimpleBackendLookupTest < Test::Unit::TestCase
191
- include I18nSimpleBackendTestSetup
192
-
193
- # useful because this way we can use the backend with no key for interpolation/pluralization
194
- def test_lookup_given_nil_as_a_key_returns_nil
195
- assert_nil @backend.send(:lookup, 'en', nil)
196
- end
197
-
198
- def test_lookup_given_nested_keys_looks_up_a_nested_hash_value
199
- assert_equal 'bar', @backend.send(:lookup, 'en', :bar, [:foo])
200
- end
201
- end
202
-
203
- class I18nSimpleBackendPluralizeTest < Test::Unit::TestCase
204
- include I18nSimpleBackendTestSetup
205
-
206
- def test_pluralize_given_nil_returns_the_given_entry
207
- entry = {:one => 'bar', :other => 'bars'}
208
- assert_equal entry, @backend.send(:pluralize, nil, entry, nil)
209
- end
210
-
211
- def test_pluralize_given_0_returns_zero_string_if_zero_key_given
212
- assert_equal 'zero', @backend.send(:pluralize, nil, {:zero => 'zero', :one => 'bar', :other => 'bars'}, 0)
213
- end
214
-
215
- def test_pluralize_given_0_returns_plural_string_if_no_zero_key_given
216
- assert_equal 'bars', @backend.send(:pluralize, nil, {:one => 'bar', :other => 'bars'}, 0)
217
- end
218
-
219
- def test_pluralize_given_1_returns_singular_string
220
- assert_equal 'bar', @backend.send(:pluralize, nil, {:one => 'bar', :other => 'bars'}, 1)
221
- end
222
-
223
- def test_pluralize_given_2_returns_plural_string
224
- assert_equal 'bars', @backend.send(:pluralize, nil, {:one => 'bar', :other => 'bars'}, 2)
225
- end
226
-
227
- def test_pluralize_given_3_returns_plural_string
228
- assert_equal 'bars', @backend.send(:pluralize, nil, {:one => 'bar', :other => 'bars'}, 3)
229
- end
230
-
231
- def test_interpolate_given_incomplete_pluralization_data_raises_invalid_pluralization_data
232
- assert_raise(I18n::InvalidPluralizationData){ @backend.send(:pluralize, nil, {:one => 'bar'}, 2) }
233
- end
234
-
235
- # def test_interpolate_given_a_string_raises_invalid_pluralization_data
236
- # assert_raise(I18n::InvalidPluralizationData){ @backend.send(:pluralize, nil, 'bar', 2) }
237
- # end
238
- #
239
- # def test_interpolate_given_an_array_raises_invalid_pluralization_data
240
- # assert_raise(I18n::InvalidPluralizationData){ @backend.send(:pluralize, nil, ['bar'], 2) }
241
- # end
242
- end
243
-
244
- class I18nSimpleBackendInterpolateTest < Test::Unit::TestCase
245
- include I18nSimpleBackendTestSetup
246
-
247
- def test_interpolate_given_a_value_hash_interpolates_the_values_to_the_string
248
- assert_equal 'Hi David!', @backend.send(:interpolate, nil, 'Hi {{name}}!', :name => 'David')
249
- end
250
-
251
- def test_interpolate_given_a_value_hash_interpolates_into_unicode_string
252
- assert_equal 'Häi David!', @backend.send(:interpolate, nil, 'Häi {{name}}!', :name => 'David')
253
- end
254
-
255
- def test_interpolate_given_an_unicode_value_hash_interpolates_to_the_string
256
- assert_equal 'Hi ゆきひろ!', @backend.send(:interpolate, nil, 'Hi {{name}}!', :name => 'ゆきひろ')
257
- end
258
-
259
- def test_interpolate_given_an_unicode_value_hash_interpolates_into_unicode_string
260
- assert_equal 'こんにちは、ゆきひろさん!', @backend.send(:interpolate, nil, 'こんにちは、{{name}}さん!', :name => 'ゆきひろ')
261
- end
262
-
263
- if Kernel.const_defined?(:Encoding)
264
- def test_interpolate_given_a_non_unicode_multibyte_value_hash_interpolates_into_a_string_with_the_same_encoding
265
- assert_equal euc_jp('Hi ゆきひろ!'), @backend.send(:interpolate, nil, 'Hi {{name}}!', :name => euc_jp('ゆきひろ'))
266
- end
267
-
268
- def test_interpolate_given_an_unicode_value_hash_into_a_non_unicode_multibyte_string_raises_encoding_compatibility_error
269
- assert_raise(Encoding::CompatibilityError) do
270
- @backend.send(:interpolate, nil, euc_jp('こんにちは、{{name}}さん!'), :name => 'ゆきひろ')
271
- end
272
- end
273
-
274
- def test_interpolate_given_a_non_unicode_multibyte_value_hash_into_an_unicode_string_raises_encoding_compatibility_error
275
- assert_raise(Encoding::CompatibilityError) do
276
- @backend.send(:interpolate, nil, 'こんにちは、{{name}}さん!', :name => euc_jp('ゆきひろ'))
277
- end
278
- end
279
- end
280
-
281
- def test_interpolate_given_nil_as_a_string_returns_nil
282
- assert_nil @backend.send(:interpolate, nil, nil, :name => 'David')
283
- end
284
-
285
- def test_interpolate_given_an_non_string_as_a_string_returns_nil
286
- assert_equal [], @backend.send(:interpolate, nil, [], :name => 'David')
287
- end
288
-
289
- def test_interpolate_given_a_values_hash_with_nil_values_interpolates_the_string
290
- assert_equal 'Hi !', @backend.send(:interpolate, nil, 'Hi {{name}}!', {:name => nil})
291
- end
292
-
293
- def test_interpolate_given_an_empty_values_hash_raises_missing_interpolation_argument
294
- assert_raise(I18n::MissingInterpolationArgument) { @backend.send(:interpolate, nil, 'Hi {{name}}!', {}) }
295
- end
296
-
297
- def test_interpolate_given_a_string_containing_a_reserved_key_raises_reserved_interpolation_key
298
- assert_raise(I18n::ReservedInterpolationKey) { @backend.send(:interpolate, nil, '{{default}}', {:default => nil}) }
299
- end
300
-
301
- private
302
-
303
- def euc_jp(string)
304
- string.encode!(Encoding::EUC_JP)
305
- end
306
- end
307
-
308
- class I18nSimpleBackendLocalizeDateTest < Test::Unit::TestCase
309
- include I18nSimpleBackendTestSetup
310
-
311
- def setup
312
- @backend = I18n::Backend::Simple.new
313
- add_datetime_translations
314
- @date = Date.new 2008, 1, 1
315
- end
316
-
317
- def test_translate_given_the_short_format_it_uses_it
318
- assert_equal '01. Jan', @backend.localize('de', @date, :short)
319
- end
320
-
321
- def test_translate_given_the_long_format_it_uses_it
322
- assert_equal '01. Januar 2008', @backend.localize('de', @date, :long)
323
- end
324
-
325
- def test_translate_given_the_default_format_it_uses_it
326
- assert_equal '01.01.2008', @backend.localize('de', @date, :default)
327
- end
328
-
329
- def test_translate_given_a_day_name_format_it_returns_a_day_name
330
- assert_equal 'Dienstag', @backend.localize('de', @date, '%A')
331
- end
332
-
333
- def test_translate_given_an_abbr_day_name_format_it_returns_an_abbrevated_day_name
334
- assert_equal 'Di', @backend.localize('de', @date, '%a')
335
- end
336
-
337
- def test_translate_given_a_month_name_format_it_returns_a_month_name
338
- assert_equal 'Januar', @backend.localize('de', @date, '%B')
339
- end
340
-
341
- def test_translate_given_an_abbr_month_name_format_it_returns_an_abbrevated_month_name
342
- assert_equal 'Jan', @backend.localize('de', @date, '%b')
343
- end
344
-
345
- def test_translate_given_no_format_it_does_not_fail
346
- assert_nothing_raised{ @backend.localize 'de', @date }
347
- end
348
-
349
- def test_translate_given_an_unknown_format_it_does_not_fail
350
- assert_nothing_raised{ @backend.localize 'de', @date, '%x' }
351
- end
352
-
353
- def test_localize_nil_raises_argument_error
354
- assert_raise(I18n::ArgumentError) { @backend.localize 'de', nil }
355
- end
356
-
357
- def test_localize_object_raises_argument_error
358
- assert_raise(I18n::ArgumentError) { @backend.localize 'de', Object.new }
359
- end
360
- end
361
-
362
- class I18nSimpleBackendLocalizeDateTimeTest < Test::Unit::TestCase
363
- include I18nSimpleBackendTestSetup
364
-
365
- def setup
366
- @backend = I18n::Backend::Simple.new
367
- add_datetime_translations
368
- @morning = DateTime.new 2008, 1, 1, 6
369
- @evening = DateTime.new 2008, 1, 1, 18
370
- end
371
-
372
- def test_translate_given_the_short_format_it_uses_it
373
- assert_equal '01. Jan 06:00', @backend.localize('de', @morning, :short)
374
- end
375
-
376
- def test_translate_given_the_long_format_it_uses_it
377
- assert_equal '01. Januar 2008 06:00', @backend.localize('de', @morning, :long)
378
- end
379
-
380
- def test_translate_given_the_default_format_it_uses_it
381
- assert_equal 'Di, 01. Jan 2008 06:00:00 +0000', @backend.localize('de', @morning, :default)
382
- end
383
-
384
- def test_translate_given_a_day_name_format_it_returns_the_correct_day_name
385
- assert_equal 'Dienstag', @backend.localize('de', @morning, '%A')
386
- end
387
-
388
- def test_translate_given_an_abbr_day_name_format_it_returns_the_correct_abbrevated_day_name
389
- assert_equal 'Di', @backend.localize('de', @morning, '%a')
390
- end
391
-
392
- def test_translate_given_a_month_name_format_it_returns_the_correct_month_name
393
- assert_equal 'Januar', @backend.localize('de', @morning, '%B')
394
- end
395
-
396
- def test_translate_given_an_abbr_month_name_format_it_returns_the_correct_abbrevated_month_name
397
- assert_equal 'Jan', @backend.localize('de', @morning, '%b')
398
- end
399
-
400
- def test_translate_given_a_meridian_indicator_format_it_returns_the_correct_meridian_indicator
401
- assert_equal 'am', @backend.localize('de', @morning, '%p')
402
- assert_equal 'pm', @backend.localize('de', @evening, '%p')
403
- end
404
-
405
- def test_translate_given_no_format_it_does_not_fail
406
- assert_nothing_raised{ @backend.localize 'de', @morning }
407
- end
408
-
409
- def test_translate_given_an_unknown_format_it_does_not_fail
410
- assert_nothing_raised{ @backend.localize 'de', @morning, '%x' }
411
- end
412
- end
413
-
414
- class I18nSimpleBackendLocalizeTimeTest < Test::Unit::TestCase
415
- include I18nSimpleBackendTestSetup
416
-
417
- def setup
418
- @old_timezone, ENV['TZ'] = ENV['TZ'], 'UTC'
419
- @backend = I18n::Backend::Simple.new
420
- add_datetime_translations
421
- @morning = Time.parse '2008-01-01 6:00 UTC'
422
- @evening = Time.parse '2008-01-01 18:00 UTC'
423
- end
424
-
425
- def teardown
426
- @old_timezone ? ENV['TZ'] = @old_timezone : ENV.delete('TZ')
427
- end
428
-
429
- def test_translate_given_the_short_format_it_uses_it
430
- assert_equal '01. Jan 06:00', @backend.localize('de', @morning, :short)
431
- end
432
-
433
- def test_translate_given_the_long_format_it_uses_it
434
- assert_equal '01. Januar 2008 06:00', @backend.localize('de', @morning, :long)
435
- end
436
-
437
- # TODO Seems to break on Windows because ENV['TZ'] is ignored. What's a better way to do this?
438
- # def test_translate_given_the_default_format_it_uses_it
439
- # assert_equal 'Di, 01. Jan 2008 06:00:00 +0000', @backend.localize('de', @morning, :default)
440
- # end
441
-
442
- def test_translate_given_a_day_name_format_it_returns_the_correct_day_name
443
- assert_equal 'Dienstag', @backend.localize('de', @morning, '%A')
444
- end
445
-
446
- def test_translate_given_an_abbr_day_name_format_it_returns_the_correct_abbrevated_day_name
447
- assert_equal 'Di', @backend.localize('de', @morning, '%a')
448
- end
449
-
450
- def test_translate_given_a_month_name_format_it_returns_the_correct_month_name
451
- assert_equal 'Januar', @backend.localize('de', @morning, '%B')
452
- end
453
-
454
- def test_translate_given_an_abbr_month_name_format_it_returns_the_correct_abbrevated_month_name
455
- assert_equal 'Jan', @backend.localize('de', @morning, '%b')
456
- end
457
-
458
- def test_translate_given_a_meridian_indicator_format_it_returns_the_correct_meridian_indicator
459
- assert_equal 'am', @backend.localize('de', @morning, '%p')
460
- assert_equal 'pm', @backend.localize('de', @evening, '%p')
461
- end
462
-
463
- def test_translate_given_no_format_it_does_not_fail
464
- assert_nothing_raised{ @backend.localize 'de', @morning }
465
- end
466
-
467
- def test_translate_given_an_unknown_format_it_does_not_fail
468
- assert_nothing_raised{ @backend.localize 'de', @morning, '%x' }
469
- end
470
- end
471
-
472
- class I18nSimpleBackendHelperMethodsTest < Test::Unit::TestCase
473
- def setup
474
- @backend = I18n::Backend::Simple.new
475
- end
476
-
477
- def test_deep_symbolize_keys_works
478
- result = @backend.send :deep_symbolize_keys, 'foo' => {'bar' => {'baz' => 'bar'}}
479
- expected = {:foo => {:bar => {:baz => 'bar'}}}
480
- assert_equal expected, result
481
- end
482
- end
483
-
484
- class I18nSimpleBackendLoadTranslationsTest < Test::Unit::TestCase
485
- include I18nSimpleBackendTestSetup
486
-
487
- def test_load_translations_with_unknown_file_type_raises_exception
488
- assert_raise(I18n::UnknownFileType) { @backend.load_translations "#{@locale_dir}/en.xml" }
489
- end
490
-
491
- def test_load_translations_with_ruby_file_type_does_not_raise_exception
492
- assert_nothing_raised { @backend.load_translations "#{@locale_dir}/en.rb" }
493
- end
494
-
495
- def test_load_rb_loads_data_from_ruby_file
496
- data = @backend.send :load_rb, "#{@locale_dir}/en.rb"
497
- assert_equal({:'en-Ruby' => {:foo => {:bar => "baz"}}}, data)
498
- end
499
-
500
- def test_load_rb_loads_data_from_yaml_file
501
- data = @backend.send :load_yml, "#{@locale_dir}/en.yml"
502
- assert_equal({'en-Yaml' => {'foo' => {'bar' => 'baz'}}}, data)
503
- end
504
-
505
- def test_load_translations_loads_from_different_file_formats
506
- @backend = I18n::Backend::Simple.new
507
- @backend.load_translations "#{@locale_dir}/en.rb", "#{@locale_dir}/en.yml"
508
- expected = {
509
- :'en-Ruby' => {:foo => {:bar => "baz"}},
510
- :'en-Yaml' => {:foo => {:bar => "baz"}}
511
- }
512
- assert_equal expected, backend_get_translations
513
- end
514
- end
515
-
516
- class I18nSimpleBackendLoadPathTest < Test::Unit::TestCase
517
- include I18nSimpleBackendTestSetup
518
-
519
- def teardown
520
- I18n.load_path = []
521
- end
522
-
523
- def test_nested_load_paths_do_not_break_locale_loading
524
- @backend = I18n::Backend::Simple.new
525
- I18n.load_path = [[File.dirname(__FILE__) + '/locale/en.yml']]
526
- assert_nil backend_get_translations
527
- assert_nothing_raised { @backend.send :init_translations }
528
- assert_not_nil backend_get_translations
529
- end
530
-
531
- def test_adding_arrays_of_filenames_to_load_path_do_not_break_locale_loading
532
- @backend = I18n::Backend::Simple.new
533
- I18n.load_path << Dir[File.dirname(__FILE__) + '/locale/*.{rb,yml}']
534
- assert_nil backend_get_translations
535
- assert_nothing_raised { @backend.send :init_translations }
536
- assert_not_nil backend_get_translations
537
- end
538
- end
539
-
540
- class I18nSimpleBackendReloadTranslationsTest < Test::Unit::TestCase
541
- include I18nSimpleBackendTestSetup
542
-
543
- def setup
544
- @backend = I18n::Backend::Simple.new
545
- I18n.load_path = [File.dirname(__FILE__) + '/locale/en.yml']
546
- assert_nil backend_get_translations
547
- @backend.send :init_translations
548
- end
549
-
550
- def teardown
551
- I18n.load_path = []
552
- end
553
-
554
- def test_setup
555
- assert_not_nil backend_get_translations
556
- end
557
-
558
- def test_reload_translations_unloads_translations
559
- @backend.reload!
560
- assert_nil backend_get_translations
561
- end
562
-
563
- def test_reload_translations_uninitializes_translations
564
- @backend.reload!
565
- assert_equal @backend.initialized?, false
566
- end
567
- end