activesupport 2.3.18 → 3.0.0.beta

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 (403) hide show
  1. data/CHANGELOG +30 -53
  2. data/lib/active_support.rb +43 -31
  3. data/lib/active_support/all.rb +3 -7
  4. data/lib/active_support/backtrace_cleaner.rb +24 -8
  5. data/lib/active_support/base64.rb +9 -0
  6. data/lib/active_support/benchmarkable.rb +60 -0
  7. data/lib/active_support/buffered_logger.rb +12 -9
  8. data/lib/active_support/cache.rb +75 -55
  9. data/lib/active_support/cache/compressed_mem_cache_store.rb +2 -0
  10. data/lib/active_support/cache/file_store.rb +35 -17
  11. data/lib/active_support/cache/mem_cache_store.rb +29 -20
  12. data/lib/active_support/cache/memory_store.rb +18 -17
  13. data/lib/active_support/cache/strategy/local_cache.rb +9 -1
  14. data/lib/active_support/callbacks.rb +490 -169
  15. data/lib/active_support/concern.rb +29 -0
  16. data/lib/active_support/configurable.rb +35 -0
  17. data/lib/active_support/core_ext.rb +2 -7
  18. data/lib/active_support/core_ext/array.rb +2 -10
  19. data/lib/active_support/core_ext/array/access.rb +39 -46
  20. data/lib/active_support/core_ext/array/conversions.rb +146 -182
  21. data/lib/active_support/core_ext/array/extract_options.rb +12 -18
  22. data/lib/active_support/core_ext/array/grouping.rb +87 -93
  23. data/lib/active_support/core_ext/array/random_access.rb +4 -40
  24. data/lib/active_support/core_ext/array/uniq_by.rb +17 -0
  25. data/lib/active_support/core_ext/array/wrap.rb +22 -0
  26. data/lib/active_support/core_ext/big_decimal.rb +1 -0
  27. data/lib/active_support/core_ext/big_decimal/conversions.rb +27 -0
  28. data/lib/active_support/core_ext/cgi.rb +0 -4
  29. data/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +16 -20
  30. data/lib/active_support/core_ext/class.rb +0 -2
  31. data/lib/active_support/core_ext/class/attribute.rb +8 -39
  32. data/lib/active_support/core_ext/class/attribute_accessors.rb +31 -35
  33. data/lib/active_support/core_ext/class/delegating_attributes.rb +34 -40
  34. data/lib/active_support/core_ext/class/inheritable_attributes.rb +100 -16
  35. data/lib/active_support/core_ext/date/acts_like.rb +8 -0
  36. data/lib/active_support/core_ext/date/calculations.rb +218 -238
  37. data/lib/active_support/core_ext/date/conversions.rb +87 -96
  38. data/lib/active_support/core_ext/date/freeze.rb +31 -0
  39. data/lib/active_support/core_ext/date_time/acts_like.rb +13 -0
  40. data/lib/active_support/core_ext/date_time/calculations.rb +97 -110
  41. data/lib/active_support/core_ext/date_time/conversions.rb +83 -95
  42. data/lib/active_support/core_ext/date_time/zones.rb +17 -0
  43. data/lib/active_support/core_ext/enumerable.rb +14 -15
  44. data/lib/active_support/core_ext/exception.rb +1 -43
  45. data/lib/active_support/core_ext/file.rb +0 -4
  46. data/lib/active_support/core_ext/file/atomic.rb +34 -41
  47. data/lib/active_support/core_ext/float.rb +0 -6
  48. data/lib/active_support/core_ext/float/rounding.rb +15 -20
  49. data/lib/active_support/core_ext/hash.rb +8 -14
  50. data/lib/active_support/core_ext/hash/conversions.rb +236 -236
  51. data/lib/active_support/core_ext/hash/deep_merge.rb +12 -19
  52. data/lib/active_support/core_ext/hash/diff.rb +11 -17
  53. data/lib/active_support/core_ext/hash/except.rb +21 -22
  54. data/lib/active_support/core_ext/hash/indifferent_access.rb +8 -137
  55. data/lib/active_support/core_ext/hash/keys.rb +38 -45
  56. data/lib/active_support/core_ext/hash/reverse_merge.rb +25 -32
  57. data/lib/active_support/core_ext/hash/slice.rb +35 -37
  58. data/lib/active_support/core_ext/integer.rb +1 -7
  59. data/lib/active_support/core_ext/integer/inflections.rb +10 -16
  60. data/lib/active_support/core_ext/integer/multiple.rb +6 -0
  61. data/lib/active_support/core_ext/integer/time.rb +36 -42
  62. data/lib/active_support/core_ext/kernel/reporting.rb +9 -7
  63. data/lib/active_support/core_ext/kernel/requires.rb +3 -1
  64. data/lib/active_support/core_ext/load_error.rb +16 -33
  65. data/lib/active_support/core_ext/logger.rb +3 -2
  66. data/lib/active_support/core_ext/module.rb +3 -16
  67. data/lib/active_support/core_ext/module/aliasing.rb +64 -68
  68. data/lib/active_support/core_ext/module/attr_accessor_with_default.rb +1 -1
  69. data/lib/active_support/core_ext/module/attr_internal.rb +4 -4
  70. data/lib/active_support/core_ext/module/attribute_accessors.rb +36 -41
  71. data/lib/active_support/core_ext/module/delegation.rb +1 -1
  72. data/lib/active_support/core_ext/module/deprecation.rb +9 -0
  73. data/lib/active_support/core_ext/module/introspection.rb +77 -79
  74. data/lib/active_support/core_ext/module/loading.rb +2 -0
  75. data/lib/active_support/core_ext/module/synchronization.rb +4 -1
  76. data/lib/active_support/core_ext/name_error.rb +3 -4
  77. data/lib/active_support/core_ext/numeric.rb +1 -8
  78. data/lib/active_support/core_ext/numeric/bytes.rb +35 -41
  79. data/lib/active_support/core_ext/numeric/time.rb +70 -74
  80. data/lib/active_support/core_ext/object.rb +4 -2
  81. data/lib/active_support/core_ext/object/acts_like.rb +10 -0
  82. data/lib/active_support/core_ext/object/conversions.rb +4 -15
  83. data/lib/active_support/core_ext/object/duplicable.rb +65 -0
  84. data/lib/active_support/core_ext/object/instance_variables.rb +0 -7
  85. data/lib/active_support/core_ext/object/metaclass.rb +5 -6
  86. data/lib/active_support/core_ext/object/misc.rb +2 -93
  87. data/lib/active_support/core_ext/object/returning.rb +42 -0
  88. data/lib/active_support/core_ext/object/to_param.rb +49 -0
  89. data/lib/active_support/core_ext/object/to_query.rb +27 -0
  90. data/lib/active_support/core_ext/{try.rb → object/try.rb} +4 -4
  91. data/lib/active_support/core_ext/object/with_options.rb +24 -0
  92. data/lib/active_support/core_ext/proc.rb +6 -4
  93. data/lib/active_support/core_ext/process/daemon.rb +17 -19
  94. data/lib/active_support/core_ext/range.rb +2 -9
  95. data/lib/active_support/core_ext/range/blockless_step.rb +24 -27
  96. data/lib/active_support/core_ext/range/conversions.rb +17 -23
  97. data/lib/active_support/core_ext/range/include_range.rb +18 -27
  98. data/lib/active_support/core_ext/range/overlaps.rb +6 -13
  99. data/lib/active_support/core_ext/regexp.rb +5 -0
  100. data/lib/active_support/core_ext/rexml.rb +12 -7
  101. data/lib/active_support/core_ext/string.rb +6 -19
  102. data/lib/active_support/core_ext/string/access.rb +88 -95
  103. data/lib/active_support/core_ext/string/behavior.rb +6 -12
  104. data/lib/active_support/core_ext/string/conversions.rb +19 -21
  105. data/lib/active_support/core_ext/string/exclude.rb +6 -0
  106. data/lib/active_support/core_ext/string/filters.rb +17 -23
  107. data/lib/active_support/core_ext/string/inflections.rb +146 -153
  108. data/lib/active_support/{vendor/i18n-0.4.1/i18n/core_ext/string/interpolate.rb → core_ext/string/interpolation.rb} +8 -15
  109. data/lib/active_support/core_ext/string/multibyte.rb +68 -74
  110. data/lib/active_support/core_ext/string/output_safety.rb +21 -17
  111. data/lib/active_support/core_ext/string/starts_ends_with.rb +3 -32
  112. data/lib/active_support/core_ext/string/xchar.rb +10 -3
  113. data/lib/active_support/core_ext/time/acts_like.rb +8 -0
  114. data/lib/active_support/core_ext/time/calculations.rb +276 -308
  115. data/lib/active_support/core_ext/time/conversions.rb +78 -84
  116. data/lib/active_support/core_ext/time/marshal_with_utc_flag.rb +22 -0
  117. data/lib/active_support/core_ext/time/publicize_conversion_methods.rb +10 -0
  118. data/lib/active_support/core_ext/time/zones.rb +73 -81
  119. data/lib/active_support/core_ext/uri.rb +2 -1
  120. data/lib/active_support/dependencies.rb +38 -48
  121. data/lib/active_support/dependencies/autoload.rb +49 -0
  122. data/lib/active_support/deprecation.rb +9 -195
  123. data/lib/active_support/deprecation/behaviors.rb +38 -0
  124. data/lib/active_support/deprecation/method_wrappers.rb +29 -0
  125. data/lib/active_support/deprecation/proxy_wrappers.rb +74 -0
  126. data/lib/active_support/deprecation/reporting.rb +55 -0
  127. data/lib/active_support/duration.rb +6 -2
  128. data/lib/active_support/hash_with_indifferent_access.rb +137 -0
  129. data/lib/active_support/i18n.rb +2 -0
  130. data/lib/active_support/inflections.rb +1 -1
  131. data/lib/active_support/inflector.rb +4 -406
  132. data/lib/active_support/inflector/inflections.rb +211 -0
  133. data/lib/active_support/inflector/methods.rb +139 -0
  134. data/lib/active_support/inflector/transliterate.rb +61 -0
  135. data/lib/active_support/json/backends/jsongem.rb +16 -10
  136. data/lib/active_support/json/backends/yaml.rb +72 -2
  137. data/lib/active_support/json/decoding.rb +2 -16
  138. data/lib/active_support/json/encoding.rb +153 -33
  139. data/lib/active_support/json/variable.rb +4 -3
  140. data/lib/active_support/locale/en.yml +1 -4
  141. data/lib/active_support/memoizable.rb +7 -6
  142. data/lib/active_support/message_encryptor.rb +1 -0
  143. data/lib/active_support/message_verifier.rb +12 -29
  144. data/lib/active_support/multibyte.rb +9 -4
  145. data/lib/active_support/multibyte/chars.rb +25 -17
  146. data/lib/active_support/multibyte/unicode_database.rb +5 -5
  147. data/lib/active_support/multibyte/utils.rb +1 -1
  148. data/lib/active_support/notifications.rb +77 -0
  149. data/lib/active_support/notifications/fanout.rb +69 -0
  150. data/lib/active_support/notifications/instrumenter.rb +50 -0
  151. data/lib/active_support/option_merger.rb +2 -0
  152. data/lib/active_support/ordered_hash.rb +33 -37
  153. data/lib/active_support/ordered_options.rb +3 -1
  154. data/lib/active_support/railtie.rb +64 -0
  155. data/lib/active_support/rescuable.rb +11 -6
  156. data/lib/active_support/ruby/shim.rb +19 -0
  157. data/lib/active_support/test_case.rb +8 -1
  158. data/lib/active_support/testing/assertions.rb +2 -14
  159. data/lib/active_support/testing/declarative.rb +31 -12
  160. data/lib/active_support/testing/deprecation.rb +8 -10
  161. data/lib/active_support/testing/isolation.rb +153 -0
  162. data/lib/active_support/testing/pending.rb +48 -0
  163. data/lib/active_support/testing/performance.rb +342 -339
  164. data/lib/active_support/testing/setup_and_teardown.rb +48 -31
  165. data/lib/active_support/time.rb +34 -0
  166. data/lib/active_support/time/autoload.rb +5 -0
  167. data/lib/active_support/time_with_zone.rb +18 -12
  168. data/lib/active_support/values/time_zone.rb +97 -93
  169. data/lib/active_support/version.rb +3 -3
  170. data/lib/active_support/whiny_nil.rb +1 -4
  171. data/lib/active_support/xml_mini.rb +2 -0
  172. data/lib/active_support/xml_mini/jdom.rb +13 -7
  173. data/lib/active_support/xml_mini/libxml.rb +19 -12
  174. data/lib/active_support/xml_mini/libxmlsax.rb +19 -9
  175. data/lib/active_support/xml_mini/nokogiri.rb +18 -12
  176. data/lib/active_support/xml_mini/nokogirisax.rb +15 -6
  177. data/lib/active_support/xml_mini/rexml.rb +24 -9
  178. metadata +94 -244
  179. data/lib/active_support/cache/drb_store.rb +0 -14
  180. data/lib/active_support/core_ext/array/wrapper.rb +0 -24
  181. data/lib/active_support/core_ext/base64.rb +0 -4
  182. data/lib/active_support/core_ext/base64/encoding.rb +0 -16
  183. data/lib/active_support/core_ext/bigdecimal.rb +0 -6
  184. data/lib/active_support/core_ext/bigdecimal/conversions.rb +0 -37
  185. data/lib/active_support/core_ext/blank.rb +0 -2
  186. data/lib/active_support/core_ext/class/removal.rb +0 -50
  187. data/lib/active_support/core_ext/date.rb +0 -10
  188. data/lib/active_support/core_ext/date/behavior.rb +0 -42
  189. data/lib/active_support/core_ext/date_time.rb +0 -12
  190. data/lib/active_support/core_ext/duplicable.rb +0 -43
  191. data/lib/active_support/core_ext/float/time.rb +0 -27
  192. data/lib/active_support/core_ext/integer/even_odd.rb +0 -29
  193. data/lib/active_support/core_ext/kernel/singleton_class.rb +0 -13
  194. data/lib/active_support/core_ext/module/model_naming.rb +0 -25
  195. data/lib/active_support/core_ext/module/remove_method.rb +0 -6
  196. data/lib/active_support/core_ext/numeric/conversions.rb +0 -19
  197. data/lib/active_support/core_ext/object/extending.rb +0 -80
  198. data/lib/active_support/core_ext/object/singleton_class.rb +0 -13
  199. data/lib/active_support/core_ext/pathname.rb +0 -7
  200. data/lib/active_support/core_ext/pathname/clean_within.rb +0 -14
  201. data/lib/active_support/core_ext/string/bytesize.rb +0 -5
  202. data/lib/active_support/core_ext/string/iterators.rb +0 -23
  203. data/lib/active_support/core_ext/symbol.rb +0 -14
  204. data/lib/active_support/core_ext/time.rb +0 -46
  205. data/lib/active_support/core_ext/time/behavior.rb +0 -13
  206. data/lib/active_support/json/backends/okjson.rb +0 -644
  207. data/lib/active_support/json/backends/yajl.rb +0 -40
  208. data/lib/active_support/json/encoders/date.rb +0 -22
  209. data/lib/active_support/json/encoders/date_time.rb +0 -22
  210. data/lib/active_support/json/encoders/enumerable.rb +0 -17
  211. data/lib/active_support/json/encoders/false_class.rb +0 -7
  212. data/lib/active_support/json/encoders/hash.rb +0 -56
  213. data/lib/active_support/json/encoders/nil_class.rb +0 -7
  214. data/lib/active_support/json/encoders/numeric.rb +0 -21
  215. data/lib/active_support/json/encoders/object.rb +0 -10
  216. data/lib/active_support/json/encoders/regexp.rb +0 -9
  217. data/lib/active_support/json/encoders/string.rb +0 -9
  218. data/lib/active_support/json/encoders/symbol.rb +0 -5
  219. data/lib/active_support/json/encoders/time.rb +0 -22
  220. data/lib/active_support/json/encoders/true_class.rb +0 -7
  221. data/lib/active_support/vendor.rb +0 -36
  222. data/lib/active_support/vendor/builder-2.1.2/blankslate.rb +0 -113
  223. data/lib/active_support/vendor/builder-2.1.2/builder.rb +0 -13
  224. data/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +0 -20
  225. data/lib/active_support/vendor/builder-2.1.2/builder/css.rb +0 -250
  226. data/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +0 -115
  227. data/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +0 -139
  228. data/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +0 -63
  229. data/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +0 -328
  230. data/lib/active_support/vendor/i18n-0.4.1/i18n.rb +0 -322
  231. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend.rb +0 -20
  232. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/active_record.rb +0 -61
  233. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/active_record/missing.rb +0 -65
  234. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/active_record/store_procs.rb +0 -38
  235. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/active_record/translation.rb +0 -93
  236. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/base.rb +0 -237
  237. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/cache.rb +0 -77
  238. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/cascade.rb +0 -57
  239. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/chain.rb +0 -77
  240. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/cldr.rb +0 -100
  241. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/fallbacks.rb +0 -69
  242. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/flatten.rb +0 -113
  243. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/gettext.rb +0 -75
  244. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/interpolation_compiler.rb +0 -123
  245. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/key_value.rb +0 -102
  246. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/memoize.rb +0 -48
  247. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/metadata.rb +0 -65
  248. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/pluralization.rb +0 -57
  249. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/simple.rb +0 -87
  250. data/lib/active_support/vendor/i18n-0.4.1/i18n/backend/transliterator.rb +0 -98
  251. data/lib/active_support/vendor/i18n-0.4.1/i18n/config.rb +0 -84
  252. data/lib/active_support/vendor/i18n-0.4.1/i18n/core_ext/hash.rb +0 -29
  253. data/lib/active_support/vendor/i18n-0.4.1/i18n/exceptions.rb +0 -61
  254. data/lib/active_support/vendor/i18n-0.4.1/i18n/gettext.rb +0 -27
  255. data/lib/active_support/vendor/i18n-0.4.1/i18n/gettext/helpers.rb +0 -65
  256. data/lib/active_support/vendor/i18n-0.4.1/i18n/gettext/po_parser.rb +0 -329
  257. data/lib/active_support/vendor/i18n-0.4.1/i18n/locale.rb +0 -6
  258. data/lib/active_support/vendor/i18n-0.4.1/i18n/locale/fallbacks.rb +0 -98
  259. data/lib/active_support/vendor/i18n-0.4.1/i18n/locale/tag.rb +0 -28
  260. data/lib/active_support/vendor/i18n-0.4.1/i18n/locale/tag/parents.rb +0 -24
  261. data/lib/active_support/vendor/i18n-0.4.1/i18n/locale/tag/rfc4646.rb +0 -76
  262. data/lib/active_support/vendor/i18n-0.4.1/i18n/locale/tag/simple.rb +0 -41
  263. data/lib/active_support/vendor/i18n-0.4.1/i18n/version.rb +0 -3
  264. data/lib/active_support/vendor/memcache-client-1.7.4/memcache.rb +0 -1107
  265. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo.rb +0 -33
  266. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone.rb +0 -47
  267. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone_info.rb +0 -228
  268. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Algiers.rb +0 -55
  269. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Cairo.rb +0 -219
  270. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Casablanca.rb +0 -40
  271. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Harare.rb +0 -18
  272. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb +0 -25
  273. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Monrovia.rb +0 -22
  274. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Nairobi.rb +0 -23
  275. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +0 -166
  276. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +0 -86
  277. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Bogota.rb +0 -23
  278. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Caracas.rb +0 -23
  279. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chicago.rb +0 -283
  280. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chihuahua.rb +0 -136
  281. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Denver.rb +0 -204
  282. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Godthab.rb +0 -161
  283. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Guatemala.rb +0 -27
  284. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Halifax.rb +0 -274
  285. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Indiana/Indianapolis.rb +0 -149
  286. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Juneau.rb +0 -194
  287. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/La_Paz.rb +0 -22
  288. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Lima.rb +0 -35
  289. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Los_Angeles.rb +0 -232
  290. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mazatlan.rb +0 -139
  291. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mexico_City.rb +0 -144
  292. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Monterrey.rb +0 -131
  293. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/New_York.rb +0 -282
  294. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Phoenix.rb +0 -30
  295. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Regina.rb +0 -74
  296. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Santiago.rb +0 -205
  297. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Sao_Paulo.rb +0 -171
  298. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/St_Johns.rb +0 -288
  299. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Tijuana.rb +0 -196
  300. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Almaty.rb +0 -67
  301. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baghdad.rb +0 -73
  302. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baku.rb +0 -161
  303. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Bangkok.rb +0 -20
  304. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Chongqing.rb +0 -33
  305. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +0 -30
  306. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Dhaka.rb +0 -27
  307. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Hong_Kong.rb +0 -87
  308. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Irkutsk.rb +0 -165
  309. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jakarta.rb +0 -30
  310. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jerusalem.rb +0 -163
  311. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kabul.rb +0 -20
  312. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kamchatka.rb +0 -163
  313. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Karachi.rb +0 -30
  314. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Katmandu.rb +0 -20
  315. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kolkata.rb +0 -25
  316. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Krasnoyarsk.rb +0 -163
  317. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuala_Lumpur.rb +0 -31
  318. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuwait.rb +0 -18
  319. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Magadan.rb +0 -163
  320. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Muscat.rb +0 -18
  321. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Novosibirsk.rb +0 -164
  322. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Rangoon.rb +0 -24
  323. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Riyadh.rb +0 -18
  324. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Seoul.rb +0 -34
  325. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Shanghai.rb +0 -35
  326. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Singapore.rb +0 -33
  327. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Taipei.rb +0 -59
  328. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tashkent.rb +0 -47
  329. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tbilisi.rb +0 -78
  330. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tehran.rb +0 -121
  331. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tokyo.rb +0 -30
  332. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Ulaanbaatar.rb +0 -65
  333. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Urumqi.rb +0 -33
  334. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Vladivostok.rb +0 -164
  335. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yakutsk.rb +0 -163
  336. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yekaterinburg.rb +0 -165
  337. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yerevan.rb +0 -165
  338. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Azores.rb +0 -270
  339. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Cape_Verde.rb +0 -23
  340. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/South_Georgia.rb +0 -18
  341. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Adelaide.rb +0 -187
  342. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Brisbane.rb +0 -35
  343. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Darwin.rb +0 -29
  344. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Hobart.rb +0 -193
  345. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Melbourne.rb +0 -185
  346. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Perth.rb +0 -37
  347. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Sydney.rb +0 -185
  348. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Etc/UTC.rb +0 -16
  349. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Amsterdam.rb +0 -228
  350. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Athens.rb +0 -185
  351. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Belgrade.rb +0 -163
  352. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Berlin.rb +0 -188
  353. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bratislava.rb +0 -13
  354. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Brussels.rb +0 -232
  355. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bucharest.rb +0 -181
  356. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Budapest.rb +0 -197
  357. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Copenhagen.rb +0 -179
  358. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Dublin.rb +0 -276
  359. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Helsinki.rb +0 -163
  360. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Istanbul.rb +0 -218
  361. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Kiev.rb +0 -168
  362. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Lisbon.rb +0 -268
  363. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Ljubljana.rb +0 -13
  364. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/London.rb +0 -288
  365. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Madrid.rb +0 -211
  366. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Minsk.rb +0 -170
  367. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Moscow.rb +0 -181
  368. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Paris.rb +0 -232
  369. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Prague.rb +0 -187
  370. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Riga.rb +0 -176
  371. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Rome.rb +0 -215
  372. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sarajevo.rb +0 -13
  373. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Skopje.rb +0 -13
  374. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sofia.rb +0 -173
  375. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Stockholm.rb +0 -165
  376. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Tallinn.rb +0 -172
  377. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vienna.rb +0 -183
  378. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vilnius.rb +0 -170
  379. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Warsaw.rb +0 -212
  380. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Zagreb.rb +0 -13
  381. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Auckland.rb +0 -202
  382. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Fiji.rb +0 -23
  383. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Guam.rb +0 -22
  384. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Honolulu.rb +0 -28
  385. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Majuro.rb +0 -20
  386. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb +0 -25
  387. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Noumea.rb +0 -25
  388. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Pago_Pago.rb +0 -26
  389. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Port_Moresby.rb +0 -20
  390. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Tongatapu.rb +0 -27
  391. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/info_timezone.rb +0 -52
  392. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone.rb +0 -51
  393. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone_info.rb +0 -44
  394. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/offset_rationals.rb +0 -98
  395. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/ruby_core_support.rb +0 -56
  396. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/time_or_datetime.rb +0 -292
  397. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone.rb +0 -508
  398. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_definition.rb +0 -56
  399. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_info.rb +0 -40
  400. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_offset_info.rb +0 -94
  401. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_period.rb +0 -198
  402. data/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_transition_info.rb +0 -129
  403. data/lib/activesupport.rb +0 -2
@@ -1,63 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- #--
4
- # Copyright 2004 by Jim Weirich (jim@weirichhouse.org).
5
- # All rights reserved.
6
-
7
- # Permission is granted for use, copying, modification, distribution,
8
- # and distribution of modified versions of this work as long as the
9
- # above copyright notice is included.
10
- #++
11
-
12
- require 'builder/xmlmarkup'
13
-
14
- module Builder
15
-
16
- # Create a series of SAX-like XML events (e.g. start_tag, end_tag)
17
- # from the markup code. XmlEvent objects are used in a way similar
18
- # to XmlMarkup objects, except that a series of events are generated
19
- # and passed to a handler rather than generating character-based
20
- # markup.
21
- #
22
- # Usage:
23
- # xe = Builder::XmlEvents.new(handler)
24
- # xe.title("HI") # Sends start_tag/end_tag/text messages to the handler.
25
- #
26
- # Indentation may also be selected by providing value for the
27
- # indentation size and initial indentation level.
28
- #
29
- # xe = Builder::XmlEvents.new(handler, indent_size, initial_indent_level)
30
- #
31
- # == XML Event Handler
32
- #
33
- # The handler object must expect the following events.
34
- #
35
- # [<tt>start_tag(tag, attrs)</tt>]
36
- # Announces that a new tag has been found. +tag+ is the name of
37
- # the tag and +attrs+ is a hash of attributes for the tag.
38
- #
39
- # [<tt>end_tag(tag)</tt>]
40
- # Announces that an end tag for +tag+ has been found.
41
- #
42
- # [<tt>text(text)</tt>]
43
- # Announces that a string of characters (+text+) has been found.
44
- # A series of characters may be broken up into more than one
45
- # +text+ call, so the client cannot assume that a single
46
- # callback contains all the text data.
47
- #
48
- class XmlEvents < XmlMarkup
49
- def text!(text)
50
- @target.text(text)
51
- end
52
-
53
- def _start_tag(sym, attrs, end_too=false)
54
- @target.start_tag(sym, attrs)
55
- _end_tag(sym) if end_too
56
- end
57
-
58
- def _end_tag(sym)
59
- @target.end_tag(sym)
60
- end
61
- end
62
-
63
- end
@@ -1,328 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #--
3
- # Copyright 2004, 2005 by Jim Weirich (jim@weirichhouse.org).
4
- # All rights reserved.
5
-
6
- # Permission is granted for use, copying, modification, distribution,
7
- # and distribution of modified versions of this work as long as the
8
- # above copyright notice is included.
9
- #++
10
-
11
- # Provide a flexible and easy to use Builder for creating XML markup.
12
- # See XmlBuilder for usage details.
13
-
14
- require 'builder/xmlbase'
15
-
16
- module Builder
17
-
18
- # Create XML markup easily. All (well, almost all) methods sent to
19
- # an XmlMarkup object will be translated to the equivalent XML
20
- # markup. Any method with a block will be treated as an XML markup
21
- # tag with nested markup in the block.
22
- #
23
- # Examples will demonstrate this easier than words. In the
24
- # following, +xm+ is an +XmlMarkup+ object.
25
- #
26
- # xm.em("emphasized") # => <em>emphasized</em>
27
- # xm.em { xmm.b("emp & bold") } # => <em><b>emph &amp; bold</b></em>
28
- # xm.a("A Link", "href"=>"http://onestepback.org")
29
- # # => <a href="http://onestepback.org">A Link</a>
30
- # xm.div { br } # => <div><br/></div>
31
- # xm.target("name"=>"compile", "option"=>"fast")
32
- # # => <target option="fast" name="compile"\>
33
- # # NOTE: order of attributes is not specified.
34
- #
35
- # xm.instruct! # <?xml version="1.0" encoding="UTF-8"?>
36
- # xm.html { # <html>
37
- # xm.head { # <head>
38
- # xm.title("History") # <title>History</title>
39
- # } # </head>
40
- # xm.body { # <body>
41
- # xm.comment! "HI" # <! -- HI -->
42
- # xm.h1("Header") # <h1>Header</h1>
43
- # xm.p("paragraph") # <p>paragraph</p>
44
- # } # </body>
45
- # } # </html>
46
- #
47
- # == Notes:
48
- #
49
- # * The order that attributes are inserted in markup tags is
50
- # undefined.
51
- #
52
- # * Sometimes you wish to insert text without enclosing tags. Use
53
- # the <tt>text!</tt> method to accomplish this.
54
- #
55
- # Example:
56
- #
57
- # xm.div { # <div>
58
- # xm.text! "line"; xm.br # line<br/>
59
- # xm.text! "another line"; xmbr # another line<br/>
60
- # } # </div>
61
- #
62
- # * The special XML characters <, >, and & are converted to &lt;,
63
- # &gt; and &amp; automatically. Use the <tt><<</tt> operation to
64
- # insert text without modification.
65
- #
66
- # * Sometimes tags use special characters not allowed in ruby
67
- # identifiers. Use the <tt>tag!</tt> method to handle these
68
- # cases.
69
- #
70
- # Example:
71
- #
72
- # xml.tag!("SOAP:Envelope") { ... }
73
- #
74
- # will produce ...
75
- #
76
- # <SOAP:Envelope> ... </SOAP:Envelope>"
77
- #
78
- # <tt>tag!</tt> will also take text and attribute arguments (after
79
- # the tag name) like normal markup methods. (But see the next
80
- # bullet item for a better way to handle XML namespaces).
81
- #
82
- # * Direct support for XML namespaces is now available. If the
83
- # first argument to a tag call is a symbol, it will be joined to
84
- # the tag to produce a namespace:tag combination. It is easier to
85
- # show this than describe it.
86
- #
87
- # xml.SOAP :Envelope do ... end
88
- #
89
- # Just put a space before the colon in a namespace to produce the
90
- # right form for builder (e.g. "<tt>SOAP:Envelope</tt>" =>
91
- # "<tt>xml.SOAP :Envelope</tt>")
92
- #
93
- # * XmlMarkup builds the markup in any object (called a _target_)
94
- # that accepts the <tt><<</tt> method. If no target is given,
95
- # then XmlMarkup defaults to a string target.
96
- #
97
- # Examples:
98
- #
99
- # xm = Builder::XmlMarkup.new
100
- # result = xm.title("yada")
101
- # # result is a string containing the markup.
102
- #
103
- # buffer = ""
104
- # xm = Builder::XmlMarkup.new(buffer)
105
- # # The markup is appended to buffer (using <<)
106
- #
107
- # xm = Builder::XmlMarkup.new(STDOUT)
108
- # # The markup is written to STDOUT (using <<)
109
- #
110
- # xm = Builder::XmlMarkup.new
111
- # x2 = Builder::XmlMarkup.new(:target=>xm)
112
- # # Markup written to +x2+ will be send to +xm+.
113
- #
114
- # * Indentation is enabled by providing the number of spaces to
115
- # indent for each level as a second argument to XmlBuilder.new.
116
- # Initial indentation may be specified using a third parameter.
117
- #
118
- # Example:
119
- #
120
- # xm = Builder.new(:indent=>2)
121
- # # xm will produce nicely formatted and indented XML.
122
- #
123
- # xm = Builder.new(:indent=>2, :margin=>4)
124
- # # xm will produce nicely formatted and indented XML with 2
125
- # # spaces per indent and an over all indentation level of 4.
126
- #
127
- # builder = Builder::XmlMarkup.new(:target=>$stdout, :indent=>2)
128
- # builder.name { |b| b.first("Jim"); b.last("Weirich) }
129
- # # prints:
130
- # # <name>
131
- # # <first>Jim</first>
132
- # # <last>Weirich</last>
133
- # # </name>
134
- #
135
- # * The instance_eval implementation which forces self to refer to
136
- # the message receiver as self is now obsolete. We now use normal
137
- # block calls to execute the markup block. This means that all
138
- # markup methods must now be explicitly send to the xml builder.
139
- # For instance, instead of
140
- #
141
- # xml.div { strong("text") }
142
- #
143
- # you need to write:
144
- #
145
- # xml.div { xml.strong("text") }
146
- #
147
- # Although more verbose, the subtle change in semantics within the
148
- # block was found to be prone to error. To make this change a
149
- # little less cumbersome, the markup block now gets the markup
150
- # object sent as an argument, allowing you to use a shorter alias
151
- # within the block.
152
- #
153
- # For example:
154
- #
155
- # xml_builder = Builder::XmlMarkup.new
156
- # xml_builder.div { |xml|
157
- # xml.stong("text")
158
- # }
159
- #
160
- class XmlMarkup < XmlBase
161
-
162
- # Create an XML markup builder. Parameters are specified by an
163
- # option hash.
164
- #
165
- # :target=><em>target_object</em>::
166
- # Object receiving the markup. +out+ must respond to the
167
- # <tt><<</tt> operator. The default is a plain string target.
168
- #
169
- # :indent=><em>indentation</em>::
170
- # Number of spaces used for indentation. The default is no
171
- # indentation and no line breaks.
172
- #
173
- # :margin=><em>initial_indentation_level</em>::
174
- # Amount of initial indentation (specified in levels, not
175
- # spaces).
176
- #
177
- # :escape_attrs=><b>OBSOLETE</em>::
178
- # The :escape_attrs option is no longer supported by builder
179
- # (and will be quietly ignored). String attribute values are
180
- # now automatically escaped. If you need unescaped attribute
181
- # values (perhaps you are using entities in the attribute
182
- # values), then give the value as a Symbol. This allows much
183
- # finer control over escaping attribute values.
184
- #
185
- def initialize(options={})
186
- indent = options[:indent] || 0
187
- margin = options[:margin] || 0
188
- super(indent, margin)
189
- @target = options[:target] || ""
190
- end
191
-
192
- # Return the target of the builder.
193
- def target!
194
- @target
195
- end
196
-
197
- def comment!(comment_text)
198
- _ensure_no_block block_given?
199
- _special("<!-- ", " -->", comment_text, nil)
200
- end
201
-
202
- # Insert an XML declaration into the XML markup.
203
- #
204
- # For example:
205
- #
206
- # xml.declare! :ELEMENT, :blah, "yada"
207
- # # => <!ELEMENT blah "yada">
208
- def declare!(inst, *args, &block)
209
- _indent
210
- @target << "<!#{inst}"
211
- args.each do |arg|
212
- case arg
213
- when String
214
- @target << %{ "#{arg}"} # " WART
215
- when Symbol
216
- @target << " #{arg}"
217
- end
218
- end
219
- if block_given?
220
- @target << " ["
221
- _newline
222
- _nested_structures(block)
223
- @target << "]"
224
- end
225
- @target << ">"
226
- _newline
227
- end
228
-
229
- # Insert a processing instruction into the XML markup. E.g.
230
- #
231
- # For example:
232
- #
233
- # xml.instruct!
234
- # #=> <?xml version="1.0" encoding="UTF-8"?>
235
- # xml.instruct! :aaa, :bbb=>"ccc"
236
- # #=> <?aaa bbb="ccc"?>
237
- #
238
- def instruct!(directive_tag=:xml, attrs={})
239
- _ensure_no_block block_given?
240
- if directive_tag == :xml
241
- a = { :version=>"1.0", :encoding=>"UTF-8" }
242
- attrs = a.merge attrs
243
- end
244
- _special(
245
- "<?#{directive_tag}",
246
- "?>",
247
- nil,
248
- attrs,
249
- [:version, :encoding, :standalone])
250
- end
251
-
252
- # Insert a CDATA section into the XML markup.
253
- #
254
- # For example:
255
- #
256
- # xml.cdata!("text to be included in cdata")
257
- # #=> <![CDATA[text to be included in cdata]]>
258
- #
259
- def cdata!(text)
260
- _ensure_no_block block_given?
261
- _special("<![CDATA[", "]]>", text, nil)
262
- end
263
-
264
- private
265
-
266
- # NOTE: All private methods of a builder object are prefixed when
267
- # a "_" character to avoid possible conflict with XML tag names.
268
-
269
- # Insert text directly in to the builder's target.
270
- def _text(text)
271
- @target << text
272
- end
273
-
274
- # Insert special instruction.
275
- def _special(open, close, data=nil, attrs=nil, order=[])
276
- _indent
277
- @target << open
278
- @target << data if data
279
- _insert_attributes(attrs, order) if attrs
280
- @target << close
281
- _newline
282
- end
283
-
284
- # Start an XML tag. If <tt>end_too</tt> is true, then the start
285
- # tag is also the end tag (e.g. <br/>
286
- def _start_tag(sym, attrs, end_too=false)
287
- @target << "<#{sym}"
288
- _insert_attributes(attrs)
289
- @target << "/" if end_too
290
- @target << ">"
291
- end
292
-
293
- # Insert an ending tag.
294
- def _end_tag(sym)
295
- @target << "</#{sym}>"
296
- end
297
-
298
- # Insert the attributes (given in the hash).
299
- def _insert_attributes(attrs, order=[])
300
- return if attrs.nil?
301
- order.each do |k|
302
- v = attrs[k]
303
- @target << %{ #{k}="#{_attr_value(v)}"} if v # " WART
304
- end
305
- attrs.each do |k, v|
306
- @target << %{ #{k}="#{_attr_value(v)}"} unless order.member?(k) # " WART
307
- end
308
- end
309
-
310
- def _attr_value(value)
311
- case value
312
- when Symbol
313
- value.to_s
314
- else
315
- _escape_quote(value.to_s)
316
- end
317
- end
318
-
319
- def _ensure_no_block(got_block)
320
- if got_block
321
- fail IllegalBlockError,
322
- "Blocks are not allowed on XML instructions"
323
- end
324
- end
325
-
326
- end
327
-
328
- end
@@ -1,322 +0,0 @@
1
- # encoding: utf-8
2
-
3
- # Authors:: Sven Fuchs (http://www.artweb-design.de),
4
- # Joshua Harvey (http://www.workingwithrails.com/person/759-joshua-harvey),
5
- # Stephan Soller (http://www.arkanis-development.de/),
6
- # Saimon Moore (http://saimonmoore.net),
7
- # Matt Aimonetti (http://railsontherun.com/)
8
- # Copyright:: Copyright (c) 2008 The Ruby i18n Team
9
- # License:: MIT
10
- require 'i18n/exceptions'
11
- require 'i18n/core_ext/string/interpolate'
12
-
13
- module I18n
14
- autoload :Backend, 'i18n/backend'
15
- autoload :Config, 'i18n/config'
16
- autoload :Gettext, 'i18n/gettext'
17
- autoload :Locale, 'i18n/locale'
18
-
19
- class << self
20
- # Gets I18n configuration object.
21
- def config
22
- Thread.current[:i18n_config] ||= I18n::Config.new
23
- end
24
-
25
- # Sets I18n configuration object.
26
- def config=(value)
27
- Thread.current[:i18n_config] = value
28
- end
29
-
30
- # Write methods which delegates to the configuration object
31
- %w(locale backend default_locale available_locales default_separator
32
- exception_handler load_path).each do |method|
33
- module_eval <<-DELEGATORS, __FILE__, __LINE__ + 1
34
- def #{method}
35
- config.#{method}
36
- end
37
-
38
- def #{method}=(value)
39
- config.#{method} = (value)
40
- end
41
- DELEGATORS
42
- end
43
-
44
- # Tells the backend to reload translations. Used in situations like the
45
- # Rails development environment. Backends can implement whatever strategy
46
- # is useful.
47
- def reload!
48
- config.backend.reload!
49
- end
50
-
51
- # Translates, pluralizes and interpolates a given key using a given locale,
52
- # scope, and default, as well as interpolation values.
53
- #
54
- # *LOOKUP*
55
- #
56
- # Translation data is organized as a nested hash using the upper-level keys
57
- # as namespaces. <em>E.g.</em>, ActionView ships with the translation:
58
- # <tt>:date => {:formats => {:short => "%b %d"}}</tt>.
59
- #
60
- # Translations can be looked up at any level of this hash using the key argument
61
- # and the scope option. <em>E.g.</em>, in this example <tt>I18n.t :date</tt>
62
- # returns the whole translations hash <tt>{:formats => {:short => "%b %d"}}</tt>.
63
- #
64
- # Key can be either a single key or a dot-separated key (both Strings and Symbols
65
- # work). <em>E.g.</em>, the short format can be looked up using both:
66
- # I18n.t 'date.formats.short'
67
- # I18n.t :'date.formats.short'
68
- #
69
- # Scope can be either a single key, a dot-separated key or an array of keys
70
- # or dot-separated keys. Keys and scopes can be combined freely. So these
71
- # examples will all look up the same short date format:
72
- # I18n.t 'date.formats.short'
73
- # I18n.t 'formats.short', :scope => 'date'
74
- # I18n.t 'short', :scope => 'date.formats'
75
- # I18n.t 'short', :scope => %w(date formats)
76
- #
77
- # *INTERPOLATION*
78
- #
79
- # Translations can contain interpolation variables which will be replaced by
80
- # values passed to #translate as part of the options hash, with the keys matching
81
- # the interpolation variable names.
82
- #
83
- # <em>E.g.</em>, with a translation <tt>:foo => "foo %{bar}"</tt> the option
84
- # value for the key +bar+ will be interpolated into the translation:
85
- # I18n.t :foo, :bar => 'baz' # => 'foo baz'
86
- #
87
- # *PLURALIZATION*
88
- #
89
- # Translation data can contain pluralized translations. Pluralized translations
90
- # are arrays of singluar/plural versions of translations like <tt>['Foo', 'Foos']</tt>.
91
- #
92
- # Note that <tt>I18n::Backend::Simple</tt> only supports an algorithm for English
93
- # pluralization rules. Other algorithms can be supported by custom backends.
94
- #
95
- # This returns the singular version of a pluralized translation:
96
- # I18n.t :foo, :count => 1 # => 'Foo'
97
- #
98
- # These both return the plural version of a pluralized translation:
99
- # I18n.t :foo, :count => 0 # => 'Foos'
100
- # I18n.t :foo, :count => 2 # => 'Foos'
101
- #
102
- # The <tt>:count</tt> option can be used both for pluralization and interpolation.
103
- # <em>E.g.</em>, with the translation
104
- # <tt>:foo => ['%{count} foo', '%{count} foos']</tt>, count will
105
- # be interpolated to the pluralized translation:
106
- # I18n.t :foo, :count => 1 # => '1 foo'
107
- #
108
- # *DEFAULTS*
109
- #
110
- # This returns the translation for <tt>:foo</tt> or <tt>default</tt> if no translation was found:
111
- # I18n.t :foo, :default => 'default'
112
- #
113
- # This returns the translation for <tt>:foo</tt> or the translation for <tt>:bar</tt> if no
114
- # translation for <tt>:foo</tt> was found:
115
- # I18n.t :foo, :default => :bar
116
- #
117
- # Returns the translation for <tt>:foo</tt> or the translation for <tt>:bar</tt>
118
- # or <tt>default</tt> if no translations for <tt>:foo</tt> and <tt>:bar</tt> were found.
119
- # I18n.t :foo, :default => [:bar, 'default']
120
- #
121
- # *BULK LOOKUP*
122
- #
123
- # This returns an array with the translations for <tt>:foo</tt> and <tt>:bar</tt>.
124
- # I18n.t [:foo, :bar]
125
- #
126
- # Can be used with dot-separated nested keys:
127
- # I18n.t [:'baz.foo', :'baz.bar']
128
- #
129
- # Which is the same as using a scope option:
130
- # I18n.t [:foo, :bar], :scope => :baz
131
- #
132
- # *LAMBDAS*
133
- #
134
- # Both translations and defaults can be given as Ruby lambdas. Lambdas will be
135
- # called and passed the key and options.
136
- #
137
- # E.g. assuming the key <tt>:salutation</tt> resolves to:
138
- # lambda { |key, options| options[:gender] == 'm' ? "Mr. %{options[:name]}" : "Mrs. %{options[:name]}" }
139
- #
140
- # Then <tt>I18n.t(:salutation, :gender => 'w', :name => 'Smith') will result in "Mrs. Smith".
141
- #
142
- # It is recommended to use/implement lambdas in an "idempotent" way. E.g. when
143
- # a cache layer is put in front of I18n.translate it will generate a cache key
144
- # from the argument values passed to #translate. Therefor your lambdas should
145
- # always return the same translations/values per unique combination of argument
146
- # values.
147
- def translate(*args)
148
- options = args.pop if args.last.is_a?(Hash)
149
- key = args.shift
150
- locale = options && options.delete(:locale) || config.locale
151
- raises = options && options.delete(:raise)
152
- config.backend.translate(locale, key, options || {})
153
- rescue I18n::ArgumentError => exception
154
- raise exception if raises
155
- handle_exception(exception, locale, key, options)
156
- end
157
- alias :t :translate
158
-
159
- def translate!(key, options = {})
160
- translate(key, options.merge( :raise => true ))
161
- end
162
- alias :t! :translate!
163
-
164
- # Transliterates UTF-8 characters to ASCII. By default this method will
165
- # transliterate only Latin strings to an ASCII approximation:
166
- #
167
- # I18n.transliterate("Ærøskøbing")
168
- # # => "AEroskobing"
169
- #
170
- # I18n.transliterate("日本語")
171
- # # => "???"
172
- #
173
- # It's also possible to add support for per-locale transliterations. I18n
174
- # expects transliteration rules to be stored at
175
- # <tt>i18n.transliterate.rule</tt>.
176
- #
177
- # Transliteration rules can either be a Hash or a Proc. Procs must accept a
178
- # single string argument. Hash rules inherit the default transliteration
179
- # rules, while Procs do not.
180
- #
181
- # *Examples*
182
- #
183
- # Setting a Hash in <locale>.yml:
184
- #
185
- # i18n:
186
- # transliterate:
187
- # rule:
188
- # ü: "ue"
189
- # ö: "oe"
190
- #
191
- # Setting a Hash using Ruby:
192
- #
193
- # store_translations(:de, :i18n => {
194
- # :transliterate => {
195
- # :rule => {
196
- # "ü" => "ue",
197
- # "ö" => "oe"
198
- # }
199
- # }
200
- # )
201
- #
202
- # Setting a Proc:
203
- #
204
- # translit = lambda {|string| MyTransliterator.transliterate(string) }
205
- # store_translations(:xx, :i18n => {:transliterate => {:rule => translit})
206
- #
207
- # Transliterating strings:
208
- #
209
- # I18n.locale = :en
210
- # I18n.transliterate("Jürgen") # => "Jurgen"
211
- # I18n.locale = :de
212
- # I18n.transliterate("Jürgen") # => "Juergen"
213
- # I18n.transliterate("Jürgen", :locale => :en) # => "Jurgen"
214
- # I18n.transliterate("Jürgen", :locale => :de) # => "Juergen"
215
- def transliterate(*args)
216
- options = args.pop if args.last.is_a?(Hash)
217
- key = args.shift
218
- locale = options && options.delete(:locale) || config.locale
219
- raises = options && options.delete(:raise)
220
- replacement = options && options.delete(:replacement)
221
- config.backend.transliterate(locale, key, replacement)
222
- rescue I18n::ArgumentError => exception
223
- raise exception if raises
224
- handle_exception(exception, locale, key, options)
225
- end
226
-
227
- # Localizes certain objects, such as dates and numbers to local formatting.
228
- def localize(object, options = {})
229
- locale = options.delete(:locale) || config.locale
230
- format = options.delete(:format) || :default
231
- config.backend.localize(locale, object, format, options)
232
- end
233
- alias :l :localize
234
-
235
- # Executes block with given I18n.locale set.
236
- def with_locale(tmp_locale = nil)
237
- if tmp_locale
238
- current_locale = self.locale
239
- self.locale = tmp_locale
240
- end
241
- yield
242
- ensure
243
- self.locale = current_locale if tmp_locale
244
- end
245
-
246
-
247
- # Merges the given locale, key and scope into a single array of keys.
248
- # Splits keys that contain dots into multiple keys. Makes sure all
249
- # keys are Symbols.
250
- def normalize_keys(locale, key, scope, separator = nil)
251
- separator ||= I18n.default_separator
252
-
253
- keys = []
254
- keys.concat normalize_key(locale, separator)
255
- keys.concat normalize_key(scope, separator)
256
- keys.concat normalize_key(key, separator)
257
- keys
258
- end
259
-
260
- # making these private until Ruby 1.9.2 can send to protected methods again
261
- # see http://redmine.ruby-lang.org/repositories/revision/ruby-19?rev=24280
262
- private
263
-
264
- # Handles exceptions raised in the backend. All exceptions except for
265
- # MissingTranslationData exceptions are re-raised. When a MissingTranslationData
266
- # was caught and the option :raise is not set the handler returns an error
267
- # message string containing the key/scope.
268
- def default_exception_handler(exception, locale, key, options)
269
- return exception.message if MissingTranslationData === exception
270
- raise exception
271
- end
272
-
273
- # Any exceptions thrown in translate will be sent to the @@exception_handler
274
- # which can be a Symbol, a Proc or any other Object.
275
- #
276
- # If exception_handler is a Symbol then it will simply be sent to I18n as
277
- # a method call. A Proc will simply be called. In any other case the
278
- # method #call will be called on the exception_handler object.
279
- #
280
- # Examples:
281
- #
282
- # I18n.exception_handler = :default_exception_handler # this is the default
283
- # I18n.default_exception_handler(exception, locale, key, options) # will be called like this
284
- #
285
- # I18n.exception_handler = lambda { |*args| ... } # a lambda
286
- # I18n.exception_handler.call(exception, locale, key, options) # will be called like this
287
- #
288
- # I18n.exception_handler = I18nExceptionHandler.new # an object
289
- # I18n.exception_handler.call(exception, locale, key, options) # will be called like this
290
- def handle_exception(exception, locale, key, options)
291
- case config.exception_handler
292
- when Symbol
293
- send(config.exception_handler, exception, locale, key, options)
294
- else
295
- config.exception_handler.call(exception, locale, key, options)
296
- end
297
- end
298
-
299
- # Deprecated. Will raise a warning in future versions and then finally be
300
- # removed. Use I18n.normalize_keys instead.
301
- def normalize_translation_keys(locale, key, scope, separator = nil)
302
- normalize_keys(locale, key, scope, separator)
303
- end
304
-
305
- def normalize_key(key, separator)
306
- normalized_key_cache[separator][key] ||=
307
- case key
308
- when Array
309
- key.map { |k| normalize_key(k, separator) }.flatten
310
- else
311
- keys = key.to_s.split(separator)
312
- keys.delete('')
313
- keys.map!{ |k| k.to_sym }
314
- keys
315
- end
316
- end
317
-
318
- def normalized_key_cache
319
- @normalized_key_cache ||= Hash.new { |h,k| h[k] = {} }
320
- end
321
- end
322
- end