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,198 @@
1
+ #--
2
+ # Copyright (c) 2005-2006 Philip Ross
3
+ #
4
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ # of this software and associated documentation files (the "Software"), to deal
6
+ # in the Software without restriction, including without limitation the rights
7
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ # copies of the Software, and to permit persons to whom the Software is
9
+ # furnished to do so, subject to the following conditions:
10
+ #
11
+ # The above copyright notice and this permission notice shall be included in all
12
+ # copies or substantial portions of the Software.
13
+ #
14
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20
+ # THE SOFTWARE.
21
+ #++
22
+
23
+ require 'tzinfo/offset_rationals'
24
+ require 'tzinfo/time_or_datetime'
25
+
26
+ module TZInfo
27
+ # A period of time in a timezone where the same offset from UTC applies.
28
+ #
29
+ # All the methods that take times accept instances of Time, DateTime or
30
+ # integer timestamps.
31
+ class TimezonePeriod
32
+ # The TimezoneTransitionInfo that defines the start of this TimezonePeriod
33
+ # (may be nil if unbounded).
34
+ attr_reader :start_transition
35
+
36
+ # The TimezoneTransitionInfo that defines the end of this TimezonePeriod
37
+ # (may be nil if unbounded).
38
+ attr_reader :end_transition
39
+
40
+ # The TimezoneOffsetInfo for this period.
41
+ attr_reader :offset
42
+
43
+ # Initializes a new TimezonePeriod.
44
+ def initialize(start_transition, end_transition, offset = nil)
45
+ @start_transition = start_transition
46
+ @end_transition = end_transition
47
+
48
+ if offset
49
+ raise ArgumentError, 'Offset specified with transitions' if @start_transition || @end_transition
50
+ @offset = offset
51
+ else
52
+ if @start_transition
53
+ @offset = @start_transition.offset
54
+ elsif @end_transition
55
+ @offset = @end_transition.previous_offset
56
+ else
57
+ raise ArgumentError, 'No offset specified and no transitions to determine it from'
58
+ end
59
+ end
60
+
61
+ @utc_total_offset_rational = nil
62
+ end
63
+
64
+ # Base offset of the timezone from UTC (seconds).
65
+ def utc_offset
66
+ @offset.utc_offset
67
+ end
68
+
69
+ # Offset from the local time where daylight savings is in effect (seconds).
70
+ # E.g.: utc_offset could be -5 hours. Normally, std_offset would be 0.
71
+ # During daylight savings, std_offset would typically become +1 hours.
72
+ def std_offset
73
+ @offset.std_offset
74
+ end
75
+
76
+ # The identifier of this period, e.g. "GMT" (Greenwich Mean Time) or "BST"
77
+ # (British Summer Time) for "Europe/London". The returned identifier is a
78
+ # symbol.
79
+ def abbreviation
80
+ @offset.abbreviation
81
+ end
82
+ alias :zone_identifier :abbreviation
83
+
84
+ # Total offset from UTC (seconds). Equal to utc_offset + std_offset.
85
+ def utc_total_offset
86
+ @offset.utc_total_offset
87
+ end
88
+
89
+ # Total offset from UTC (days). Result is a Rational.
90
+ def utc_total_offset_rational
91
+ unless @utc_total_offset_rational
92
+ @utc_total_offset_rational = OffsetRationals.rational_for_offset(utc_total_offset)
93
+ end
94
+ @utc_total_offset_rational
95
+ end
96
+
97
+ # The start time of the period in UTC as a DateTime. May be nil if unbounded.
98
+ def utc_start
99
+ @start_transition ? @start_transition.at.to_datetime : nil
100
+ end
101
+
102
+ # The end time of the period in UTC as a DateTime. May be nil if unbounded.
103
+ def utc_end
104
+ @end_transition ? @end_transition.at.to_datetime : nil
105
+ end
106
+
107
+ # The start time of the period in local time as a DateTime. May be nil if
108
+ # unbounded.
109
+ def local_start
110
+ @start_transition ? @start_transition.local_start.to_datetime : nil
111
+ end
112
+
113
+ # The end time of the period in local time as a DateTime. May be nil if
114
+ # unbounded.
115
+ def local_end
116
+ @end_transition ? @end_transition.local_end.to_datetime : nil
117
+ end
118
+
119
+ # true if daylight savings is in effect for this period; otherwise false.
120
+ def dst?
121
+ @offset.dst?
122
+ end
123
+
124
+ # true if this period is valid for the given UTC DateTime; otherwise false.
125
+ def valid_for_utc?(utc)
126
+ utc_after_start?(utc) && utc_before_end?(utc)
127
+ end
128
+
129
+ # true if the given UTC DateTime is after the start of the period
130
+ # (inclusive); otherwise false.
131
+ def utc_after_start?(utc)
132
+ !@start_transition || @start_transition.at <= utc
133
+ end
134
+
135
+ # true if the given UTC DateTime is before the end of the period
136
+ # (exclusive); otherwise false.
137
+ def utc_before_end?(utc)
138
+ !@end_transition || @end_transition.at > utc
139
+ end
140
+
141
+ # true if this period is valid for the given local DateTime; otherwise false.
142
+ def valid_for_local?(local)
143
+ local_after_start?(local) && local_before_end?(local)
144
+ end
145
+
146
+ # true if the given local DateTime is after the start of the period
147
+ # (inclusive); otherwise false.
148
+ def local_after_start?(local)
149
+ !@start_transition || @start_transition.local_start <= local
150
+ end
151
+
152
+ # true if the given local DateTime is before the end of the period
153
+ # (exclusive); otherwise false.
154
+ def local_before_end?(local)
155
+ !@end_transition || @end_transition.local_end > local
156
+ end
157
+
158
+ # Converts a UTC DateTime to local time based on the offset of this period.
159
+ def to_local(utc)
160
+ @offset.to_local(utc)
161
+ end
162
+
163
+ # Converts a local DateTime to UTC based on the offset of this period.
164
+ def to_utc(local)
165
+ @offset.to_utc(local)
166
+ end
167
+
168
+ # Returns true if this TimezonePeriod is equal to p. This compares the
169
+ # start_transition, end_transition and offset using ==.
170
+ def ==(p)
171
+ p.respond_to?(:start_transition) && p.respond_to?(:end_transition) &&
172
+ p.respond_to?(:offset) && start_transition == p.start_transition &&
173
+ end_transition == p.end_transition && offset == p.offset
174
+ end
175
+
176
+ # Returns true if this TimezonePeriods is equal to p. This compares the
177
+ # start_transition, end_transition and offset using eql?
178
+ def eql?(p)
179
+ p.respond_to?(:start_transition) && p.respond_to?(:end_transition) &&
180
+ p.respond_to?(:offset) && start_transition.eql?(p.start_transition) &&
181
+ end_transition.eql?(p.end_transition) && offset.eql?(p.offset)
182
+ end
183
+
184
+ # Returns a hash of this TimezonePeriod.
185
+ def hash
186
+ result = @start_transition.hash ^ @end_transition.hash
187
+ result ^= @offset.hash unless @start_transition || @end_transition
188
+ result
189
+ end
190
+
191
+ # Returns internal object state as a programmer-readable string.
192
+ def inspect
193
+ result = "#<#{self.class}: #{@start_transition.inspect},#{@end_transition.inspect}"
194
+ result << ",#{@offset.inspect}>" unless @start_transition || @end_transition
195
+ result + '>'
196
+ end
197
+ end
198
+ end
@@ -0,0 +1,129 @@
1
+ #--
2
+ # Copyright (c) 2006 Philip Ross
3
+ #
4
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ # of this software and associated documentation files (the "Software"), to deal
6
+ # in the Software without restriction, including without limitation the rights
7
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ # copies of the Software, and to permit persons to whom the Software is
9
+ # furnished to do so, subject to the following conditions:
10
+ #
11
+ # The above copyright notice and this permission notice shall be included in all
12
+ # copies or substantial portions of the Software.
13
+ #
14
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20
+ # THE SOFTWARE.
21
+ #++
22
+
23
+ require 'date'
24
+ require 'tzinfo/time_or_datetime'
25
+
26
+ module TZInfo
27
+ # Represents an offset defined in a Timezone data file.
28
+ class TimezoneTransitionInfo #:nodoc:
29
+ # The offset this transition changes to (a TimezoneOffsetInfo instance).
30
+ attr_reader :offset
31
+
32
+ # The offset this transition changes from (a TimezoneOffsetInfo instance).
33
+ attr_reader :previous_offset
34
+
35
+ # The numerator of the DateTime if the transition time is defined as a
36
+ # DateTime, otherwise the transition time as a timestamp.
37
+ attr_reader :numerator_or_time
38
+ protected :numerator_or_time
39
+
40
+ # Either the denominotor of the DateTime if the transition time is defined
41
+ # as a DateTime, otherwise nil.
42
+ attr_reader :denominator
43
+ protected :denominator
44
+
45
+ # Creates a new TimezoneTransitionInfo with the given offset,
46
+ # previous_offset (both TimezoneOffsetInfo instances) and UTC time.
47
+ # if denominator is nil, numerator_or_time is treated as a number of
48
+ # seconds since the epoch. If denominator is specified numerator_or_time
49
+ # and denominator are used to create a DateTime as follows:
50
+ #
51
+ # DateTime.new!(Rational.send(:new!, numerator_or_time, denominator), 0, Date::ITALY)
52
+ #
53
+ # For performance reasons, the numerator and denominator must be specified
54
+ # in their lowest form.
55
+ def initialize(offset, previous_offset, numerator_or_time, denominator = nil)
56
+ @offset = offset
57
+ @previous_offset = previous_offset
58
+ @numerator_or_time = numerator_or_time
59
+ @denominator = denominator
60
+
61
+ @at = nil
62
+ @local_end = nil
63
+ @local_start = nil
64
+ end
65
+
66
+ # A TimeOrDateTime instance representing the UTC time when this transition
67
+ # occurs.
68
+ def at
69
+ unless @at
70
+ unless @denominator
71
+ @at = TimeOrDateTime.new(@numerator_or_time)
72
+ else
73
+ r = RubyCoreSupport.rational_new!(@numerator_or_time, @denominator)
74
+ dt = RubyCoreSupport.datetime_new!(r, 0, Date::ITALY)
75
+ @at = TimeOrDateTime.new(dt)
76
+ end
77
+ end
78
+
79
+ @at
80
+ end
81
+
82
+ # A TimeOrDateTime instance representing the local time when this transition
83
+ # causes the previous observance to end (calculated from at using
84
+ # previous_offset).
85
+ def local_end
86
+ @local_end = at.add_with_convert(@previous_offset.utc_total_offset) unless @local_end
87
+ @local_end
88
+ end
89
+
90
+ # A TimeOrDateTime instance representing the local time when this transition
91
+ # causes the next observance to start (calculated from at using offset).
92
+ def local_start
93
+ @local_start = at.add_with_convert(@offset.utc_total_offset) unless @local_start
94
+ @local_start
95
+ end
96
+
97
+ # Returns true if this TimezoneTransitionInfo is equal to the given
98
+ # TimezoneTransitionInfo. Two TimezoneTransitionInfo instances are
99
+ # considered to be equal by == if offset, previous_offset and at are all
100
+ # equal.
101
+ def ==(tti)
102
+ tti.respond_to?(:offset) && tti.respond_to?(:previous_offset) && tti.respond_to?(:at) &&
103
+ offset == tti.offset && previous_offset == tti.previous_offset && at == tti.at
104
+ end
105
+
106
+ # Returns true if this TimezoneTransitionInfo is equal to the given
107
+ # TimezoneTransitionInfo. Two TimezoneTransitionInfo instances are
108
+ # considered to be equal by eql? if offset, previous_offset,
109
+ # numerator_or_time and denominator are all equal. This is stronger than ==,
110
+ # which just requires the at times to be equal regardless of how they were
111
+ # originally specified.
112
+ def eql?(tti)
113
+ tti.respond_to?(:offset) && tti.respond_to?(:previous_offset) &&
114
+ tti.respond_to?(:numerator_or_time) && tti.respond_to?(:denominator) &&
115
+ offset == tti.offset && previous_offset == tti.previous_offset &&
116
+ numerator_or_time == tti.numerator_or_time && denominator == tti.denominator
117
+ end
118
+
119
+ # Returns a hash of this TimezoneTransitionInfo instance.
120
+ def hash
121
+ @offset.hash ^ @previous_offset.hash ^ @numerator_or_time.hash ^ @denominator.hash
122
+ end
123
+
124
+ # Returns internal object state as a programmer-readable string.
125
+ def inspect
126
+ "#<#{self.class}: #{at.inspect},#{@offset.inspect}>"
127
+ end
128
+ end
129
+ end
@@ -0,0 +1,33 @@
1
+ #--
2
+ # Copyright (c) 2005-2006 Philip Ross
3
+ #
4
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ # of this software and associated documentation files (the "Software"), to deal
6
+ # in the Software without restriction, including without limitation the rights
7
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ # copies of the Software, and to permit persons to whom the Software is
9
+ # furnished to do so, subject to the following conditions:
10
+ #
11
+ # The above copyright notice and this permission notice shall be included in all
12
+ # copies or substantial portions of the Software.
13
+ #
14
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20
+ # THE SOFTWARE.
21
+ #++
22
+
23
+ # Add the directory containing this file to the start of the load path if it
24
+ # isn't there already.
25
+ $:.unshift(File.dirname(__FILE__)) unless
26
+ $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
27
+
28
+ require 'tzinfo/timezone'
29
+ # require 'tzinfo/country'
30
+ # require 'tzinfo/tzdataparser'
31
+ # require 'tzinfo/timezone_proxy'
32
+ require 'tzinfo/data_timezone'
33
+ require 'tzinfo/linked_timezone'
@@ -0,0 +1,28 @@
1
+ # Prefer gems to the bundled libs.
2
+ require 'rubygems'
3
+
4
+ begin
5
+ gem 'builder', '~> 2.1.2'
6
+ rescue Gem::LoadError
7
+ $:.unshift "#{File.dirname(__FILE__)}/vendor/builder-2.1.2"
8
+ end
9
+ require 'builder'
10
+
11
+ begin
12
+ gem 'memcache-client', '>= 1.7.4'
13
+ rescue Gem::LoadError
14
+ $:.unshift "#{File.dirname(__FILE__)}/vendor/memcache-client-1.7.4"
15
+ end
16
+
17
+ begin
18
+ gem 'tzinfo', '~> 0.3.12'
19
+ rescue Gem::LoadError
20
+ $:.unshift "#{File.dirname(__FILE__)}/vendor/tzinfo-0.3.12"
21
+ end
22
+
23
+ begin
24
+ gem 'i18n', '>= 0.1.3'
25
+ rescue Gem::LoadError
26
+ $:.unshift "#{File.dirname(__FILE__)}/vendor/i18n-0.1.3/lib"
27
+ end
28
+ require 'i18n'
@@ -0,0 +1,9 @@
1
+ module ActiveSupport
2
+ module VERSION #:nodoc:
3
+ MAJOR = 2
4
+ MINOR = 3
5
+ TINY = 5
6
+
7
+ STRING = [MAJOR, MINOR, TINY].join('.')
8
+ end
9
+ end
@@ -0,0 +1,64 @@
1
+ # Extensions to +nil+ which allow for more helpful error messages for people who
2
+ # are new to Rails.
3
+ #
4
+ # Ruby raises NoMethodError if you invoke a method on an object that does not
5
+ # respond to it:
6
+ #
7
+ # $ ruby -e nil.destroy
8
+ # -e:1: undefined method `destroy' for nil:NilClass (NoMethodError)
9
+ #
10
+ # With these extensions, if the method belongs to the public interface of the
11
+ # classes in NilClass::WHINERS the error message suggests which could be the
12
+ # actual intended class:
13
+ #
14
+ # $ script/runner nil.destroy
15
+ # ...
16
+ # You might have expected an instance of ActiveRecord::Base.
17
+ # ...
18
+ #
19
+ # NilClass#id exists in Ruby 1.8 (though it is deprecated). Since +id+ is a fundamental
20
+ # method of Active Record models NilClass#id is redefined as well to raise a RuntimeError
21
+ # and warn the user. She probably wanted a model database identifier and the 4
22
+ # returned by the original method could result in obscure bugs.
23
+ #
24
+ # The flag <tt>config.whiny_nils</tt> determines whether this feature is enabled.
25
+ # By default it is on in development and test modes, and it is off in production
26
+ # mode.
27
+ class NilClass
28
+ WHINERS = [::Array]
29
+ WHINERS << ::ActiveRecord::Base if defined? ::ActiveRecord
30
+
31
+ METHOD_CLASS_MAP = Hash.new
32
+
33
+ WHINERS.each do |klass|
34
+ methods = klass.public_instance_methods - public_instance_methods
35
+ class_name = klass.name
36
+ methods.each { |method| METHOD_CLASS_MAP[method.to_sym] = class_name }
37
+ end
38
+
39
+ # Raises a RuntimeError when you attempt to call +id+ on +nil+.
40
+ def id
41
+ raise RuntimeError, "Called id for nil, which would mistakenly be 4 -- if you really wanted the id of nil, use object_id", caller
42
+ end
43
+
44
+ private
45
+ def method_missing(method, *args, &block)
46
+ # Ruby 1.9.2: disallow explicit coercion via method_missing.
47
+ if method == :to_ary || method == :to_str
48
+ super
49
+ elsif klass = METHOD_CLASS_MAP[method]
50
+ raise_nil_warning_for klass, method, caller
51
+ else
52
+ super
53
+ end
54
+ end
55
+
56
+ # Raises a NoMethodError when you attempt to call a method on +nil+.
57
+ def raise_nil_warning_for(class_name = nil, selector = nil, with_caller = nil)
58
+ message = "You have a nil object when you didn't expect it!"
59
+ message << "\nYou might have expected an instance of #{class_name}." if class_name
60
+ message << "\nThe error occurred while evaluating nil.#{selector}" if selector
61
+
62
+ raise NoMethodError, message, with_caller || caller
63
+ end
64
+ end
@@ -0,0 +1,162 @@
1
+ raise "JRuby is required to use the JDOM backend for XmlMini" unless RUBY_PLATFORM =~ /java/
2
+
3
+ require 'jruby'
4
+ include Java
5
+
6
+ import javax.xml.parsers.DocumentBuilder unless defined? DocumentBuilder
7
+ import javax.xml.parsers.DocumentBuilderFactory unless defined? DocumentBuilderFactory
8
+ import java.io.StringReader unless defined? StringReader
9
+ import org.xml.sax.InputSource unless defined? InputSource
10
+ import org.xml.sax.Attributes unless defined? Attributes
11
+ import org.w3c.dom.Node unless defined? Node
12
+
13
+ # = XmlMini JRuby JDOM implementation
14
+ module ActiveSupport
15
+ module XmlMini_JDOM #:nodoc:
16
+ extend self
17
+
18
+ CONTENT_KEY = '__content__'.freeze
19
+
20
+ NODE_TYPE_NAMES = %w{ATTRIBUTE_NODE CDATA_SECTION_NODE COMMENT_NODE DOCUMENT_FRAGMENT_NODE
21
+ DOCUMENT_NODE DOCUMENT_TYPE_NODE ELEMENT_NODE ENTITY_NODE ENTITY_REFERENCE_NODE NOTATION_NODE
22
+ PROCESSING_INSTRUCTION_NODE TEXT_NODE}
23
+
24
+ node_type_map = {}
25
+ NODE_TYPE_NAMES.each { |type| node_type_map[Node.send(type)] = type }
26
+
27
+ # Parse an XML Document string into a simple hash using Java's jdom.
28
+ # string::
29
+ # XML Document string to parse
30
+ def parse(string)
31
+ if string.blank?
32
+ {}
33
+ else
34
+ @dbf = DocumentBuilderFactory.new_instance
35
+ xml_string_reader = StringReader.new(string)
36
+ xml_input_source = InputSource.new(xml_string_reader)
37
+ doc = @dbf.new_document_builder.parse(xml_input_source)
38
+ merge_element!({}, doc.document_element)
39
+ end
40
+ end
41
+
42
+ private
43
+
44
+ # Convert an XML element and merge into the hash
45
+ #
46
+ # hash::
47
+ # Hash to merge the converted element into.
48
+ # element::
49
+ # XML element to merge into hash
50
+ def merge_element!(hash, element)
51
+ merge!(hash, element.tag_name, collapse(element))
52
+ end
53
+
54
+ # Actually converts an XML document element into a data structure.
55
+ #
56
+ # element::
57
+ # The document element to be collapsed.
58
+ def collapse(element)
59
+ hash = get_attributes(element)
60
+
61
+ child_nodes = element.child_nodes
62
+ if child_nodes.length > 0
63
+ for i in 0...child_nodes.length
64
+ child = child_nodes.item(i)
65
+ merge_element!(hash, child) unless child.node_type == Node.TEXT_NODE
66
+ end
67
+ merge_texts!(hash, element) unless empty_content?(element)
68
+ hash
69
+ else
70
+ merge_texts!(hash, element)
71
+ end
72
+ end
73
+
74
+ # Merge all the texts of an element into the hash
75
+ #
76
+ # hash::
77
+ # Hash to add the converted emement to.
78
+ # element::
79
+ # XML element whose texts are to me merged into the hash
80
+ def merge_texts!(hash, element)
81
+ text_children = texts(element)
82
+ if text_children.join.empty?
83
+ hash
84
+ else
85
+ # must use value to prevent double-escaping
86
+ merge!(hash, CONTENT_KEY, text_children.join)
87
+ end
88
+ end
89
+
90
+ # Adds a new key/value pair to an existing Hash. If the key to be added
91
+ # already exists and the existing value associated with key is not
92
+ # an Array, it will be wrapped in an Array. Then the new value is
93
+ # appended to that Array.
94
+ #
95
+ # hash::
96
+ # Hash to add key/value pair to.
97
+ # key::
98
+ # Key to be added.
99
+ # value::
100
+ # Value to be associated with key.
101
+ def merge!(hash, key, value)
102
+ if hash.has_key?(key)
103
+ if hash[key].instance_of?(Array)
104
+ hash[key] << value
105
+ else
106
+ hash[key] = [hash[key], value]
107
+ end
108
+ elsif value.instance_of?(Array)
109
+ hash[key] = [value]
110
+ else
111
+ hash[key] = value
112
+ end
113
+ hash
114
+ end
115
+
116
+ # Converts the attributes array of an XML element into a hash.
117
+ # Returns an empty Hash if node has no attributes.
118
+ #
119
+ # element::
120
+ # XML element to extract attributes from.
121
+ def get_attributes(element)
122
+ attribute_hash = {}
123
+ attributes = element.attributes
124
+ for i in 0...attributes.length
125
+ attribute_hash[attributes.item(i).name] = attributes.item(i).value
126
+ end
127
+ attribute_hash
128
+ end
129
+
130
+ # Determines if a document element has text content
131
+ #
132
+ # element::
133
+ # XML element to be checked.
134
+ def texts(element)
135
+ texts = []
136
+ child_nodes = element.child_nodes
137
+ for i in 0...child_nodes.length
138
+ item = child_nodes.item(i)
139
+ if item.node_type == Node.TEXT_NODE
140
+ texts << item.get_data
141
+ end
142
+ end
143
+ texts
144
+ end
145
+
146
+ # Determines if a document element has text content
147
+ #
148
+ # element::
149
+ # XML element to be checked.
150
+ def empty_content?(element)
151
+ text = ''
152
+ child_nodes = element.child_nodes
153
+ for i in 0...child_nodes.length
154
+ item = child_nodes.item(i)
155
+ if item.node_type == Node.TEXT_NODE
156
+ text << item.get_data.strip
157
+ end
158
+ end
159
+ text.strip.length == 0
160
+ end
161
+ end
162
+ end