activesupport_csi 2.3.5.p6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (349) hide show
  1. data/CHANGELOG +1330 -0
  2. data/README +43 -0
  3. data/lib/active_support/all.rb +8 -0
  4. data/lib/active_support/backtrace_cleaner.rb +72 -0
  5. data/lib/active_support/base64.rb +33 -0
  6. data/lib/active_support/basic_object.rb +24 -0
  7. data/lib/active_support/buffered_logger.rb +127 -0
  8. data/lib/active_support/cache/compressed_mem_cache_store.rb +20 -0
  9. data/lib/active_support/cache/drb_store.rb +14 -0
  10. data/lib/active_support/cache/file_store.rb +72 -0
  11. data/lib/active_support/cache/mem_cache_store.rb +143 -0
  12. data/lib/active_support/cache/memory_store.rb +52 -0
  13. data/lib/active_support/cache/strategy/local_cache.rb +104 -0
  14. data/lib/active_support/cache/synchronized_memory_store.rb +47 -0
  15. data/lib/active_support/cache.rb +248 -0
  16. data/lib/active_support/callbacks.rb +279 -0
  17. data/lib/active_support/core_ext/array/access.rb +53 -0
  18. data/lib/active_support/core_ext/array/conversions.rb +197 -0
  19. data/lib/active_support/core_ext/array/extract_options.rb +20 -0
  20. data/lib/active_support/core_ext/array/grouping.rb +106 -0
  21. data/lib/active_support/core_ext/array/random_access.rb +12 -0
  22. data/lib/active_support/core_ext/array/wrapper.rb +24 -0
  23. data/lib/active_support/core_ext/array.rb +15 -0
  24. data/lib/active_support/core_ext/base64/encoding.rb +16 -0
  25. data/lib/active_support/core_ext/base64.rb +4 -0
  26. data/lib/active_support/core_ext/benchmark.rb +19 -0
  27. data/lib/active_support/core_ext/bigdecimal/conversions.rb +37 -0
  28. data/lib/active_support/core_ext/bigdecimal.rb +6 -0
  29. data/lib/active_support/core_ext/blank.rb +2 -0
  30. data/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +23 -0
  31. data/lib/active_support/core_ext/cgi.rb +5 -0
  32. data/lib/active_support/core_ext/class/attribute_accessors.rb +54 -0
  33. data/lib/active_support/core_ext/class/delegating_attributes.rb +47 -0
  34. data/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
  35. data/lib/active_support/core_ext/class/removal.rb +50 -0
  36. data/lib/active_support/core_ext/class.rb +4 -0
  37. data/lib/active_support/core_ext/date/behavior.rb +42 -0
  38. data/lib/active_support/core_ext/date/calculations.rb +231 -0
  39. data/lib/active_support/core_ext/date/conversions.rb +107 -0
  40. data/lib/active_support/core_ext/date.rb +10 -0
  41. data/lib/active_support/core_ext/date_time/calculations.rb +126 -0
  42. data/lib/active_support/core_ext/date_time/conversions.rb +96 -0
  43. data/lib/active_support/core_ext/date_time.rb +12 -0
  44. data/lib/active_support/core_ext/duplicable.rb +43 -0
  45. data/lib/active_support/core_ext/enumerable.rb +114 -0
  46. data/lib/active_support/core_ext/exception.rb +45 -0
  47. data/lib/active_support/core_ext/file/atomic.rb +46 -0
  48. data/lib/active_support/core_ext/file.rb +5 -0
  49. data/lib/active_support/core_ext/float/rounding.rb +24 -0
  50. data/lib/active_support/core_ext/float/time.rb +27 -0
  51. data/lib/active_support/core_ext/float.rb +7 -0
  52. data/lib/active_support/core_ext/hash/conversions.rb +264 -0
  53. data/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
  54. data/lib/active_support/core_ext/hash/diff.rb +19 -0
  55. data/lib/active_support/core_ext/hash/except.rb +25 -0
  56. data/lib/active_support/core_ext/hash/indifferent_access.rb +143 -0
  57. data/lib/active_support/core_ext/hash/keys.rb +52 -0
  58. data/lib/active_support/core_ext/hash/reverse_merge.rb +35 -0
  59. data/lib/active_support/core_ext/hash/slice.rb +40 -0
  60. data/lib/active_support/core_ext/hash.rb +14 -0
  61. data/lib/active_support/core_ext/integer/even_odd.rb +29 -0
  62. data/lib/active_support/core_ext/integer/inflections.rb +20 -0
  63. data/lib/active_support/core_ext/integer/time.rb +45 -0
  64. data/lib/active_support/core_ext/integer.rb +9 -0
  65. data/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  66. data/lib/active_support/core_ext/kernel/daemonizing.rb +7 -0
  67. data/lib/active_support/core_ext/kernel/debugger.rb +16 -0
  68. data/lib/active_support/core_ext/kernel/reporting.rb +59 -0
  69. data/lib/active_support/core_ext/kernel/requires.rb +24 -0
  70. data/lib/active_support/core_ext/kernel.rb +5 -0
  71. data/lib/active_support/core_ext/load_error.rb +38 -0
  72. data/lib/active_support/core_ext/logger.rb +145 -0
  73. data/lib/active_support/core_ext/module/aliasing.rb +74 -0
  74. data/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
  75. data/lib/active_support/core_ext/module/attr_internal.rb +32 -0
  76. data/lib/active_support/core_ext/module/attribute_accessors.rb +60 -0
  77. data/lib/active_support/core_ext/module/delegation.rb +135 -0
  78. data/lib/active_support/core_ext/module/inclusion.rb +30 -0
  79. data/lib/active_support/core_ext/module/introspection.rb +90 -0
  80. data/lib/active_support/core_ext/module/loading.rb +23 -0
  81. data/lib/active_support/core_ext/module/model_naming.rb +25 -0
  82. data/lib/active_support/core_ext/module/synchronization.rb +39 -0
  83. data/lib/active_support/core_ext/module.rb +23 -0
  84. data/lib/active_support/core_ext/name_error.rb +19 -0
  85. data/lib/active_support/core_ext/numeric/bytes.rb +50 -0
  86. data/lib/active_support/core_ext/numeric/conversions.rb +19 -0
  87. data/lib/active_support/core_ext/numeric/time.rb +81 -0
  88. data/lib/active_support/core_ext/numeric.rb +9 -0
  89. data/lib/active_support/core_ext/object/blank.rb +58 -0
  90. data/lib/active_support/core_ext/object/conversions.rb +15 -0
  91. data/lib/active_support/core_ext/object/extending.rb +80 -0
  92. data/lib/active_support/core_ext/object/instance_variables.rb +74 -0
  93. data/lib/active_support/core_ext/object/metaclass.rb +13 -0
  94. data/lib/active_support/core_ext/object/misc.rb +90 -0
  95. data/lib/active_support/core_ext/object.rb +6 -0
  96. data/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
  97. data/lib/active_support/core_ext/pathname.rb +7 -0
  98. data/lib/active_support/core_ext/proc.rb +12 -0
  99. data/lib/active_support/core_ext/process/daemon.rb +25 -0
  100. data/lib/active_support/core_ext/process.rb +1 -0
  101. data/lib/active_support/core_ext/range/blockless_step.rb +32 -0
  102. data/lib/active_support/core_ext/range/conversions.rb +27 -0
  103. data/lib/active_support/core_ext/range/include_range.rb +30 -0
  104. data/lib/active_support/core_ext/range/overlaps.rb +15 -0
  105. data/lib/active_support/core_ext/range.rb +11 -0
  106. data/lib/active_support/core_ext/rexml.rb +41 -0
  107. data/lib/active_support/core_ext/string/access.rb +106 -0
  108. data/lib/active_support/core_ext/string/behavior.rb +13 -0
  109. data/lib/active_support/core_ext/string/bytesize.rb +5 -0
  110. data/lib/active_support/core_ext/string/conversions.rb +28 -0
  111. data/lib/active_support/core_ext/string/filters.rb +26 -0
  112. data/lib/active_support/core_ext/string/inflections.rb +167 -0
  113. data/lib/active_support/core_ext/string/iterators.rb +23 -0
  114. data/lib/active_support/core_ext/string/multibyte.rb +81 -0
  115. data/lib/active_support/core_ext/string/output_safety.rb +48 -0
  116. data/lib/active_support/core_ext/string/starts_ends_with.rb +35 -0
  117. data/lib/active_support/core_ext/string/xchar.rb +11 -0
  118. data/lib/active_support/core_ext/string.rb +25 -0
  119. data/lib/active_support/core_ext/symbol.rb +14 -0
  120. data/lib/active_support/core_ext/time/behavior.rb +13 -0
  121. data/lib/active_support/core_ext/time/calculations.rb +304 -0
  122. data/lib/active_support/core_ext/time/conversions.rb +90 -0
  123. data/lib/active_support/core_ext/time/zones.rb +86 -0
  124. data/lib/active_support/core_ext/time.rb +42 -0
  125. data/lib/active_support/core_ext/try.rb +36 -0
  126. data/lib/active_support/core_ext/uri.rb +16 -0
  127. data/lib/active_support/core_ext.rb +8 -0
  128. data/lib/active_support/dependencies.rb +625 -0
  129. data/lib/active_support/deprecation.rb +196 -0
  130. data/lib/active_support/duration.rb +100 -0
  131. data/lib/active_support/gzip.rb +25 -0
  132. data/lib/active_support/inflections.rb +56 -0
  133. data/lib/active_support/inflector.rb +406 -0
  134. data/lib/active_support/json/backends/jsongem.rb +37 -0
  135. data/lib/active_support/json/backends/okjson.rb +644 -0
  136. data/lib/active_support/json/backends/yaml.rb +20 -0
  137. data/lib/active_support/json/decoding.rb +50 -0
  138. data/lib/active_support/json/encoders/date.rb +22 -0
  139. data/lib/active_support/json/encoders/date_time.rb +22 -0
  140. data/lib/active_support/json/encoders/enumerable.rb +17 -0
  141. data/lib/active_support/json/encoders/false_class.rb +7 -0
  142. data/lib/active_support/json/encoders/hash.rb +56 -0
  143. data/lib/active_support/json/encoders/nil_class.rb +7 -0
  144. data/lib/active_support/json/encoders/numeric.rb +21 -0
  145. data/lib/active_support/json/encoders/object.rb +10 -0
  146. data/lib/active_support/json/encoders/regexp.rb +9 -0
  147. data/lib/active_support/json/encoders/string.rb +9 -0
  148. data/lib/active_support/json/encoders/symbol.rb +5 -0
  149. data/lib/active_support/json/encoders/time.rb +22 -0
  150. data/lib/active_support/json/encoders/true_class.rb +7 -0
  151. data/lib/active_support/json/encoding.rb +102 -0
  152. data/lib/active_support/json/variable.rb +10 -0
  153. data/lib/active_support/json.rb +2 -0
  154. data/lib/active_support/locale/en.yml +33 -0
  155. data/lib/active_support/memoizable.rb +100 -0
  156. data/lib/active_support/message_encryptor.rb +70 -0
  157. data/lib/active_support/message_verifier.rb +79 -0
  158. data/lib/active_support/multibyte/chars.rb +707 -0
  159. data/lib/active_support/multibyte/exceptions.rb +8 -0
  160. data/lib/active_support/multibyte/unicode_database.rb +71 -0
  161. data/lib/active_support/multibyte/utils.rb +61 -0
  162. data/lib/active_support/multibyte.rb +57 -0
  163. data/lib/active_support/option_merger.rb +23 -0
  164. data/lib/active_support/ordered_hash.rb +141 -0
  165. data/lib/active_support/ordered_options.rb +19 -0
  166. data/lib/active_support/rescuable.rb +108 -0
  167. data/lib/active_support/secure_random.rb +199 -0
  168. data/lib/active_support/string_inquirer.rb +21 -0
  169. data/lib/active_support/test_case.rb +40 -0
  170. data/lib/active_support/testing/assertions.rb +65 -0
  171. data/lib/active_support/testing/declarative.rb +21 -0
  172. data/lib/active_support/testing/default.rb +9 -0
  173. data/lib/active_support/testing/deprecation.rb +57 -0
  174. data/lib/active_support/testing/performance.rb +452 -0
  175. data/lib/active_support/testing/setup_and_teardown.rb +91 -0
  176. data/lib/active_support/time_with_zone.rb +335 -0
  177. data/lib/active_support/values/time_zone.rb +404 -0
  178. data/lib/active_support/values/unicode_tables.dat +0 -0
  179. data/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
  180. data/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
  181. data/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
  182. data/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
  183. data/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
  184. data/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
  185. data/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
  186. data/lib/active_support/vendor/builder-2.1.2/builder.rb +13 -0
  187. data/lib/active_support/vendor/i18n-0.1.3/MIT-LICENSE +20 -0
  188. data/lib/active_support/vendor/i18n-0.1.3/README.textile +20 -0
  189. data/lib/active_support/vendor/i18n-0.1.3/Rakefile +5 -0
  190. data/lib/active_support/vendor/i18n-0.1.3/i18n.gemspec +27 -0
  191. data/lib/active_support/vendor/i18n-0.1.3/lib/i18n/backend/simple.rb +214 -0
  192. data/lib/active_support/vendor/i18n-0.1.3/lib/i18n/exceptions.rb +53 -0
  193. data/lib/active_support/vendor/i18n-0.1.3/lib/i18n.rb +199 -0
  194. data/lib/active_support/vendor/i18n-0.1.3/test/all.rb +5 -0
  195. data/lib/active_support/vendor/i18n-0.1.3/test/i18n_exceptions_test.rb +99 -0
  196. data/lib/active_support/vendor/i18n-0.1.3/test/i18n_test.rb +124 -0
  197. data/lib/active_support/vendor/i18n-0.1.3/test/locale/en.rb +1 -0
  198. data/lib/active_support/vendor/i18n-0.1.3/test/locale/en.yml +3 -0
  199. data/lib/active_support/vendor/i18n-0.1.3/test/simple_backend_test.rb +567 -0
  200. data/lib/active_support/vendor/memcache-client-1.7.4/memcache.rb +1107 -0
  201. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone.rb +47 -0
  202. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone_info.rb +228 -0
  203. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Algiers.rb +55 -0
  204. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Cairo.rb +219 -0
  205. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Casablanca.rb +40 -0
  206. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Harare.rb +18 -0
  207. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb +25 -0
  208. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Monrovia.rb +22 -0
  209. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Nairobi.rb +23 -0
  210. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +166 -0
  211. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +86 -0
  212. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Bogota.rb +23 -0
  213. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Caracas.rb +23 -0
  214. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chicago.rb +283 -0
  215. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chihuahua.rb +136 -0
  216. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Denver.rb +204 -0
  217. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Godthab.rb +161 -0
  218. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Guatemala.rb +27 -0
  219. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Halifax.rb +274 -0
  220. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Indiana/Indianapolis.rb +149 -0
  221. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Juneau.rb +194 -0
  222. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/La_Paz.rb +22 -0
  223. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Lima.rb +35 -0
  224. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Los_Angeles.rb +232 -0
  225. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mazatlan.rb +139 -0
  226. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mexico_City.rb +144 -0
  227. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Monterrey.rb +131 -0
  228. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/New_York.rb +282 -0
  229. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Phoenix.rb +30 -0
  230. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Regina.rb +74 -0
  231. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Santiago.rb +205 -0
  232. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Sao_Paulo.rb +171 -0
  233. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/St_Johns.rb +288 -0
  234. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Tijuana.rb +196 -0
  235. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Almaty.rb +67 -0
  236. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baghdad.rb +73 -0
  237. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baku.rb +161 -0
  238. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Bangkok.rb +20 -0
  239. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Chongqing.rb +33 -0
  240. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +30 -0
  241. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Dhaka.rb +27 -0
  242. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Hong_Kong.rb +87 -0
  243. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Irkutsk.rb +165 -0
  244. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jakarta.rb +30 -0
  245. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jerusalem.rb +163 -0
  246. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kabul.rb +20 -0
  247. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kamchatka.rb +163 -0
  248. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Karachi.rb +30 -0
  249. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Katmandu.rb +20 -0
  250. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kolkata.rb +25 -0
  251. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Krasnoyarsk.rb +163 -0
  252. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuala_Lumpur.rb +31 -0
  253. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuwait.rb +18 -0
  254. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Magadan.rb +163 -0
  255. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Muscat.rb +18 -0
  256. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Novosibirsk.rb +164 -0
  257. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Rangoon.rb +24 -0
  258. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Riyadh.rb +18 -0
  259. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Seoul.rb +34 -0
  260. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Shanghai.rb +35 -0
  261. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Singapore.rb +33 -0
  262. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Taipei.rb +59 -0
  263. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tashkent.rb +47 -0
  264. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tbilisi.rb +78 -0
  265. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tehran.rb +121 -0
  266. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tokyo.rb +30 -0
  267. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Ulaanbaatar.rb +65 -0
  268. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Urumqi.rb +33 -0
  269. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Vladivostok.rb +164 -0
  270. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yakutsk.rb +163 -0
  271. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yekaterinburg.rb +165 -0
  272. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yerevan.rb +165 -0
  273. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Azores.rb +270 -0
  274. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Cape_Verde.rb +23 -0
  275. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/South_Georgia.rb +18 -0
  276. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Adelaide.rb +187 -0
  277. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Brisbane.rb +35 -0
  278. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Darwin.rb +29 -0
  279. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Hobart.rb +193 -0
  280. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Melbourne.rb +185 -0
  281. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Perth.rb +37 -0
  282. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Sydney.rb +185 -0
  283. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Etc/UTC.rb +16 -0
  284. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Amsterdam.rb +228 -0
  285. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Athens.rb +185 -0
  286. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Belgrade.rb +163 -0
  287. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Berlin.rb +188 -0
  288. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bratislava.rb +13 -0
  289. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Brussels.rb +232 -0
  290. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bucharest.rb +181 -0
  291. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Budapest.rb +197 -0
  292. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Copenhagen.rb +179 -0
  293. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Dublin.rb +276 -0
  294. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Helsinki.rb +163 -0
  295. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Istanbul.rb +218 -0
  296. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Kiev.rb +168 -0
  297. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Lisbon.rb +268 -0
  298. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Ljubljana.rb +13 -0
  299. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/London.rb +288 -0
  300. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Madrid.rb +211 -0
  301. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Minsk.rb +170 -0
  302. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Moscow.rb +181 -0
  303. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Paris.rb +232 -0
  304. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Prague.rb +187 -0
  305. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Riga.rb +176 -0
  306. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Rome.rb +215 -0
  307. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sarajevo.rb +13 -0
  308. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Skopje.rb +13 -0
  309. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sofia.rb +173 -0
  310. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Stockholm.rb +165 -0
  311. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Tallinn.rb +172 -0
  312. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vienna.rb +183 -0
  313. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vilnius.rb +170 -0
  314. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Warsaw.rb +212 -0
  315. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Zagreb.rb +13 -0
  316. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Auckland.rb +202 -0
  317. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Fiji.rb +23 -0
  318. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Guam.rb +22 -0
  319. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Honolulu.rb +28 -0
  320. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Majuro.rb +20 -0
  321. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb +25 -0
  322. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Noumea.rb +25 -0
  323. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Pago_Pago.rb +26 -0
  324. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Port_Moresby.rb +20 -0
  325. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Tongatapu.rb +27 -0
  326. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/info_timezone.rb +52 -0
  327. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone.rb +51 -0
  328. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone_info.rb +44 -0
  329. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/offset_rationals.rb +98 -0
  330. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/ruby_core_support.rb +56 -0
  331. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/time_or_datetime.rb +292 -0
  332. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone.rb +508 -0
  333. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_definition.rb +56 -0
  334. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_info.rb +40 -0
  335. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_offset_info.rb +94 -0
  336. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_period.rb +198 -0
  337. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_transition_info.rb +129 -0
  338. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo.rb +33 -0
  339. data/lib/active_support/vendor.rb +28 -0
  340. data/lib/active_support/version.rb +9 -0
  341. data/lib/active_support/whiny_nil.rb +64 -0
  342. data/lib/active_support/xml_mini/jdom.rb +162 -0
  343. data/lib/active_support/xml_mini/libxml.rb +133 -0
  344. data/lib/active_support/xml_mini/nokogiri.rb +69 -0
  345. data/lib/active_support/xml_mini/rexml.rb +108 -0
  346. data/lib/active_support/xml_mini.rb +31 -0
  347. data/lib/active_support.rb +59 -0
  348. data/lib/activesupport.rb +2 -0
  349. metadata +418 -0
@@ -0,0 +1,567 @@
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