messagebus_ruby_api 0.4.0 → 0.4.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (820) hide show
  1. data/README.rdoc +40 -50
  2. data/lib/messagebus_ruby_api/client.rb +76 -54
  3. data/lib/messagebus_ruby_api/version.rb +1 -1
  4. data/spec/messagebus_ruby_api/client_spec.rb +66 -19
  5. data/spec/ruby/1.9.1/bin/autospec +19 -0
  6. data/spec/ruby/1.9.1/bin/htmldiff +19 -0
  7. data/spec/ruby/1.9.1/bin/ldiff +19 -0
  8. data/spec/ruby/1.9.1/bin/rspec +19 -0
  9. data/spec/ruby/1.9.1/cache/activesupport-3.0.9.gem +0 -0
  10. data/spec/ruby/1.9.1/cache/diff-lcs-1.1.2.gem +0 -0
  11. data/spec/ruby/1.9.1/cache/fakeweb-1.3.0.gem +0 -0
  12. data/spec/ruby/1.9.1/cache/rr-1.0.2.gem +0 -0
  13. data/spec/ruby/1.9.1/cache/rspec-2.5.0.gem +0 -0
  14. data/spec/ruby/1.9.1/cache/rspec-core-2.5.1.gem +0 -0
  15. data/spec/ruby/1.9.1/cache/rspec-expectations-2.5.0.gem +0 -0
  16. data/spec/ruby/1.9.1/cache/rspec-mocks-2.5.0.gem +0 -0
  17. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/CHANGELOG +1496 -0
  18. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/README.rdoc +33 -0
  19. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/all.rb +3 -0
  20. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/backtrace_cleaner.rb +94 -0
  21. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/base64.rb +42 -0
  22. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/basic_object.rb +21 -0
  23. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/benchmarkable.rb +60 -0
  24. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/buffered_logger.rb +139 -0
  25. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/builder.rb +6 -0
  26. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/cache/compressed_mem_cache_store.rb +13 -0
  27. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/cache/file_store.rb +188 -0
  28. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/cache/mem_cache_store.rb +190 -0
  29. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/cache/memory_store.rb +159 -0
  30. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/cache/strategy/local_cache.rb +164 -0
  31. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/cache/synchronized_memory_store.rb +11 -0
  32. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/cache.rb +638 -0
  33. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/callbacks.rb +601 -0
  34. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/concern.rb +64 -0
  35. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/configurable.rb +48 -0
  36. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/array/access.rb +46 -0
  37. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/array/conversions.rb +164 -0
  38. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/array/extract_options.rb +29 -0
  39. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/array/grouping.rb +100 -0
  40. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/array/random_access.rb +27 -0
  41. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/array/uniq_by.rb +17 -0
  42. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/array/wrap.rb +48 -0
  43. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/array.rb +7 -0
  44. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/benchmark.rb +7 -0
  45. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/big_decimal/conversions.rb +44 -0
  46. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/big_decimal.rb +1 -0
  47. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +19 -0
  48. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/cgi.rb +1 -0
  49. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/class/attribute.rb +90 -0
  50. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/class/attribute_accessors.rb +79 -0
  51. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/class/delegating_attributes.rb +44 -0
  52. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/class/inheritable_attributes.rb +254 -0
  53. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/class/subclasses.rb +50 -0
  54. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/class.rb +5 -0
  55. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/date/acts_like.rb +8 -0
  56. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/date/calculations.rb +241 -0
  57. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/date/conversions.rb +99 -0
  58. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/date/freeze.rb +31 -0
  59. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/date/zones.rb +14 -0
  60. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/date_time/acts_like.rb +13 -0
  61. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/date_time/calculations.rb +115 -0
  62. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/date_time/conversions.rb +103 -0
  63. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/date_time/zones.rb +21 -0
  64. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/enumerable.rb +120 -0
  65. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/exception.rb +3 -0
  66. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/file/atomic.rb +41 -0
  67. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/file/path.rb +5 -0
  68. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/file.rb +2 -0
  69. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/float/rounding.rb +19 -0
  70. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/float.rb +1 -0
  71. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/hash/conversions.rb +151 -0
  72. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/hash/deep_merge.rb +16 -0
  73. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/hash/diff.rb +13 -0
  74. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/hash/except.rb +23 -0
  75. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/hash/indifferent_access.rb +12 -0
  76. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/hash/keys.rb +45 -0
  77. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/hash/reverse_merge.rb +28 -0
  78. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/hash/slice.rb +38 -0
  79. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/hash.rb +8 -0
  80. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/integer/inflections.rb +14 -0
  81. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/integer/multiple.rb +6 -0
  82. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/integer/time.rb +39 -0
  83. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/integer.rb +3 -0
  84. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  85. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/kernel/debugger.rb +16 -0
  86. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/kernel/reporting.rb +62 -0
  87. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/kernel/requires.rb +26 -0
  88. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/kernel/singleton_class.rb +13 -0
  89. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/kernel.rb +5 -0
  90. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/load_error.rb +23 -0
  91. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/logger.rb +108 -0
  92. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/module/aliasing.rb +70 -0
  93. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/module/anonymous.rb +24 -0
  94. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
  95. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/module/attr_internal.rb +32 -0
  96. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/module/attribute_accessors.rb +60 -0
  97. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/module/delegation.rb +146 -0
  98. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/module/deprecation.rb +11 -0
  99. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/module/introspection.rb +88 -0
  100. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/module/method_names.rb +14 -0
  101. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/module/reachable.rb +10 -0
  102. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/module/remove_method.rb +11 -0
  103. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/module/synchronization.rb +43 -0
  104. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/module.rb +12 -0
  105. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/name_error.rb +18 -0
  106. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/numeric/bytes.rb +44 -0
  107. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/numeric/time.rb +77 -0
  108. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/numeric.rb +2 -0
  109. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/object/acts_like.rb +10 -0
  110. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/object/blank.rb +76 -0
  111. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/object/conversions.rb +4 -0
  112. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/object/duplicable.rb +65 -0
  113. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/object/instance_variables.rb +67 -0
  114. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/object/returning.rb +43 -0
  115. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/object/to_json.rb +19 -0
  116. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/object/to_param.rb +50 -0
  117. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/object/to_query.rb +27 -0
  118. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/object/try.rb +36 -0
  119. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/object/with_options.rb +26 -0
  120. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/object.rb +13 -0
  121. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/proc.rb +14 -0
  122. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/process/daemon.rb +23 -0
  123. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/process.rb +1 -0
  124. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/range/blockless_step.rb +29 -0
  125. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/range/conversions.rb +21 -0
  126. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/range/include_range.rb +21 -0
  127. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/range/overlaps.rb +8 -0
  128. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/range.rb +4 -0
  129. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/regexp.rb +5 -0
  130. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/rexml.rb +46 -0
  131. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/string/access.rb +99 -0
  132. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/string/behavior.rb +7 -0
  133. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/string/conversions.rb +53 -0
  134. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/string/encoding.rb +11 -0
  135. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/string/exclude.rb +6 -0
  136. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/string/filters.rb +49 -0
  137. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/string/inflections.rb +164 -0
  138. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/string/interpolation.rb +2 -0
  139. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/string/multibyte.rb +72 -0
  140. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/string/output_safety.rb +135 -0
  141. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/string/starts_ends_with.rb +4 -0
  142. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/string/strip.rb +26 -0
  143. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/string/xchar.rb +18 -0
  144. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/string.rb +13 -0
  145. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/time/acts_like.rb +8 -0
  146. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/time/calculations.rb +287 -0
  147. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/time/conversions.rb +85 -0
  148. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/time/marshal.rb +56 -0
  149. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/time/publicize_conversion_methods.rb +10 -0
  150. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/time/zones.rb +75 -0
  151. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/uri.rb +22 -0
  152. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext.rb +3 -0
  153. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/dependencies/autoload.rb +50 -0
  154. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/dependencies.rb +668 -0
  155. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/deprecation/behaviors.rb +42 -0
  156. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/deprecation/method_wrappers.rb +29 -0
  157. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/deprecation/proxy_wrappers.rb +81 -0
  158. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/deprecation/reporting.rb +61 -0
  159. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/deprecation.rb +18 -0
  160. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/descendants_tracker.rb +43 -0
  161. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/duration.rb +105 -0
  162. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/file_update_checker.rb +36 -0
  163. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/gzip.rb +29 -0
  164. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/hash_with_indifferent_access.rb +152 -0
  165. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/i18n.rb +10 -0
  166. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/i18n_railtie.rb +96 -0
  167. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/inflections.rb +60 -0
  168. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/inflector/inflections.rb +211 -0
  169. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/inflector/methods.rb +151 -0
  170. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/inflector/transliterate.rb +98 -0
  171. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/inflector.rb +7 -0
  172. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/json/backends/jsongem.rb +47 -0
  173. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/json/backends/yajl.rb +44 -0
  174. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/json/backends/yaml.rb +107 -0
  175. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/json/decoding.rb +51 -0
  176. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/json/encoding.rb +279 -0
  177. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/json/variable.rb +9 -0
  178. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/json.rb +2 -0
  179. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/lazy_load_hooks.rb +46 -0
  180. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/locale/en.yml +36 -0
  181. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/log_subscriber/test_helper.rb +99 -0
  182. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/log_subscriber.rb +122 -0
  183. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/memoizable.rb +105 -0
  184. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/message_encryptor.rb +71 -0
  185. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/message_verifier.rb +62 -0
  186. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/multibyte/chars.rb +476 -0
  187. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/multibyte/exceptions.rb +8 -0
  188. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/multibyte/unicode.rb +392 -0
  189. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/multibyte/utils.rb +60 -0
  190. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/multibyte.rb +44 -0
  191. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/notifications/fanout.rb +61 -0
  192. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/notifications/instrumenter.rb +54 -0
  193. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/notifications.rb +78 -0
  194. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/option_merger.rb +25 -0
  195. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/ordered_hash.rb +192 -0
  196. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/ordered_options.rb +27 -0
  197. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/railtie.rb +60 -0
  198. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/rescuable.rb +114 -0
  199. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/ruby/shim.rb +22 -0
  200. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/secure_random.rb +199 -0
  201. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/string_inquirer.rb +21 -0
  202. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/test_case.rb +42 -0
  203. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/testing/assertions.rb +84 -0
  204. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/testing/declarative.rb +40 -0
  205. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/testing/default.rb +9 -0
  206. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/testing/deprecation.rb +55 -0
  207. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/testing/isolation.rb +157 -0
  208. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/testing/pending.rb +48 -0
  209. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/testing/performance.rb +425 -0
  210. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/testing/setup_and_teardown.rb +111 -0
  211. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/time/autoload.rb +5 -0
  212. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/time.rb +35 -0
  213. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/time_with_zone.rb +348 -0
  214. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/values/time_zone.rb +379 -0
  215. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/values/unicode_tables.dat +0 -0
  216. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/version.rb +10 -0
  217. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/whiny_nil.rb +60 -0
  218. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/xml_mini/jdom.rb +175 -0
  219. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/xml_mini/libxml.rb +79 -0
  220. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/xml_mini/libxmlsax.rb +85 -0
  221. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/xml_mini/nokogiri.rb +83 -0
  222. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/xml_mini/nokogirisax.rb +87 -0
  223. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/xml_mini/rexml.rb +129 -0
  224. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/xml_mini.rb +162 -0
  225. data/spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support.rb +80 -0
  226. data/spec/ruby/1.9.1/gems/diff-lcs-1.1.2/ChangeLog +46 -0
  227. data/spec/ruby/1.9.1/gems/diff-lcs-1.1.2/Install +6 -0
  228. data/spec/ruby/1.9.1/gems/diff-lcs-1.1.2/README +76 -0
  229. data/spec/ruby/1.9.1/gems/diff-lcs-1.1.2/Rakefile +116 -0
  230. data/spec/ruby/1.9.1/gems/diff-lcs-1.1.2/bin/htmldiff +112 -0
  231. data/spec/ruby/1.9.1/gems/diff-lcs-1.1.2/bin/ldiff +45 -0
  232. data/spec/ruby/1.9.1/gems/diff-lcs-1.1.2/lib/diff/lcs/array.rb +21 -0
  233. data/spec/ruby/1.9.1/gems/diff-lcs-1.1.2/lib/diff/lcs/block.rb +51 -0
  234. data/spec/ruby/1.9.1/gems/diff-lcs-1.1.2/lib/diff/lcs/callbacks.rb +322 -0
  235. data/spec/ruby/1.9.1/gems/diff-lcs-1.1.2/lib/diff/lcs/change.rb +169 -0
  236. data/spec/ruby/1.9.1/gems/diff-lcs-1.1.2/lib/diff/lcs/hunk.rb +257 -0
  237. data/spec/ruby/1.9.1/gems/diff-lcs-1.1.2/lib/diff/lcs/ldiff.rb +226 -0
  238. data/spec/ruby/1.9.1/gems/diff-lcs-1.1.2/lib/diff/lcs/string.rb +19 -0
  239. data/spec/ruby/1.9.1/gems/diff-lcs-1.1.2/lib/diff/lcs.rb +1105 -0
  240. data/spec/ruby/1.9.1/gems/diff-lcs-1.1.2/tests/00test.rb +626 -0
  241. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/CHANGELOG +215 -0
  242. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/LICENSE.txt +19 -0
  243. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/README.rdoc +189 -0
  244. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/Rakefile +67 -0
  245. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/fakeweb.gemspec +126 -0
  246. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/lib/fake_web/ext/net_http.rb +72 -0
  247. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/lib/fake_web/registry.rb +127 -0
  248. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/lib/fake_web/responder.rb +122 -0
  249. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/lib/fake_web/response.rb +10 -0
  250. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/lib/fake_web/stub_socket.rb +15 -0
  251. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/lib/fake_web/utility.rb +87 -0
  252. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/lib/fake_web.rb +215 -0
  253. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/lib/fakeweb.rb +2 -0
  254. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/fixtures/google_response_from_curl +12 -0
  255. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/fixtures/google_response_with_transfer_encoding +17 -0
  256. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/fixtures/google_response_without_transfer_encoding +11 -0
  257. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/fixtures/test_example.txt +1 -0
  258. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/fixtures/test_txt_file +3 -0
  259. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_allow_net_connect.rb +168 -0
  260. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_deprecations.rb +54 -0
  261. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_fake_authentication.rb +92 -0
  262. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_fake_web.rb +590 -0
  263. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_fake_web_open_uri.rb +58 -0
  264. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_helper.rb +90 -0
  265. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_last_request.rb +29 -0
  266. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_missing_open_uri.rb +25 -0
  267. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_missing_pathname.rb +37 -0
  268. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_other_net_http_libraries.rb +36 -0
  269. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_precedence.rb +79 -0
  270. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_query_string.rb +45 -0
  271. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_regexes.rb +157 -0
  272. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_response_headers.rb +79 -0
  273. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_trailing_slashes.rb +53 -0
  274. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/test_utility.rb +83 -0
  275. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/right_http_connection-1.2.4/History.txt +59 -0
  276. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/right_http_connection-1.2.4/Manifest.txt +7 -0
  277. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/right_http_connection-1.2.4/README.txt +54 -0
  278. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/right_http_connection-1.2.4/Rakefile +103 -0
  279. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/right_http_connection-1.2.4/lib/net_fix.rb +160 -0
  280. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/right_http_connection-1.2.4/lib/right_http_connection.rb +435 -0
  281. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/right_http_connection-1.2.4/setup.rb +1585 -0
  282. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/LICENSE +20 -0
  283. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/README.rdoc +70 -0
  284. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/Rakefile +62 -0
  285. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/VERSION +1 -0
  286. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/lib/samuel/net_http.rb +10 -0
  287. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/lib/samuel/request.rb +96 -0
  288. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/lib/samuel.rb +52 -0
  289. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/samuel.gemspec +69 -0
  290. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/test/request_test.rb +193 -0
  291. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/test/samuel_test.rb +42 -0
  292. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/test/test_helper.rb +66 -0
  293. data/spec/ruby/1.9.1/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/test/thread_test.rb +32 -0
  294. data/spec/ruby/1.9.1/gems/rr-1.0.2/CHANGES +260 -0
  295. data/spec/ruby/1.9.1/gems/rr-1.0.2/Gemfile +6 -0
  296. data/spec/ruby/1.9.1/gems/rr-1.0.2/LICENSE +22 -0
  297. data/spec/ruby/1.9.1/gems/rr-1.0.2/README.rdoc +385 -0
  298. data/spec/ruby/1.9.1/gems/rr-1.0.2/Rakefile +88 -0
  299. data/spec/ruby/1.9.1/gems/rr-1.0.2/VERSION.yml +5 -0
  300. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/adapters/rr_methods.rb +146 -0
  301. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/adapters/rspec.rb +61 -0
  302. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/adapters/test_unit.rb +31 -0
  303. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/blank_slate.rb +17 -0
  304. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/class_instance_method_defined.rb +9 -0
  305. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double.rb +154 -0
  306. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/child_double_definition_create.rb +27 -0
  307. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/double_definition.rb +367 -0
  308. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/double_definition_create.rb +139 -0
  309. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/double_definition_create_blank_slate.rb +26 -0
  310. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/double_injections/any_instance_of.rb +28 -0
  311. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/double_injections/instance.rb +16 -0
  312. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/strategies/double_injection/any_instance_of.rb +30 -0
  313. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/strategies/double_injection/double_injection_strategy.rb +10 -0
  314. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/strategies/double_injection/instance.rb +17 -0
  315. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/strategies/implementation/implementation_strategy.rb +10 -0
  316. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/strategies/implementation/proxy.rb +60 -0
  317. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/strategies/implementation/reimplementation.rb +14 -0
  318. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/strategies/implementation/strongly_typed_reimplementation.rb +15 -0
  319. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/strategies/strategy.rb +43 -0
  320. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/strategies/strategy_methods.rb +53 -0
  321. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/strategies/verification/dont_allow.rb +31 -0
  322. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/strategies/verification/mock.rb +42 -0
  323. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/strategies/verification/stub.rb +43 -0
  324. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_definitions/strategies/verification/verification_strategy.rb +10 -0
  325. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/double_matches.rb +42 -0
  326. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/errors/argument_equality_error.rb +6 -0
  327. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/errors/double_definition_error.rb +6 -0
  328. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/errors/double_not_found_error.rb +6 -0
  329. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/errors/double_order_error.rb +6 -0
  330. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/errors/rr_error.rb +20 -0
  331. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/errors/spy_verification_errors/double_injection_not_found_error.rb +8 -0
  332. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/errors/spy_verification_errors/invocation_count_error.rb +8 -0
  333. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/errors/spy_verification_errors/spy_verification_error.rb +8 -0
  334. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/errors/subject_does_not_implement_method_error.rb +6 -0
  335. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/errors/subject_has_different_arity_error.rb +6 -0
  336. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/errors/times_called_error.rb +6 -0
  337. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/expectations/any_argument_expectation.rb +21 -0
  338. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/expectations/argument_equality_expectation.rb +41 -0
  339. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/expectations/times_called_expectation.rb +57 -0
  340. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/hash_with_object_id_key.rb +46 -0
  341. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/injections/double_injection.rb +213 -0
  342. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/injections/injection.rb +33 -0
  343. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/injections/method_missing_injection.rb +68 -0
  344. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/injections/singleton_method_added_injection.rb +72 -0
  345. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/method_dispatches/base_method_dispatch.rb +84 -0
  346. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/method_dispatches/method_dispatch.rb +59 -0
  347. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/method_dispatches/method_missing_dispatch.rb +61 -0
  348. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/proc_from_block.rb +7 -0
  349. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/recorded_calls.rb +103 -0
  350. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/space.rb +112 -0
  351. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/spy_verification.rb +48 -0
  352. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/spy_verification_proxy.rb +13 -0
  353. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/times_called_matchers/any_times_matcher.rb +18 -0
  354. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/times_called_matchers/at_least_matcher.rb +15 -0
  355. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/times_called_matchers/at_most_matcher.rb +23 -0
  356. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/times_called_matchers/integer_matcher.rb +19 -0
  357. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/times_called_matchers/never_matcher.rb +23 -0
  358. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/times_called_matchers/non_terminal.rb +27 -0
  359. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/times_called_matchers/proc_matcher.rb +11 -0
  360. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/times_called_matchers/range_matcher.rb +21 -0
  361. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/times_called_matchers/terminal.rb +20 -0
  362. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/times_called_matchers/times_called_matcher.rb +44 -0
  363. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/wildcard_matchers/anything.rb +18 -0
  364. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/wildcard_matchers/boolean.rb +23 -0
  365. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/wildcard_matchers/duck_type.rb +32 -0
  366. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/wildcard_matchers/hash_including.rb +29 -0
  367. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/wildcard_matchers/is_a.rb +25 -0
  368. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/wildcard_matchers/numeric.rb +13 -0
  369. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/wildcard_matchers/range.rb +7 -0
  370. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/wildcard_matchers/regexp.rb +7 -0
  371. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/wildcard_matchers/satisfy.rb +26 -0
  372. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr/wildcard_matchers.rb +158 -0
  373. data/spec/ruby/1.9.1/gems/rr-1.0.2/lib/rr.rb +99 -0
  374. data/spec/ruby/1.9.1/gems/rr-1.0.2/scratch.rb +118 -0
  375. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/api/any_instance_of/all_instances_of_spec.rb +12 -0
  376. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/api/any_instance_of/any_instance_of_spec.rb +47 -0
  377. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/api/any_instance_of/instance_of_spec.rb +12 -0
  378. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/api/dont_allow/dont_allow_after_stub_spec.rb +14 -0
  379. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/api/mock/mock_spec.rb +193 -0
  380. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/api/proxy/proxy_spec.rb +86 -0
  381. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/api/spy/spy_spec.rb +49 -0
  382. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/api/strong/strong_spec.rb +87 -0
  383. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/api/stub/stub_spec.rb +152 -0
  384. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/core_spec_suite.rb +19 -0
  385. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/environment_fixture_setup.rb +8 -0
  386. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/proc_from_block_spec.rb +14 -0
  387. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/adapters/rr_methods_argument_matcher_spec.rb +67 -0
  388. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/adapters/rr_methods_creator_spec.rb +137 -0
  389. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/adapters/rr_methods_space_spec.rb +98 -0
  390. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/adapters/rr_methods_spec_helper.rb +11 -0
  391. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/adapters/rr_methods_times_matcher_spec.rb +13 -0
  392. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/double_definitions/child_double_definition_creator_spec.rb +112 -0
  393. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/double_definitions/double_definition_create_blank_slate_spec.rb +91 -0
  394. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/double_definitions/double_definition_create_spec.rb +443 -0
  395. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/double_injection/double_injection_spec.rb +546 -0
  396. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/double_injection/double_injection_verify_spec.rb +29 -0
  397. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/errors/rr_error_spec.rb +67 -0
  398. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/expectations/any_argument_expectation_spec.rb +47 -0
  399. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/expectations/anything_argument_equality_expectation_spec.rb +14 -0
  400. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/expectations/argument_equality_expectation_spec.rb +135 -0
  401. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/expectations/boolean_argument_equality_expectation_spec.rb +34 -0
  402. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/expectations/hash_including_argument_equality_expectation_spec.rb +82 -0
  403. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/expectations/hash_including_spec.rb +17 -0
  404. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/expectations/satisfy_argument_equality_expectation_spec.rb +59 -0
  405. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/expectations/satisfy_spec.rb +14 -0
  406. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_any_times_spec.rb +22 -0
  407. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_at_least_spec.rb +37 -0
  408. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_at_most_spec.rb +43 -0
  409. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_helper.rb +15 -0
  410. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_integer_spec.rb +58 -0
  411. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_proc_spec.rb +35 -0
  412. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_range_spec.rb +39 -0
  413. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/rspec/invocation_matcher_spec.rb +279 -0
  414. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/rspec/rspec_adapter_spec.rb +63 -0
  415. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/rspec/rspec_backtrace_tweaking_spec.rb +31 -0
  416. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/rspec/rspec_backtrace_tweaking_spec_fixture.rb +11 -0
  417. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/rspec/rspec_usage_spec.rb +86 -0
  418. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/space/hash_with_object_id_key_spec.rb +88 -0
  419. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/space/space_spec.rb +587 -0
  420. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/test_unit/test_helper.rb +7 -0
  421. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/test_unit/test_unit_backtrace_test.rb +36 -0
  422. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/test_unit/test_unit_integration_test.rb +59 -0
  423. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/times_called_matchers/any_times_matcher_spec.rb +47 -0
  424. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/times_called_matchers/at_least_matcher_spec.rb +55 -0
  425. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/times_called_matchers/at_most_matcher_spec.rb +70 -0
  426. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/times_called_matchers/integer_matcher_spec.rb +70 -0
  427. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/times_called_matchers/proc_matcher_spec.rb +55 -0
  428. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/times_called_matchers/range_matcher_spec.rb +76 -0
  429. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/times_called_matchers/times_called_matcher_spec.rb +118 -0
  430. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/wildcard_matchers/anything_spec.rb +24 -0
  431. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/wildcard_matchers/boolean_spec.rb +36 -0
  432. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/wildcard_matchers/duck_type_spec.rb +52 -0
  433. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/wildcard_matchers/is_a_spec.rb +32 -0
  434. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/wildcard_matchers/numeric_spec.rb +32 -0
  435. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/wildcard_matchers/range_spec.rb +35 -0
  436. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr/wildcard_matchers/regexp_spec.rb +43 -0
  437. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rr_spec.rb +28 -0
  438. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/rspec_spec_suite.rb +17 -0
  439. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/spec_helper.rb +37 -0
  440. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/spec_suite.rb +48 -0
  441. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/spy_verification_spec.rb +129 -0
  442. data/spec/ruby/1.9.1/gems/rr-1.0.2/spec/test_unit_spec_suite.rb +21 -0
  443. data/spec/ruby/1.9.1/gems/rspec-2.5.0/Gemfile +7 -0
  444. data/spec/ruby/1.9.1/gems/rspec-2.5.0/License.txt +22 -0
  445. data/spec/ruby/1.9.1/gems/rspec-2.5.0/README.markdown +47 -0
  446. data/spec/ruby/1.9.1/gems/rspec-2.5.0/Rakefile +16 -0
  447. data/spec/ruby/1.9.1/gems/rspec-2.5.0/lib/rspec/version.rb +5 -0
  448. data/spec/ruby/1.9.1/gems/rspec-2.5.0/lib/rspec.rb +4 -0
  449. data/spec/ruby/1.9.1/gems/rspec-2.5.0/rspec.gemspec +29 -0
  450. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/Gemfile +52 -0
  451. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/Guardfile +5 -0
  452. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/License.txt +23 -0
  453. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/README.md +103 -0
  454. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/Rakefile +72 -0
  455. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/bin/autospec +13 -0
  456. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/bin/rspec +25 -0
  457. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/cucumber.yml +2 -0
  458. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/Autotest.md +14 -0
  459. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/Changelog.md +226 -0
  460. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/README.md +17 -0
  461. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/Upgrade.md +287 -0
  462. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/command_line/README.md +6 -0
  463. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/command_line/configure.feature +22 -0
  464. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/command_line/example_name_option.feature +86 -0
  465. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/command_line/exit_status.feature +52 -0
  466. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/command_line/format_option.feature +73 -0
  467. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/command_line/line_number_appended_to_path.feature +106 -0
  468. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/command_line/line_number_option.feature +45 -0
  469. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/command_line/rake_task.feature +68 -0
  470. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/command_line/tag.feature +74 -0
  471. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/configuration/custom_settings.feature +84 -0
  472. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/configuration/fail_fast.feature +77 -0
  473. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/configuration/read_options_from_file.feature +87 -0
  474. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/example_groups/basic_structure.feature +59 -0
  475. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/example_groups/shared_example_group.feature +177 -0
  476. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/expectation_framework_integration/configure_expectation_framework.feature +62 -0
  477. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/filtering/exclusion_filters.feature +115 -0
  478. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/filtering/implicit_filters.feature +166 -0
  479. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/filtering/inclusion_filters.feature +83 -0
  480. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/filtering/run_all_when_everything_filtered.feature +46 -0
  481. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/formatters/custom_formatter.feature +36 -0
  482. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/helper_methods/arbitrary_methods.feature +40 -0
  483. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/helper_methods/let.feature +50 -0
  484. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/hooks/around_hooks.feature +336 -0
  485. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/hooks/before_and_after_hooks.feature +427 -0
  486. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/hooks/filtering.feature +191 -0
  487. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/metadata/described_class.feature +17 -0
  488. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/mock_framework_integration/use_any_framework.feature +106 -0
  489. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/mock_framework_integration/use_flexmock.feature +23 -0
  490. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/mock_framework_integration/use_mocha.feature +23 -0
  491. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/mock_framework_integration/use_rr.feature +23 -0
  492. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/mock_framework_integration/use_rspec.feature +23 -0
  493. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/pending/pending_examples.feature +216 -0
  494. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/spec_files/arbitrary_file_suffix.feature +13 -0
  495. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/step_definitions/additional_cli_steps.rb +20 -0
  496. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/subject/attribute_of_subject.feature +102 -0
  497. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/subject/explicit_subject.feature +78 -0
  498. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/subject/implicit_receiver.feature +29 -0
  499. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/subject/implicit_subject.feature +30 -0
  500. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/features/support/env.rb +1 -0
  501. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/autotest/discover.rb +1 -0
  502. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/autotest/rspec2.rb +67 -0
  503. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/autorun.rb +2 -0
  504. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/backward_compatibility.rb +48 -0
  505. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/command_line.rb +35 -0
  506. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/command_line_configuration.rb +62 -0
  507. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/configuration.rb +470 -0
  508. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/configuration_options.rb +126 -0
  509. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/deprecation.rb +45 -0
  510. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/drb_command_line.rb +29 -0
  511. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/errors.rb +14 -0
  512. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/example.rb +167 -0
  513. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/example_group.rb +300 -0
  514. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/expecting/with_rspec.rb +11 -0
  515. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/expecting/with_stdlib.rb +9 -0
  516. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/extensions/instance_eval_with_args.rb +39 -0
  517. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/extensions/kernel.rb +5 -0
  518. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/extensions/module_eval_with_args.rb +34 -0
  519. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/extensions/object.rb +14 -0
  520. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/extensions.rb +4 -0
  521. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/formatters/base_formatter.rb +162 -0
  522. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/formatters/base_text_formatter.rb +165 -0
  523. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/formatters/documentation_formatter.rb +71 -0
  524. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/formatters/helpers.rb +28 -0
  525. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/formatters/html_formatter.rb +456 -0
  526. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/formatters/progress_formatter.rb +32 -0
  527. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/formatters/snippet_extractor.rb +52 -0
  528. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/formatters/text_mate_formatter.rb +20 -0
  529. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/hooks.rb +149 -0
  530. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/let.rb +101 -0
  531. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/load_path.rb +3 -0
  532. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/metadata.rb +187 -0
  533. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/mocking/with_absolutely_nothing.rb +11 -0
  534. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/mocking/with_flexmock.rb +25 -0
  535. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/mocking/with_mocha.rb +21 -0
  536. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/mocking/with_rr.rb +25 -0
  537. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/mocking/with_rspec.rb +21 -0
  538. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/option_parser.rb +132 -0
  539. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/pending.rb +30 -0
  540. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/rake_task.rb +196 -0
  541. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/reporter.rb +79 -0
  542. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/ruby_project.rb +44 -0
  543. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/runner.rb +61 -0
  544. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/shared_context.rb +16 -0
  545. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/shared_example_group.rb +53 -0
  546. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/subject.rb +177 -0
  547. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/version.rb +7 -0
  548. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/world.rb +102 -0
  549. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core.rb +65 -0
  550. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/monkey/spork/test_framework/rspec.rb +7 -0
  551. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/monkey.rb +1 -0
  552. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/rspec-core.gemspec +26 -0
  553. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/script/FullBuildRakeFile +63 -0
  554. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/script/console +8 -0
  555. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/script/cucumber +1 -0
  556. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/script/full_build +1 -0
  557. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/script/spec +1 -0
  558. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/autotest/discover_spec.rb +19 -0
  559. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/autotest/failed_results_re_spec.rb +37 -0
  560. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/autotest/rspec_spec.rb +123 -0
  561. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/command_line_configuration_spec.rb +26 -0
  562. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/command_line_spec.rb +134 -0
  563. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/command_line_spec_output.txt +0 -0
  564. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/configuration_options_spec.rb +341 -0
  565. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/configuration_spec.rb +716 -0
  566. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/deprecations_spec.rb +45 -0
  567. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/drb_command_line_spec.rb +159 -0
  568. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/example_group_spec.rb +753 -0
  569. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/example_spec.rb +162 -0
  570. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/base_formatter_spec.rb +59 -0
  571. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/base_text_formatter_spec.rb +184 -0
  572. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/documentation_formatter_spec.rb +66 -0
  573. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/helpers_spec.rb +46 -0
  574. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/html_formatted-1.8.6.html +398 -0
  575. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html +400 -0
  576. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/html_formatted-1.8.7.html +398 -0
  577. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/html_formatted-1.9.1.html +405 -0
  578. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/html_formatted-1.9.2.html +405 -0
  579. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/html_formatter_spec.rb +81 -0
  580. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/progress_formatter_spec.rb +31 -0
  581. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/snippet_extractor_spec.rb +18 -0
  582. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/text_mate_formatted-1.8.6.html +398 -0
  583. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html +400 -0
  584. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html +398 -0
  585. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/text_mate_formatted-1.9.1.html +405 -0
  586. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html +405 -0
  587. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/formatters/text_mate_formatter_spec.rb +84 -0
  588. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/hooks_filtering_spec.rb +227 -0
  589. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/hooks_spec.rb +57 -0
  590. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/kernel_extensions_spec.rb +9 -0
  591. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/let_spec.rb +42 -0
  592. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/metadata_spec.rb +298 -0
  593. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/option_parser_spec.rb +75 -0
  594. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/pending_example_spec.rb +226 -0
  595. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/rake_task_spec.rb +161 -0
  596. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/reporter_spec.rb +70 -0
  597. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/resources/a_bar.rb +0 -0
  598. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/resources/a_foo.rb +0 -0
  599. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/resources/a_spec.rb +1 -0
  600. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/resources/custom_example_group_runner.rb +14 -0
  601. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/resources/formatter_specs.rb +54 -0
  602. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/resources/utf8_encoded.rb +8 -0
  603. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/ruby_project_spec.rb +24 -0
  604. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/runner_spec.rb +47 -0
  605. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/shared_context_spec.rb +30 -0
  606. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/shared_example_group_spec.rb +152 -0
  607. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/subject_spec.rb +178 -0
  608. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core/world_spec.rb +174 -0
  609. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/rspec/core_spec.rb +31 -0
  610. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/ruby_forker.rb +13 -0
  611. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/spec_helper.rb +71 -0
  612. data/spec/ruby/1.9.1/gems/rspec-core-2.5.1/spec/support/matchers.rb +44 -0
  613. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/Gemfile +38 -0
  614. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/Guardfile +5 -0
  615. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/License.txt +22 -0
  616. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/README.md +41 -0
  617. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/Rakefile +70 -0
  618. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/cucumber.yml +3 -0
  619. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/Changelog.md +84 -0
  620. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/README.markdown +42 -0
  621. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/Upgrade.md +53 -0
  622. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/built_in_matchers/be.feature +135 -0
  623. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/built_in_matchers/be_within.feature +43 -0
  624. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/built_in_matchers/equality.feature +142 -0
  625. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/built_in_matchers/exist.feature +49 -0
  626. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/built_in_matchers/expect_change.feature +59 -0
  627. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/built_in_matchers/expect_error.feature +105 -0
  628. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/built_in_matchers/have.feature +103 -0
  629. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/built_in_matchers/include.feature +121 -0
  630. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/built_in_matchers/match.feature +50 -0
  631. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/built_in_matchers/operators.feature +221 -0
  632. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/built_in_matchers/predicates.feature +128 -0
  633. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/built_in_matchers/respond_to.feature +78 -0
  634. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/built_in_matchers/satisfy.feature +31 -0
  635. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/built_in_matchers/throw_symbol.feature +85 -0
  636. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/built_in_matchers/types.feature +114 -0
  637. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/custom_matchers/access_running_example.feature +53 -0
  638. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/custom_matchers/define_diffable_matcher.feature +27 -0
  639. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/custom_matchers/define_matcher.feature +311 -0
  640. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/custom_matchers/define_matcher_outside_rspec.feature +38 -0
  641. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/custom_matchers/define_matcher_with_fluent_interface.feature +24 -0
  642. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/customized_message.feature +22 -0
  643. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/diffing.feature +85 -0
  644. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/implicit_docstrings.feature +52 -0
  645. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/step_definitions/additional_cli_steps.rb +22 -0
  646. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/support/env.rb +1 -0
  647. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/features/test_frameworks/test_unit.feature +46 -0
  648. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/expectations/backward_compatibility.rb +16 -0
  649. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/expectations/deprecation.rb +36 -0
  650. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/expectations/differ.rb +62 -0
  651. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/expectations/errors.rb +12 -0
  652. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/expectations/extensions/array.rb +7 -0
  653. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/expectations/extensions/kernel.rb +52 -0
  654. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/expectations/extensions.rb +2 -0
  655. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/expectations/fail_with.rb +51 -0
  656. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/expectations/handler.rb +50 -0
  657. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/expectations/version.rb +7 -0
  658. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/expectations.rb +39 -0
  659. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/be.rb +222 -0
  660. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/be_close.rb +17 -0
  661. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/be_instance_of.rb +26 -0
  662. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/be_kind_of.rb +26 -0
  663. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/be_within.rb +40 -0
  664. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/block_aliases.rb +19 -0
  665. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/change.rb +190 -0
  666. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/compatibility.rb +14 -0
  667. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/dsl.rb +21 -0
  668. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/eq.rb +50 -0
  669. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/eql.rb +45 -0
  670. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/equal.rb +53 -0
  671. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/errors.rb +5 -0
  672. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/exist.rb +26 -0
  673. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/extensions/instance_exec.rb +31 -0
  674. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/generated_descriptions.rb +36 -0
  675. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/has.rb +35 -0
  676. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/have.rb +151 -0
  677. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/include.rb +54 -0
  678. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/match.rb +21 -0
  679. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/match_array.rb +71 -0
  680. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/matcher.rb +161 -0
  681. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/method_missing.rb +12 -0
  682. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/operator_matcher.rb +87 -0
  683. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/pretty.rb +37 -0
  684. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/raise_error.rb +130 -0
  685. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/respond_to.rb +85 -0
  686. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/satisfy.rb +51 -0
  687. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/throw_symbol.rb +121 -0
  688. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers.rb +196 -0
  689. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec-expectations.rb +1 -0
  690. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/rspec-expectations.gemspec +27 -0
  691. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/expectations/differ_spec.rb +96 -0
  692. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/expectations/extensions/kernel_spec.rb +45 -0
  693. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/expectations/fail_with_spec.rb +70 -0
  694. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/expectations/handler_spec.rb +206 -0
  695. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/be_close_spec.rb +22 -0
  696. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/be_instance_of_spec.rb +36 -0
  697. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/be_kind_of_spec.rb +33 -0
  698. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/be_spec.rb +456 -0
  699. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/be_within_spec.rb +64 -0
  700. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/change_spec.rb +409 -0
  701. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/compatibility_spec.rb +28 -0
  702. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/description_generation_spec.rb +160 -0
  703. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/dsl_spec.rb +25 -0
  704. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/eq_spec.rb +38 -0
  705. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/eql_spec.rb +37 -0
  706. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/equal_spec.rb +57 -0
  707. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/exist_spec.rb +104 -0
  708. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/has_spec.rb +81 -0
  709. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/have_spec.rb +401 -0
  710. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/include_spec.rb +341 -0
  711. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/match_array_spec.rb +111 -0
  712. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/match_spec.rb +57 -0
  713. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/matcher_spec.rb +374 -0
  714. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/matchers_spec.rb +51 -0
  715. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/operator_matcher_spec.rb +215 -0
  716. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/raise_error_spec.rb +339 -0
  717. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/respond_to_spec.rb +292 -0
  718. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/satisfy_spec.rb +40 -0
  719. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/rspec/matchers/throw_symbol_spec.rb +113 -0
  720. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/spec_helper.rb +24 -0
  721. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/suite.rb +1 -0
  722. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/support/classes.rb +45 -0
  723. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/support/matchers.rb +22 -0
  724. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/spec/support/ruby_version.rb +10 -0
  725. data/spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/specs.watchr +57 -0
  726. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/Gemfile +39 -0
  727. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/Guardfile +8 -0
  728. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/License.txt +22 -0
  729. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/README.md +57 -0
  730. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/Rakefile +75 -0
  731. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/autotest/discover.rb +1 -0
  732. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/cucumber.yml +2 -0
  733. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/features/Changelog.md +68 -0
  734. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/features/README.markdown +27 -0
  735. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/features/Upgrade.md +14 -0
  736. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/features/message_expectations/README.md +58 -0
  737. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/features/message_expectations/block_local_expectations.feature.pending +55 -0
  738. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/features/message_expectations/expect_message.feature +94 -0
  739. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/features/message_expectations/warn_when_expectation_is_set_on_nil.feature +50 -0
  740. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/features/method_stubs/README.md +39 -0
  741. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/features/method_stubs/simple_return_value.feature +55 -0
  742. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/features/method_stubs/stub_chain.feature +44 -0
  743. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/features/method_stubs/stub_implementation.feature +26 -0
  744. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/features/outside_rspec/configuration.feature +82 -0
  745. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/features/outside_rspec/standalone.feature +32 -0
  746. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/features/support/env.rb +2 -0
  747. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/argument_expectation.rb +53 -0
  748. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/argument_matchers.rb +233 -0
  749. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/error_generator.rb +97 -0
  750. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/errors.rb +10 -0
  751. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/extensions/instance_exec.rb +31 -0
  752. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/extensions/marshal.rb +27 -0
  753. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/framework.rb +17 -0
  754. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/message_expectation.rb +351 -0
  755. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/method_double.rb +165 -0
  756. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/methods.rb +100 -0
  757. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/mock.rb +79 -0
  758. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/order_group.rb +29 -0
  759. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/proxy.rb +158 -0
  760. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/serialization.rb +26 -0
  761. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/space.rb +28 -0
  762. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/spec_methods.rb +53 -0
  763. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/standalone.rb +3 -0
  764. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks/version.rb +7 -0
  765. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/rspec/mocks.rb +196 -0
  766. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/lib/spec/mocks.rb +2 -0
  767. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/rspec-mocks.gemspec +25 -0
  768. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/and_yield_spec.rb +114 -0
  769. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/any_number_of_times_spec.rb +36 -0
  770. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/argument_expectation_spec.rb +25 -0
  771. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/at_least_spec.rb +97 -0
  772. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/at_most_spec.rb +93 -0
  773. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/block_return_value_spec.rb +45 -0
  774. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/bug_report_10260_spec.rb +8 -0
  775. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/bug_report_10263_spec.rb +27 -0
  776. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/bug_report_11545_spec.rb +32 -0
  777. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/bug_report_496_spec.rb +17 -0
  778. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/bug_report_600_spec.rb +22 -0
  779. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/bug_report_7611_spec.rb +18 -0
  780. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/bug_report_7805_spec.rb +22 -0
  781. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/bug_report_8165_spec.rb +31 -0
  782. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/bug_report_8302_spec.rb +26 -0
  783. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/bug_report_830_spec.rb +21 -0
  784. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/bug_report_957_spec.rb +22 -0
  785. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/double_spec.rb +12 -0
  786. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/failing_argument_matchers_spec.rb +96 -0
  787. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/hash_including_matcher_spec.rb +90 -0
  788. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/hash_not_including_matcher_spec.rb +67 -0
  789. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/mock_ordering_spec.rb +94 -0
  790. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/mock_space_spec.rb +54 -0
  791. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/mock_spec.rb +696 -0
  792. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/multiple_return_value_spec.rb +191 -0
  793. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/nil_expectation_warning_spec.rb +63 -0
  794. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/null_object_mock_spec.rb +78 -0
  795. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/once_counts_spec.rb +53 -0
  796. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/options_hash_spec.rb +35 -0
  797. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/partial_mock_spec.rb +155 -0
  798. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/partial_mock_using_mocks_directly_spec.rb +94 -0
  799. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/passing_argument_matchers_spec.rb +145 -0
  800. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/precise_counts_spec.rb +52 -0
  801. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/record_messages_spec.rb +26 -0
  802. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/serialization_spec.rb +88 -0
  803. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/stash_spec.rb +27 -0
  804. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/stub_chain_spec.rb +114 -0
  805. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/stub_implementation_spec.rb +68 -0
  806. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/stub_spec.rb +232 -0
  807. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/stubbed_message_expectations_spec.rb +26 -0
  808. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks/twice_counts_spec.rb +67 -0
  809. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/rspec/mocks_spec.rb +51 -0
  810. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/spec/spec_helper.rb +52 -0
  811. data/spec/ruby/1.9.1/gems/rspec-mocks-2.5.0/specs.watchr +57 -0
  812. data/spec/ruby/1.9.1/specifications/activesupport-3.0.9.gemspec +27 -0
  813. data/spec/ruby/1.9.1/specifications/diff-lcs-1.1.2.gemspec +32 -0
  814. data/spec/ruby/1.9.1/specifications/fakeweb-1.3.0.gemspec +32 -0
  815. data/spec/ruby/1.9.1/specifications/rr-1.0.2.gemspec +29 -0
  816. data/spec/ruby/1.9.1/specifications/rspec-2.5.0.gemspec +38 -0
  817. data/spec/ruby/1.9.1/specifications/rspec-core-2.5.1.gemspec +30 -0
  818. data/spec/ruby/1.9.1/specifications/rspec-expectations-2.5.0.gemspec +32 -0
  819. data/spec/ruby/1.9.1/specifications/rspec-mocks-2.5.0.gemspec +29 -0
  820. metadata +1633 -5
@@ -0,0 +1,1496 @@
1
+ *Rails 3.0.8 (unreleased)*
2
+
3
+ * No changes.
4
+
5
+ *Rails 3.0.7 (April 18, 2011)*
6
+
7
+ * Hash.from_xml no longer loses attributes on tags containing only whitespace [André Arko]
8
+
9
+
10
+ *Rails 3.0.6 (April 5, 2011)
11
+
12
+ * No changes.
13
+
14
+
15
+ *Rails 3.0.5 (February 26, 2011)*
16
+
17
+ * No changes.
18
+
19
+
20
+ *Rails 3.0.4 (February 8, 2011)*
21
+
22
+ * No changes.
23
+
24
+
25
+ *Rails 3.0.3 (November 16, 2010)*
26
+
27
+ * No changes.
28
+
29
+
30
+ *Rails 3.0.2 (November 15, 2010)*
31
+
32
+ * Added before_remove_const callback to ActiveSupport::Dependencies.remove_unloadable_constants! [Andrew White]
33
+
34
+
35
+ *Rails 3.0.1 (October 15, 2010)*
36
+
37
+ * No changes.
38
+
39
+
40
+ *Rails 3.0.0 (August 29, 2010)*
41
+
42
+ * Implemented String#strip_heredoc. [fxn]
43
+
44
+ * Pluggable cache stores: setting config.cache_store = "custom_store" will require 'active_support/cache/custom_store' and look for the CustomStore constant. #5486 [Mike Perham]
45
+
46
+ * Removed Object#returning, Object#tap should be used instead. [Santiago Pastorino]
47
+
48
+ * Deprecation behavior is no longer hardcoded to the name of the environment.
49
+ Instead, it is set via config.active_support.deprecation and can be one
50
+ of :log, :stderr or :notify. :notify is a new style that sends the warning
51
+ via ActiveSupport::Notifications, and is the new default for production
52
+ [Yehuda Katz]
53
+
54
+ * Renamed ActiveSupport::Dependecies.load_(once_)paths to autoload_(once_)paths. [fxn]
55
+
56
+ * Added ActiveSupport::FileUpdateChecker to execute a block only if a set of files changed, used by Router and I18n locale files. [José Valim]
57
+
58
+ * Added ActiveSupport::DescendantsTracker to track descendants with support to constants reloading. [José Valim]
59
+
60
+ * ActiveSupport::OrderedHash#merge and #merge! accept a block. #4838 [Paul Mucur, fxn]
61
+
62
+ * Date#since, #ago, #beginning_of_day, #end_of_day, and #xmlschema honor now the user time zone if set. [Geoff Buesing]
63
+
64
+ * Extracted String#truncate from TextHelper#truncate [DHH]
65
+
66
+ * Ruby 1.9: support UTF-8 case folding. #4595 [Norman Clarke]
67
+
68
+ * Removes Array#rand and backports Array#sample from Ruby 1.9, thanks to Marc-Andre Lafortune. [fxn]
69
+
70
+ * Ruby 1.9: Renames last_(month|year) to prev_(month|year) in Date and Time. [fxn]
71
+
72
+ * Aliases Date#sunday to Date#end_of_week. [fxn]
73
+
74
+ * Backports Date#>> from 1.9 so that calculations do the right thing around the calendar reform. [fxn]
75
+
76
+ * Date#to_time handles properly years in the range 0..138. [fxn]
77
+
78
+ * Deprecate {{}} as interpolation syntax for I18n in favor of %{} [José Valim]
79
+
80
+ * Array#to_xml is more powerful and able to handle the same types as Hash#to_xml #4490 [Neeraj Singh]
81
+
82
+ * Harmonize the caching API and refactor the backends. #4452 [Brian Durand]
83
+ All caches:
84
+ * Add default options to initializer that will be sent to all read, write, fetch, exist?, increment, and decrement
85
+ * Add support for the :expires_in option to fetch and write for all caches. Cache entries are stored with the create timestamp and a ttl so that expiration can be handled independently of the implementation.
86
+ * Add support for a :namespace option. This can be used to set a global prefix for cache entries.
87
+ * Deprecate expand_cache_key on ActiveSupport::Cache and move it to ActionController::Caching and ActionDispatch::Http::Cache since the logic in the method used some Rails specific environment variables and was only used by ActionPack classes. Not very DRY but there didn't seem to be a good shared spot and ActiveSupport really shouldn't be Rails specific.
88
+ * Add support for :race_condition_ttl to fetch. This setting can prevent race conditions on fetch calls where several processes try to regenerate a recently expired entry at once.
89
+ * Add support for :compress option to fetch and write which will compress any data over a configurable threshold.
90
+ * Nil values can now be stored in the cache and are distinct from cache misses for fetch.
91
+ * Easier API to create new implementations. Just need to implement the methods read_entry, write_entry, and delete_entry instead of overwriting existing methods.
92
+ * Since all cache implementations support storing objects, update the docs to state that ActiveCache::Cache::Store implementations should store objects. Keys, however, must be strings since some implementations require that.
93
+ * Increase test coverage.
94
+ * Document methods which are provided as convenience but which may not be universally available.
95
+
96
+ MemoryStore:
97
+ * MemoryStore can now safely be used as the cache for single server sites.
98
+ * Make thread safe so that the default cache implementation used by Rails is thread safe. The overhead is minimal and it is still the fastest store available.
99
+ * Provide :size initialization option indicating the maximum size of the cache in memory (defaults to 32Mb).
100
+ * Add prune logic that removes the least recently used cache entries to keep the cache size from exceeding the max.
101
+ * Deprecated SynchronizedMemoryStore since it isn't needed anymore.
102
+
103
+ FileStore:
104
+ * Escape key values so they will work as file names on all file systems, be consistent, and case sensitive
105
+ * Use a hash algorithm to segment the cache into sub directories so that a large cache doesn't exceed file system limits.
106
+ * FileStore can be slow so implement the LocalCache strategy to cache reads for the duration of a request.
107
+ * Add cleanup method to keep the disk from filling up with expired entries.
108
+ * Fix increment and decrement to use file system locks so they are consistent between processes.
109
+
110
+ MemCacheStore:
111
+ * Support all keys. Previously keys with spaces in them would fail
112
+ * Deprecate CompressedMemCacheStore since it isn't needed anymore (use :compress => true)
113
+
114
+ * JSON: encode objects that don't have a native JSON representation using to_hash, if available, instead of instance_values (the old fallback) or to_s (other encoders' default). Encode BigDecimal and Regexp encode as strings to conform with other encoders. Try to transcode non-UTF-8 strings. [Jeremy Kemper]
115
+
116
+ * HashWithIndifferentAccess: remove inherited symbolize_keys! since its keys are always strings. [Santiago Pastorino]
117
+
118
+ * Improve transliteration quality. #4374 [Norman Clarke]
119
+
120
+ * Speed up and add Ruby 1.9 support for ActiveSupport::Multibyte::Chars#tidy_bytes. #4350 [Norman Clarke]
121
+
122
+ * Reduced load time by deferring configuration of classes using
123
+ ActiveSupport::on_load(:component_name) [YK]
124
+
125
+ * Rename #metaclass to #singleton_class now that ruby-core has decided [JK]
126
+
127
+ * New assertions assert_blank and assert_present. #4299 [Juanjo Bazan]
128
+
129
+ * Use Object#singleton_class instead of #metaclass. Prefer Ruby's choice. [Jeremy Kemper]
130
+
131
+ * JSON backend for YAJL. Preferred if available. #2666 [Brian Lopez]
132
+
133
+ * Introduce class_attribute to declare inheritable class attributes. Writing an attribute on a subclass behaves just like overriding the superclass reader method. Unifies and replaces most usage of cattr_accessor, class_inheritable_attribute, superclass_delegating_attribute, and extlib_inheritable_attribute. [Jeremy Kemper, Yehuda Katz]
134
+
135
+ * Time#- with a DateTime argument behaves the same as with a Time argument, i.e. returns the difference between self and arg as a Float #3476 [Geoff Buesing]
136
+
137
+ * YAML serialization for OrderedHash. #3608 [Gregor Schmidt]
138
+
139
+ * Update bundled TZInfo to v0.3.16 [Geoff Buesing]
140
+
141
+ * Georgetown TimeZone is now mapped to "America/Guyana" instead of "America/Argentina/San_Juan" #1821 [Geoff Buesing, Reuben Sivan]
142
+
143
+ * Changed the default ActiveSupport.use_standard_json_time_format from false to true and
144
+ ActiveSupport.escape_html_entities_in_json from true to false to match previously announced Rails 3 defaults [DHH]
145
+
146
+ * Added Object#presence that returns the object if it's #present? otherwise returns nil [DHH/Colin Kelley]
147
+
148
+ * Add Enumerable#exclude? to bring parity to Enumerable#include? and avoid if !x.include?/else calls [DHH]
149
+
150
+ * Update Edinburgh TimeZone to use "Europe/London" instead of "Europe/Dublin" #3310 [Phil Ross]
151
+
152
+ * Update bundled TZInfo to v0.3.15 [Geoff Buesing]
153
+
154
+ * JSON: +Object#to_json+ calls +as_json+ to coerce itself into something natively encodable like +Hash+, +Integer+, or +String+. Override +as_json+ instead of +to_json+ so you're JSON library agnostic. [Jeremy Kemper]
155
+
156
+ * String #to_time and #to_datetime: handle fractional seconds #864 [Jason Frey]
157
+
158
+ * Update bundled TZInfo to v0.3.13 [Geoff Buesing]
159
+
160
+ * Allow MemCacheStore to be initialized with a MemCache-like object instead of addresses and options [Bryan Helmkamp]
161
+
162
+ * Change spelling of Kyev timezone to Kyiv #2613 [Alexander Dymo]
163
+
164
+ * Add ActiveSupport.parse_json_times to disable time parsing in JSON backends that don't support it or don't need it. [rick]
165
+
166
+ * Add pluggable JSON backends with support for the JSON gem. [rick]
167
+ Example: ActiveSupport::JSON.backend = "JSONGem"
168
+
169
+ All internal Rails JSON encoding is now handled by ActiveSupport::JSON.encode(). Use of #to_json is not recommended, as it may clash with other libraries that overwrite it. However, you can recover Rails specific functionality
170
+ if you really want to use #to_json.
171
+
172
+ gem 'json'
173
+ ActiveSupport::JSON.backend = "JSONGem"
174
+
175
+ class ActiveRecord::Base
176
+ alias to_json rails_to_json
177
+ end
178
+
179
+ * require 'active_support' no longer orders the whole menu of core extensions. Ask for just what you need: e.g. require 'active_support/core/time' to use timezones, durations, and stdlib date/time extensions. [Jeremy Kemper]
180
+
181
+ * Removed rarely-used DRb cache store. [Jeremy Kemper]
182
+
183
+ * TimeWithZone.name returns 'Time', to further thwart type checking [Geoff Buesing]
184
+
185
+ * Time.local instances: Adding 24.hours across the DST boundary adds 24 hours instead of one day #2066 [Michael Curtis]
186
+
187
+
188
+ *2.3.2 [Final] (March 15, 2009)*
189
+
190
+ * XmlMini supports LibXML and Nokogiri backends. #2084, #2190 [Bart ten Brinke, Aaron Patterson]
191
+ Example: XmlMini.backend = 'Nokogiri'
192
+
193
+ * Vendorize i18n 0.1.3 gem (fixes issues with incompatible character encodings in Ruby 1.9) #2038 [Akira Matsuda]
194
+
195
+ * Update bundled memcache-client from 1.5.0.5 to 1.6.4.99. See http://www.mikeperham.com/2009/02/15/memcache-client-performance/ [Mike Perham]
196
+
197
+ * Ruby 1.9.1p0 fix: URI.unescape can decode multibyte chars. #2033 [MOROHASHI Kyosuke]
198
+
199
+ * Time#to_s(:rfc822) uses #formatted_offset instead of unreliable and non-standard %z directive #1899 [Zachary Zolton]
200
+
201
+ * Make TimeWithZone#to_formatted_s an alias to TimeWithZone#to_s #1796 [Levin Alexander]
202
+
203
+ * Introduce Array.wrap(foo) to wrap the argument in an array unless it's already an array. Wraps nil as an empty array. Use instead of Array(foo) and foo.to_a since they treat String as Enumerable. [Jeremy Kemper]
204
+
205
+ * TimeWithZone#xmlschema accepts optional fraction_digits argument [#1725 state:resolved] [Nicholas Dainty]
206
+
207
+ * Object#tap shim for Ruby < 1.8.7. Similar to Object#returning, tap yields self then returns self. [Jeremy Kemper]
208
+ array.select { ... }.tap(&:inspect).map { ... }
209
+
210
+ * TimeWithZone#- gives correct result with wrapped DateTime, and with DateTime argument [Geoff Buesing]
211
+
212
+ * Updated i18n gem to version 0.1.1 #1635 [Yaroslav Markin]
213
+
214
+ * Add :allow_nil option to delegate. #1127 [Sergio Gil]
215
+
216
+ * Add Benchmark.ms convenience method to benchmark realtime in milliseconds. [Jeremy Kemper]
217
+
218
+ * Updated included memcache-client to the 1.5.0.5 version which includes fixes from fiveruns and 37signals to deal with failover and timeouts #1535 [Joshua Sierles]
219
+
220
+ * Multibyte: add multibyte-safe Chars#ord rather than falling back to String#ord. #1483 [Jason Cheow]
221
+
222
+ * I18n support for Array#to_sentence. Introduces support.array.words_connector, .two_words_connector, and .last_word_connector translation keys. #1397 [Akira Matsuda]
223
+
224
+ * Added ActiveSupport::OrderedHash#each_key and ActiveSupport::OrderedHash#each_value #1410 [Christoffer Sawicki]
225
+
226
+ * Added ActiveSupport::MessageVerifier and MessageEncryptor to aid users who need to store signed and/or encrypted messages. [Michael Koziarski]
227
+
228
+ * Added ActiveSupport::BacktraceCleaner to cut down on backtrace noise according to filters and silencers [David Heinemeier Hansson]
229
+
230
+ * Added Object#try. ( Taken from http://ozmm.org/posts/try.html ) [Chris Wanstrath]
231
+
232
+ * Added Enumerable#none? to check that none of the elements match the block #1408 [Damian Janowski]
233
+
234
+ * TimeZone offset tests: use current_period, to ensure TimeZone#utc_offset is up-to-date [Geoff Buesing]
235
+
236
+ * Update bundled TZInfo to 0.3.12 [Geoff Buesing]
237
+
238
+ * Added lambda merging to OptionMerger (especially useful with named_scope and with_options) #726 [Paweł Kondzior]
239
+
240
+
241
+ *2.2.1 [RC2] (November 14th, 2008)*
242
+
243
+ * Increment the version of our altered memcache-client to prevent confusion caused when the 1.5.0 gem is installed.
244
+
245
+ * Fixed the option merging in Array#to_xml #1126 [Rudolf Gavlas]
246
+
247
+ * Make I18n::Backend::Simple reload its translations in development mode [David Heinemeier Hansson/Sven Fuchs]
248
+
249
+
250
+ *2.2.0 [RC1] (October 24th, 2008)*
251
+
252
+ * TimeWithZone#freeze: preload instance variables so that we can actually freeze [Geoff Buesing]
253
+
254
+ * Fix Brasilia timezone #1180 [Marcus Derencius, Kane]
255
+
256
+ * Time#advance recognizes fractional days and weeks. Deprecate Durations of fractional months and years #970 [Tom Lea]
257
+
258
+ * Add ActiveSupport::Rescuable module abstracting ActionController::Base rescue_from features. [Norbert Crombach, Pratik Naik]
259
+
260
+ * Switch from String#chars to String#mb_chars for the unicode proxy. [Manfred Stienstra]
261
+
262
+ This helps with 1.8.7 compatibility and also improves performance for some operations by reducing indirection.
263
+
264
+ * TimeWithZone #wday, #yday and #to_date avoid trip through #method_missing [Geoff Buesing]
265
+
266
+ * Added Time, Date, DateTime and TimeWithZone #past?, #future? and #today? #720 [Clemens Kofler, Geoff Buesing]
267
+
268
+ * Fixed Sri Jayawardenepura time zone to map to Asia/Colombo [Jamis Buck]
269
+
270
+ * Added Inflector#parameterize for easy slug generation ("Donald E. Knuth".parameterize => "donald-e-knuth") #713 [Matt Darby]
271
+
272
+ * Changed cache benchmarking to be reported in milliseconds [David Heinemeier Hansson]
273
+
274
+ * Fix Ruby's Time marshaling bug in pre-1.9 versions of Ruby: utc instances are now correctly unmarshaled with a utc zone instead of the system local zone [#900 state:resolved] [Luca Guidi, Geoff Buesing]
275
+
276
+ * Add Array#in_groups which splits or iterates over the array in specified number of groups. #579. [Adrian Mugnolo] Example:
277
+
278
+ a = (1..10).to_a
279
+ a.in_groups(3) # => [[1, 2, 3, 4], [5, 6, 7, nil], [8, 9, 10, nil]]
280
+ a.in_groups(3, false) # => [[1, 2, 3, 4], [5, 6, 7], [8, 9, 10]]
281
+
282
+ * Fix TimeWithZone unmarshaling: coerce unmarshaled Time instances to utc, because Ruby's marshaling of Time instances doesn't respect the zone [Geoff Buesing]
283
+
284
+ * Added Memoizable mixin for caching simple lazy loaded attributes [Josh Peek]
285
+
286
+ * Move the test related core_ext stuff out of core_ext so it's only loaded by the test helpers. [Michael Koziarski]
287
+
288
+ * Add Inflection rules for String#humanize. #535 [Dan Manges]
289
+
290
+ ActiveSupport::Inflector.inflections do |inflect|
291
+ inflect.human(/_cnt$/i, '\1_count')
292
+ end
293
+
294
+ 'jargon_cnt'.humanize # => 'Jargon count'
295
+
296
+ * TimeWithZone: when crossing DST boundary, treat Durations of days, months or years as variable-length, and all other values as absolute length. A time + 24.hours will advance exactly 24 hours, but a time + 1.day will advance 23-25 hours, depending on the day. Ensure consistent behavior across all advancing methods [Geoff Buesing]
297
+
298
+ * Added TimeZone #=~, to support matching zones by regex in time_zone_select. #195 [Ernie Miller]
299
+
300
+ * Added Array#second through Array#fifth as aliases for Array#[1] through Array#[4] + Array#forty_two as alias for Array[41] [David Heinemeier Hansson]
301
+
302
+ * Added test/do declaration style testing to ActiveSupport::TestCase [DHH via Jay Fields]
303
+
304
+ * Added Object#present? which is equivalent to !Object#blank? [David Heinemeier Hansson]
305
+
306
+ * Added Enumberable#many? to encapsulate collection.size > 1 [David Heinemeier Hansson/Damian Janowski]
307
+
308
+ * Add more standard Hash methods to ActiveSupport::OrderedHash [Steve Purcell]
309
+
310
+ * Namespace Inflector, Dependencies, OrderedOptions, and TimeZone under ActiveSupport [Josh Peek]
311
+
312
+ * Added StringInquirer for doing things like StringInquirer.new("production").production? # => true and StringInquirer.new("production").development? # => false [David Heinemeier Hansson]
313
+
314
+ * Fixed Date#end_of_quarter to not blow up on May 31st [#289 state:resolved] (Danger)
315
+
316
+
317
+ *2.1.0 (May 31st, 2008)*
318
+
319
+ * TimeZone#to_s shows offset as GMT instead of UTC, because GMT will be more familiar to end users (see time zone selects used by Windows OS, google.com and yahoo.com.) Reverts [8370] [Geoff Buesing]
320
+
321
+ * Hash.from_xml: datetime xml types overflow to Ruby DateTime class when out of range of Time. Adding tests for utc offsets [Geoff Buesing]
322
+
323
+ * TimeWithZone #+ and #- : ensure overflow to DateTime with Numeric arg [Geoff Buesing]
324
+
325
+ * Time#to_json: don't convert to utc before encoding. References #175 [Geoff Buesing]
326
+
327
+ * Remove unused JSON::RESERVED_WORDS, JSON.valid_identifier? and JSON.reserved_word? methods. Resolves #164. [Cheah Chu Yeow]
328
+
329
+ * Adding Date.current, which returns Time.zone.today if config.time_zone is set; otherwise returns Date.today [Geoff Buesing]
330
+
331
+ * TimeWithZone: date part getter methods (#year #mon #day etc) are defined on class; no longer relying on method_missing [Geoff Buesing]
332
+
333
+ * Time.zone.parse return nil for strings with no date information [Geoff Buesing]
334
+
335
+ * Time.zone.parse respects offset information in string. Resolves #105. [Scott Fleckenstein, Geoff Buesing]
336
+
337
+ * Added Ruby 1.8 implementation of Process.daemon
338
+
339
+ * Duration #since and #ago with no argument (e.g., 5.days.ago) return TimeWithZone when config.time_zone is set. Introducing Time.current, which returns Time.zone.now if config.time_zone is set, otherwise just returns Time.now [Geoff Buesing]
340
+
341
+ * Time#since behaves correctly when passed a Duration. Closes #11527 [kemiller]
342
+
343
+ * Add #getutc alias for DateTime#utc [Geoff Buesing]
344
+
345
+ * Refactor TimeWithZone: don't send #since, #ago, #+, #-, #advance through method_missing [Geoff Buesing]
346
+
347
+ * TimeWithZone respects config.active_support.use_standard_json_time_format [Geoff Buesing]
348
+
349
+ * Add config.active_support.escape_html_entities_in_json to allow disabling of html entity escaping. [Rick Olson]
350
+
351
+ * Improve documentation. [Xavier Noria]
352
+
353
+ * Modified ActiveSupport::Callbacks::Callback#call to accept multiple arguments.
354
+
355
+ * Time #yesterday and #tomorrow behave correctly crossing DST boundary. Closes #7399 [sblackstone]
356
+
357
+ * TimeWithZone: Adding tests for dst and leap day edge cases when advancing time [Geoff Buesing]
358
+
359
+ * TimeWithZone#method_missing: send to utc to advance with dst correctness, otherwise send to time. Adding tests for time calculations methods [Geoff Buesing]
360
+
361
+ * Add config.active_support.use_standard_json_time_format setting so that Times and Dates export to ISO 8601 dates. [Rick Olson]
362
+
363
+ * TZInfo: Removing unneeded TimezoneProxy class [Geoff Buesing]
364
+
365
+ * TZInfo: Removing unneeded TimezoneIndexDefinition, since we're not including Indexes::Timezones [Geoff Buesing]
366
+
367
+ * Removing unnecessary uses_tzinfo helper from tests, given that TZInfo is now bundled [Geoff Buesing]
368
+
369
+ * Bundling abbreviated version of TZInfo gem 0.3.8: only the classes and zone definitions required to support Rails time zone features are included. If a recent version of the full TZInfo gem is installed, this will take precedence over the bundled version [Geoff Buesing]
370
+
371
+ * TimeWithZone#marshal_load does zone lookup via Time.get_zone, so that tzinfo/Olson identifiers are handled [Geoff Buesing]
372
+
373
+ * Time.zone= accepts TZInfo::Timezone instances and Olson identifiers; wraps result in TimeZone instance [Geoff Buesing]
374
+
375
+ * TimeWithZone time conversions don't need to be wrapped in TimeOrDateTime, because TZInfo does this internally [Geoff Buesing]
376
+
377
+ * TimeWithZone#usec returns 0 instead of error when DateTime is wrapped [Geoff Buesing]
378
+
379
+ * Improve documentation. [Ryan Bigg, Jan De Poorter, Cheah Chu Yeow, Xavier Shay, Jack Danger Canty, Emilio Tagua, Xavier Noria, Sunny Ripert]
380
+
381
+ * Ensure that TimeWithZone#to_yaml works when passed a YAML::Emitter. [Rick Olson]
382
+
383
+ * Ensure correct TimeWithZone#to_date [Geoff Buesing]
384
+
385
+ * Make TimeWithZone work with tzinfo 0.2.x: use TZInfo::Timezone#zone_identifier alias for #abbreviation, silence warnings on tests. Raise LoadError when TZInfo version is < 0.2 by sniffing for TZInfo::TimeOrDateTime constant. Move all tzinfo-dependent TimeZone tests into uses_tzinfo block [Geoff Buesing]
386
+
387
+ * Time, DateTime and TimeWithZone #in_time_zone defaults to Time.zone. Removing now unneeded #in_current_time_zone [Geoff Buesing]
388
+
389
+ * TZInfo caches Timezone instances in its own internal hash cache, so TimeZone::MAPPING doesn't need to cache them as well [Geoff Buesing]
390
+
391
+ * Adding TimeZone#parse [Geoff Buesing]
392
+
393
+ * Adding TimeZone#at and DateTime#to_f [Geoff Buesing]
394
+
395
+ * TimeWithZone responds to Ruby 1.9 weekday-named query methods [Geoff Buesing]
396
+
397
+ * TimeWithZone caches TZInfo::TimezonePeriod used for time conversion so that it can be reused, and enforces DST rules correctly when instance is created from a local time [Geoff Buesing]
398
+
399
+ * Fixed that BufferedLogger should create its own directory if one doesn't already exist #11285 [lotswholetime]
400
+
401
+ * Fix Numeric time tests broken by DST change by anchoring them to fixed times instead of Time.now. Anchor TimeZone#now DST test to time specified with Time.at instead of Time.local to work around platform differences with Time.local and DST representation [Geoff Buesing]
402
+
403
+ * Removing unneeded #change_time_zone method from Time, DateTime and TimeWithZone [Geoff Buesing]
404
+
405
+ * TimeZone #local and #now correctly enforce DST rules [Geoff Buesing]
406
+
407
+ * TimeWithZone instances correctly enforce DST rules. Adding TimeZone#period_for_utc [Geoff Buesing]
408
+
409
+ * test_time_with_datetime_fallback expects DateTime.local_offset instead of DateTime.now.offset [Geoff Buesing]
410
+
411
+ * Adding TimeWithZone #marshal_dump and #marshal_load [Geoff Buesing]
412
+
413
+ * Add OrderedHash#to_hash [Josh Peek]
414
+
415
+ * Adding Time#end_of_day, _quarter, _week, and _year. #9312 [Juanjo Bazan, Tarmo Tänav, BigTitus]
416
+
417
+ * Adding TimeWithZone#between? [Geoff Buesing]
418
+
419
+ * Time.=== returns true for TimeWithZone instances [Geoff Buesing]
420
+
421
+ * TimeWithZone #+ and #- behave consistently with numeric arguments regardless of whether wrapped time is a Time or DateTime; consistenty answers false to #acts_like?(:date) [Geoff Buesing]
422
+
423
+ * Add String#squish and String#squish! to remove consecutive chunks of whitespace. #11123 [Jordi Bunster, Henrik N]
424
+
425
+ * Serialize BigDecimals as Floats when using to_yaml. #8746 [Ernesto Jimenez]
426
+
427
+ * Adding TimeWithZone #to_yaml, #to_datetime, #eql? and method aliases for duck-typing compatibility with Time [Geoff Buesing]
428
+
429
+ * TimeWithZone #in_time_zone returns +self+ if zone argument is the same as #time_zone [Geoff Buesing]
430
+
431
+ * Adding TimeWithZone #to_a, #to_f, #to_i, #httpdate, #rfc2822 [Geoff Buesing]
432
+
433
+ * Pruning unneeded TimeWithZone#change_time_zone_to_current [Geoff Buesing]
434
+
435
+ * Time#zone=, #in_time_zone and #change_time_zone accept a Duration [Geoff Buesing]
436
+
437
+ * Time#in_time_zone handles Time.local instances correctly [Geoff Buesing]
438
+
439
+ * Pruning unneeded Time#change_time_zone_to_current. Enhanced docs to #change_time_zone to explain the difference between this method and #in_time_zone [Geoff Buesing]
440
+
441
+ * TimeZone#new method renamed #local; when used with Time.zone, constructor now reads: Time.zone.local() [Geoff Buesing]
442
+
443
+ * Added Base64.encode64s to encode values in base64 without the newlines. This makes the values immediately usable as URL parameters or memcache keys without further processing [David Heinemeier Hansson]
444
+
445
+ * Remove :nodoc: entries around the ActiveSupport test/unit assertions. #10946 [dancroak, jamesh]
446
+
447
+ * Add Time.zone_default accessor for setting the default time zone. Rails::Configuration.time_zone sets this. #10982 [Geoff Buesing]
448
+
449
+ * cache.fetch(key, :force => true) to force a cache miss. [Jeremy Kemper]
450
+
451
+ * Support retrieving TimeZones with a Duration. TimeZone[-28800] == TimeZone[-480.minutes]. [Rick Olson]
452
+
453
+ * TimeWithZone#- added, so that #- can handle a Time or TimeWithZone argument correctly [Geoff Buesing]
454
+
455
+ * with_timezone test helper renamed with_env_tz, to distinguish between setting ENV['TZ'] and setting Time.zone in tests [Geoff Buesing]
456
+
457
+ * Time#- coerces TimeWithZone argument to a Time instance so that difference in seconds can be calculated. Closes #10914 [Geoff Buesing, yyyc514]
458
+
459
+ * Adding UTC zone to TimeZone; TimeWithZone no longer has to fake UTC zone with nil [Geoff Buesing]
460
+
461
+ * Time.get_zone refactored to private method, given that the encapsulated logic is only useful internally [Geoff Buesing]
462
+
463
+ * Time.zone uses thread-local variable for thread safety. Adding Time.use_zone, for overriding Time.zone locally inside a block. Removing unneeded Time.zone_reset! [Geoff Buesing]
464
+
465
+ * TimeZone#to_s uses UTC rather than GMT; reapplying change that was undone in [8679]. #1689 [Cheah Chu Yeow]
466
+
467
+ * Time.days_in_month defaults to current year if no year is supplied as argument #10799 [Radar], uses Date.gregorian_leap? to determine leap year, and uses constant lookup to determine days in month [Geoff Buesing]
468
+
469
+ * Adding Time and DateTime #compare_with_coercion, which layers behavior on #<=> so that any combination of Time, DateTime and ActiveSupport::TimeWithZone instances can be chronologically compared [Geoff Buesing]
470
+
471
+ * TimeZone#now returns an ActiveSupport::TimeWithZone [Geoff Buesing]
472
+
473
+ * Time #in_current_time_zone and #change_time_zone_to_current return self when Time.zone is nil [Geoff Buesing]
474
+
475
+ * Remove unneeded #to_datetime_default_s alias for DateTime#to_s, given that we inherit a #to_default_s from Date that does exactly the same thing [Geoff Buesing]
476
+
477
+ * Refactor Time and DateTime #to_formatted_s: use ternary instead of nested if/else [Geoff Buesing]
478
+
479
+ * Adding Time and DateTime #formatted_offset, for outputting +HH:MM utc offset strings with cross-platform consistency [Geoff Buesing]
480
+
481
+ * Adding alternate_utc_string option to TimeZone#formatted_offset. Removing unneeded TimeZone#offset. [Geoff Buesing]
482
+
483
+ * Introduce ActiveSupport::TimeWithZone, for wrapping Time instances with a TimeZone. Introduce instance methods to Time for creating TimeWithZone instances, and class methods for managing a global time zone. [Geoff Buesing]
484
+
485
+ * Replace non-dst-aware TimeZone class with dst-aware class from tzinfo_timezone plugin. TimeZone#adjust and #unadjust are no longer available; tzinfo gem must now be present in order to perform time zone calculations, via #local_to_utc and #utc_to_local methods. [Geoff Buesing]
486
+
487
+ * Extract ActiveSupport::Callbacks from Active Record, test case setup and teardown, and ActionController::Dispatcher. #10727 [Josh Peek]
488
+
489
+ * Introducing DateTime #utc, #utc? and #utc_offset, for duck-typing compatibility with Time. Closes #10002 [Geoff Buesing]
490
+
491
+ * Time#to_json uses Numeric#to_utc_offset_s to output a cross-platform-consistent representation without having to convert to DateTime. References #9750 [Geoff Buesing]
492
+
493
+ * Refactor number-to-HH:MM-string conversion logic from TimeZone#formatted_offset to a reusable Numeric#to_utc_offset_s method. [Geoff Buesing]
494
+
495
+ * Continue evolution toward ActiveSupport::TestCase. #10679 [Josh Peek]
496
+
497
+ * TestCase: introduce declared setup and teardown callbacks. Pass a list of methods and an optional block to call before setup or after teardown. Setup callbacks are run in the order declared; teardown callbacks are run in reverse. [Jeremy Kemper]
498
+
499
+ * Added ActiveSupport::Gzip.decompress/compress(source) as an easy wrapper for Zlib [Tobias Lütke]
500
+
501
+ * Included MemCache-Client to make the improved ActiveSupport::Cache::MemCacheStore work out of the box [Bob Cottrell, Eric Hodel]
502
+
503
+ * Added ActiveSupport::Cache::* framework as an extraction from ActionController::Caching::Fragments::* [David Heinemeier Hansson]
504
+
505
+ * Fixed String#titleize to work for strings with 's too #10571 [trek]
506
+
507
+ * Changed the implementation of Enumerable#group_by to use a double array approach instead of a hash such that the insert order is honored [David Heinemeier Hansson/Marcel Molina Jr.]
508
+
509
+ * remove multiple enumerations from ActiveSupport::JSON#convert_json_to_yaml when dealing with date/time values. [Rick Olson]
510
+
511
+ * Hash#symbolize_keys skips keys that can't be symbolized. #10500 [Brad Greenlee]
512
+
513
+ * Ruby 1.9 compatibility. #1689, #10466, #10468, #10554, #10594, #10632 [Cheah Chu Yeow, Pratik Naik, Jeremy Kemper, Dirkjan Bussink, Xavier Noria]
514
+
515
+ * TimeZone#to_s uses UTC rather than GMT. #1689 [Cheah Chu Yeow]
516
+
517
+ * Refactor of Hash#symbolize_keys! to use Hash#replace. Closes #10420 [ReinH]
518
+
519
+ * Fix HashWithIndifferentAccess#to_options! so it doesn't clear the options hash. Closes #10419 [ReinH]
520
+
521
+
522
+ *2.0.1* (December 7th, 2007)
523
+
524
+ * Added Array#from and Array#to that behaves just from String#from and String#to [David Heinemeier Hansson]
525
+
526
+ * Fix that empty collections should be treated as empty arrays regardless of whitespace for Hash#from_xml #10255 [adamj]
527
+
528
+ * Time#time_with_datetime_fallback, Time#to_datetime, Date#to_datetime and String#to_datetime honor Ruby's default calendar reform setting. #10201 [Geoff Buesing]
529
+
530
+ * Change Time and DateTime #end_of_month to return last second of month instead of beginning of last day of month. Closes #10200 [Geoff Buesing]
531
+
532
+ * Speedup String#blank? [Jeremy Kemper, Michael Koziarski]
533
+
534
+ * Add documentation for Hash#diff. Closes #9306 [Tarmo Tänav]
535
+
536
+ * Add new superclass_delegating_accessors. Similar to class inheritable attributes but with subtly different semantics. [Michael Koziarski, Tarmo Tänav]
537
+
538
+ * Change JSON to encode %w(< > &) as 4 digit hex codes to be in compliance with the JSON spec. Closes #9975 [Josh Peek, Cheah Chu Yeow, Tim Pope]
539
+
540
+ * Fix JSON encoding/decoding bugs dealing with /'s. Closes #9990 [Rick Olson, theamazingrando]
541
+
542
+ * Introduce a base class for all test cases used by rails applications. ActiveSupport::TestCase [Michael Koziarski]
543
+
544
+ The intention is to use this to reduce the amount of monkeypatching / overriding that
545
+ is done to test/unit's classes.
546
+
547
+ * Document Enumerable and Hash #to_json. #9970 [Cheah Chu Yeow]
548
+
549
+ * Hash#to_xml handles symbol values. #9954 [Assaf]
550
+
551
+ * Hash#symbolize_keys behaves well with integer keys. #9890 [PotatoSalad]
552
+
553
+ * Multibyte: String#slice supports regexp argument. #9646 [yob]
554
+
555
+ * object.duplicable? returns true if object.dup is safe. False for nil, true, false, symbols, and numbers; true otherwise. #9333 [sur]
556
+
557
+ * Time, Date and DateTime #advance accept :weeks option. #9866 [Geoff Buesing]
558
+
559
+ * Fix Time#years_ago and #years_since from leap days. #9865 [Geoff Buesing]
560
+
561
+ * Time and DateTime#advance accept :hours, :minutes, and :seconds options. #9825 [Geoff Buesing]
562
+
563
+ * Fix Date#years_ago and #years_since from leap days. #9864 [Geoff Buesing]
564
+
565
+ * Refactor Time and Date#months_since and #months_ago to use #advance. #9863 [Geoff Buesing]
566
+
567
+ * Rebundle Builder 2.1.2 but prefer a newer RubyGem if available. [Jeremy Kemper]
568
+
569
+ * Add Range#overlaps?(range), Range#include?(range), and Range#step without a block. [brandon]
570
+
571
+ * Correct BufferedLogger#level? checks. #9806 [wildchild, Johan Sorensen]
572
+
573
+ * String#to_xs uses Eric Wong's fast_xs extension, if available, for Builder speedup. http://bogomips.org/fast_xs/ [Jeremy Kemper]
574
+
575
+ * Introduce BasicObject as Builder::BlankSlate for Ruby 1.9 forward compatibility. [Jeremy Kemper]
576
+
577
+ * Unbundle Builder in favor of a gem dependency. [Jeremy Kemper]
578
+
579
+ * Disambiguate Time, Date, and DateTime#to_json formatting. #9750 [Geoff Buesing, Cheah Chu Yeow]
580
+
581
+ * Hash#to_json takes :only or :except options to specific or omit certain hash keys. Enumerable#to_json passes through its options to each element. #9751 [Cheah Chu Yeow]
582
+
583
+ * BufferedLogger#auto_flushing = N flushes the log every N messages. Buffers with an array instead of string. Disabling auto_flushing still flushes when the buffer hits a maximum size, as a failsafe against memory-gobbling. [Jeremy Kemper]
584
+
585
+ * Fixed Date#xmlschema for dates outside the range of what can be created with Time #9744 [Geoff Buesing]
586
+
587
+ * Fixed that La Paz was included in -25200 and -14400 offsets when it should only be in -14400 #9735 [bermi]
588
+
589
+ * Fixed JSON encoding to use quoted keys according to the JSON standard. #8762 [choonkat, Cheah Chu Yeow]
590
+
591
+ * Alias Object#send to send! for Ruby 1.9 forward compatibility. [Jeremy Kemper]
592
+
593
+ * Backport Object#instance_variable_defined? for Ruby < 1.8.6. [Jeremy Kemper]
594
+
595
+ * BufferedLogger#add converts the message to a string. #9702, #9724 [eigentone, DrMark, Tom Ward]
596
+
597
+ * Added ActiveSupport::BufferedLogger as a duck-typing alternative (albeit with no formatter) to the Ruby Logger, which provides a very nice speed bump (inspired by Ezra's buffered logger) [David Heinemeier Hansson]
598
+
599
+ * Object#instance_exec produces fewer garbage methods. [Mauricio Fernandez]
600
+
601
+ * Decode json strings as Dates/Times if they're using a YAML-compatible format. Closes #9614 [Rick Olson]
602
+
603
+ * Fixed cache_page to use the request url instead of the routing options when picking a save path. #8614 [Josh Peek]
604
+
605
+ * Object.subclasses_of includes anonymous subclasses. [Jeremy Kemper]
606
+
607
+ * Fixed that pluralizing an empty string should return the same empty string, not "s". #7720 [Josh Peek]
608
+
609
+ * Added call to inspect on non-string classes for the logger #8533 [Coda Hale]
610
+
611
+ * Deprecation: remove deprecated :mday option from Time, Date, and DateTime#change. [Jeremy Kemper]
612
+
613
+ * Fix JSON decoder with nested quotes and commas. #9579 [Zach Dennis]
614
+
615
+ * Hash#to_xml doesn't double-unescape. #8806 [Ezran]
616
+
617
+ * Added Array#rand #9170 [Norbert Crombach]. Examples:
618
+
619
+ [].rand # => nil
620
+ ['a'].rand # => 'a'
621
+ [1,2,3].rand # => 1 or 2 or 3
622
+
623
+ * Deprecation: removed Reloadable. [Jeremy Kemper]
624
+
625
+ * Make the utf-handler return the correct value for non-matching regular expressions. Closes #9049 [Manfred Stienstra]
626
+
627
+ * Add ljust, rjust and center to utf8-handler. Closes #9165 [Manfred Stienstra]
628
+
629
+ * Fix Time#advance bug when trying to advance a year from leap day. Closes #8655 [Geoff Buesing]
630
+
631
+ * Add support for []= on ActiveSupport::Multibyte::Chars. Closes #9142. [ewan, Manfred Stienstra]
632
+
633
+ * Added Array#extract_options! to encapsulate the pattern of getting an options hash out of a variable number of parameters. #8759 [Norbert Crombach]
634
+
635
+ * Let alias_attribute work with attributes with initial capital letters (legacy columns etc). Closes #8596 [mpalmer]
636
+
637
+ * Added Hash#except which is the inverse of Hash#slice -- return the hash except the keys that are specified [David Heinemeier Hansson]
638
+
639
+ * Added support for pluralization with a different starting letter than the singular version (cow/kine) #4929 [norri_b/Josh Susser]
640
+
641
+ * Demote Hash#to_xml to use XmlSimple#xml_in_string so it can't read files or stdin. #8453 [candlerb, Jeremy Kemper]
642
+
643
+ * Backport clean_logger changes to support ruby 1.8.2 [Mislav Marohnić]
644
+
645
+ * Added proper handling of arrays #8537 [Josh Susser]
646
+
647
+ Before:
648
+ Hash.from_xml '<images></images>'
649
+ # => {:images => nil}
650
+
651
+ Hash.from_xml '<images><image>foo.jpg</image></images>'
652
+ # => {:images => {:image => "foo.jpg"}}
653
+
654
+ Hash.from_xml '<images><image>foo.jpg</image><image>bar.jpg</image></images>'
655
+ # => {:images => {:image => ["foo.jpg", "bar.jpg"]}}
656
+
657
+ After:
658
+ Hash.from_xml '<images type="array"></images>'
659
+ # => {:images => []}
660
+
661
+ Hash.from_xml '<images type="array"><image>foo.jpg</image></images>'
662
+ # => {:images => ["foo.jpg"]}
663
+
664
+ Hash.from_xml '<images type="array"><image>foo.jpg</image><image>bar.jpg</image></images>'
665
+ # => {:images => ["foo.jpg", "bar.jpg"]}
666
+
667
+ * Improve Time and Date test coverage. #8646 [Josh Peek]
668
+
669
+ * Add Date#since, ago, beginning_of_day, and end_of_day. Date + seconds works now. #8575 [Geoff Buesing]
670
+
671
+ * String#to_time overflows to DateTime. Add String#to_datetime. #8572 [Geoff Buesing]
672
+
673
+ * Date.yesterday and .tomorrow. #8571 [Geoff Buesing]
674
+
675
+ * Readable Date and DateTime#inspect. #8570 [Geoff Buesing]
676
+
677
+ * Move common DateTime calculations to Date. #8536 [Geoff Buesing]
678
+
679
+ * Added Date#change (like Time#change) [David Heinemeier Hansson]
680
+
681
+ * DateTime#to_time converts to Time unless out of range. #8512 [Geoff Buesing]
682
+
683
+ * Date#to_datetime, #to_s(:rfc822). #8512 [Geoff Buesing]
684
+
685
+ * Time durations use since instead of + for accuracy. #8513 [Geoff Buesing]
686
+
687
+ * escape <'s and >'s in JSON strings. #8371 [Rick Olson]
688
+
689
+ * Inflections: MatrixTest -> MatrixTests instead of MatricesTest. #8496 [jbwiv]
690
+
691
+ * Multibyte strings respond_to the String methods they proxy so they can be duck-typed. #6549 [Tuxie]
692
+
693
+ * Array#to_xml yields the builder just like Hash and ActiveRecord::Base. #8472 [seth]
694
+
695
+ * Date, Time, and DateTime support formatting blocks in addition to strftime strings. Introduce :long_ordinal format, e.g. "February 21st, 2005". #8191 [Coda Hale]
696
+
697
+ * Document Object#blank?. #6491 [Chris Mear]
698
+
699
+ * Date, Time, and DateTime#to_json. #8399 [wycats]
700
+
701
+ * Simplify API of assert_difference by passing in an expression that is evaluated before and after the passed in block. See documenation for examples of new API. [Marcel Molina Jr.]
702
+
703
+ * Added assert_difference and assert_no_difference to test/unit assertions [Tobias Lütke]
704
+
705
+ * Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug by Kent Sibilev since the breakpointer has been broken since Ruby 1.8.4 and will not be coming back [David Heinemeier Hansson]
706
+
707
+ * Added parsing of file type in Hash.xml_in so you can easily do file uploads with base64 from an API [David Heinemeier Hansson]
708
+
709
+ <person>
710
+ <name>David</name>
711
+ <avatar type="file" name="me.jpg" content_type="image/jpg">R0lGODlhkACZAPUAAM5lcfjrtMQCG=\n</avatar>
712
+ </person>
713
+
714
+ ...becomes:
715
+
716
+ attributes = { :person => { :name => "David", :avatar => #<StringIO> } }
717
+ attributes[:person][:avatar].content_type # => "image/jpg"
718
+ attributes[:person][:avatar].original_filename # => "me.jpg"
719
+ attributes[:person][:avatar].read # => binary data of the file
720
+
721
+ Which is duck-type compatible with the files that you get when doing multipart uploads through HTML.
722
+
723
+ * Improved multibyte performance by relying less on exception raising #8159 [Blaine]
724
+
725
+ * Use XSD-compatible type names for Hash#to_xml and make the converters extendable #8047 [Tim Pope]
726
+
727
+ * Added yielding of builder in Hash#to_xml [David Heinemeier Hansson]
728
+
729
+ * Hash#with_indifferent_access now also converts hashes kept in arrays to indifferent access (makes it easier to treat HTML and XML parameters the same) [David Heinemeier Hansson]
730
+
731
+ * Hash#to_xml supports YAML attributes. #7502 [jonathan]
732
+
733
+ * Refactor ActiveSupport::JSON to be less obtuse. Add support for JSON decoding by way of Syck with ActiveSupport::JSON.decode(json_string). Prevent hash keys that are JavaScript reserved words from being unquoted during encoding. [Sam Stephenson]
734
+
735
+ * alias_method_chain preserves the original method's visibility. #7854 [Jonathan Viney]
736
+
737
+ * Update Dependencies to ignore constants inherited from ancestors. Closes #6951. [Nicholas Seckar]
738
+
739
+ * Array#to_query preserves its ordering. #7756 [Greg Spurrier]
740
+
741
+ * Out-of-range Time calculations transparently overflow to DateTime. Introduce Time#to_datetime. #7706, #7715 [Geoff Buesing]
742
+
743
+ * DateTime calculations analogous to the Date and Time extensions. #7693 [Geoff Buesing]
744
+
745
+ * Give DateTime correct .to_s implementations, lets it play nice with ActiveRecord quoting. #7649 [Geoff Buesing]
746
+
747
+ * Add File.atomic_write, allows you to write large files in an atomic manner, preventing users from seeing half written files. [Michael Koziarski]
748
+
749
+ * Allow users to provide custom formatters to Logger. [Anthony Eden]
750
+
751
+ * Hash#to_query CGI-escapes its keys. [Jeremy Kemper]
752
+
753
+ * Optimize Class Inheritable Attributes so that unnecessary hashes are not created. Closes #7472 [Bruce Perens]
754
+
755
+ * :db format for Date#to_s [Jeremy Kemper]
756
+ Date.new(2007, 1, 27).to_s(:db) # => '2007-01-27'
757
+
758
+ * Added :instance_writer option to #mattr_writer/accessor, #cattr_writer/accessor, and #class_inheritable_writer to skip the creation of the instance writer. [Rick Olson]
759
+
760
+ * Added Hash#to_query to turn a hash of values into a form-encoded query string [Nicholas Seckar]
761
+
762
+ * Increase test coverage for subclasses_of. Closes #7335. [Roman2K, Nicholas Seckar]
763
+
764
+ * Remove unused code from Duration#inspect. Closes #7180. [Rich Collins]
765
+
766
+ * Added test coverage for Inflector.inflections.clear. Closes #7179. [Rich Collins]
767
+
768
+ * ActiveSupport::Multibyte::Handlers::UTF8Handler should raise when a range and an integer are passed in (just like the native implementation). Closes #7176 [Rich Collins]
769
+
770
+ * A couple extra tests for #classify. Closes #7273. [Josh Susser]
771
+
772
+ * Better docs for Object extensions [zackchandler, Jamis Buck]
773
+
774
+ * Fix that Dates couldn't be subtracted from Dates after [5940]. [Sam Stephenson]
775
+
776
+ * Add Object#acts_like? and Time#acts_like_time? and Date#acts_like_date? to facilitate duck-typing. [Jamis Buck]
777
+
778
+ * Make 1.months and friends accurate by introducing a Duration class. #6835 [eventualbuddha]
779
+
780
+
781
+ *1.4.2* (March 12th, 2007)
782
+
783
+ * Ruby 1.8.6 and 1.9 define private Time#to_date and #to_datetime; make them
784
+ public for compatibility. [Jeremy Kemper]
785
+
786
+ * Deprecation: warn on stderr if RAILS_DEFAULT_LOGGER isn't set yet. [Jeremy Kemper]
787
+
788
+
789
+ *1.4.1* (February 5th, 2007)
790
+
791
+ * Optimize Class Inheritable Attributes so that unnecessary hashes are not created. Closes #7472 [Bruce Perens]
792
+
793
+ * Added :instance_writer option to #mattr_writer/accessor, #cattr_writer/accessor, and #class_inheritable_writer to skip the creation of the instance writer. [Rick Olson]
794
+
795
+ * Full test coverage for Inflector. #7228 [Dan Kubb]
796
+
797
+
798
+ *1.4.0* (January 16th, 2007)
799
+
800
+ * Document Inflector.ordinalize and merge docs from String inflections. #7023 [smeade]
801
+
802
+ * Unbundle flexmock. [Jeremy Kemper]
803
+
804
+ * Fix Dependencies.autoloaded? to ignore anonymous modules. Closes #6561. [Nicholas Seckar]
805
+
806
+ * Update load once paths to prevent nested once constants from being detected and claimed by an external non-once load. [Nicholas Seckar]
807
+
808
+ * Deprecation: silence warnings when reporting test errors. [Jeremy Kemper]
809
+
810
+ * Hash#slice(*keys) returns a new hash with only the given keys. #slice! replaces the hash with only the given keys. Works with HashWithIndifferentAccess also. [Jeremy Kemper]
811
+
812
+ * HashWithIndifferentAccess#to_hash converts to a Hash with String keys and the same default value. [Jeremy Kemper]
813
+
814
+ * Fix remove_constant to correctly handle constant names of the form "::A::...". References #6720. [Nicholas Seckar]
815
+
816
+ * Fixed Array#to_xml when it contains a series of hashes (each piece would get its own XML declaration) #6610 [thkarcher/cyu]
817
+
818
+ * Added Time#to_s(:time) which will just return H:M, like 17:44 [David Heinemeier Hansson]
819
+
820
+ * Add Module#attr_accessor_with_default to initialize value of attribute before setting it. Closes #6538. [Stuart Halloway, Marcel Molina Jr.]
821
+
822
+ * Hash#to_xml handles keys with the same name as Kernel methods. #6613 [Jonathan del Strother]
823
+
824
+ * Added Time#end_of_day to get 23:59:59 of that day [David Heinemeier Hansson]
825
+
826
+ * Don't quote hash keys in Hash#to_json if they're valid JavaScript identifiers. Disable this with ActiveSupport::JSON.unquote_hash_key_identifiers = false if you need strict JSON compliance. [Sam Stephenson]
827
+
828
+ * Lazily load the Unicode Database in the UTF-8 Handler [Rick Olson]
829
+
830
+ * Update dependencies to delete partially loaded constants. [Nicholas Seckar]
831
+
832
+ * Fix unicode JSON regexp for Onigurama compatibility. #6494 [whitley]
833
+
834
+ * update XmlSimple to 1.0.10. Closes #6532. [Nick Sieger]
835
+
836
+ * Update dependencies to allow constants to be defined alongside their siblings. A common case for this is AR model classes with STI; user.rb might define User, Administrator and Guest for example. [Nicholas Seckar]
837
+
838
+ * next_week respects DST changes. #6483, #5617, #2353, #2509, #4551 [marclove, Rob Biedenharn, rails@roetzel.de, jsolson@damogran.org, drbrain@segment7.net]
839
+
840
+ * Expose methods added to Enumerable in the documentation, such as group_by. Closes #6170. [sergeykojin@gmail.com, Marcel Molina Jr.]
841
+
842
+ * Ensure Chars#tidy_bytes only tidies broken bytes. Closes #6397 [Manfred Stienstra]
843
+
844
+ * Add 'unloadable', a method used to mark any constant as requiring an unload after each request. [Nicholas Seckar]
845
+
846
+ * Make core_ext/string/access.rb multibyte safe. Closes #6388 [Manfred Stienstra]
847
+
848
+ * Make String#chars slicing behaviour consistent with String. Closes #6387 [Manfred Stienstra]
849
+
850
+ * Pull in latest multibyte patch. Closes #6346 [Manfred Stienstra]
851
+
852
+ * Add ActiveSupport::Multibyte. Provides String#chars which lets you deal with strings as a sequence of chars, not of bytes. Closes #6242 [Julian Tarkhanov, Manfred Stienstra, Thijs van der Vossen & Jan Behrens]
853
+
854
+ * Fix issue with #class_inheritable_accessor saving updates to the parent class when initialized with an Array or Hash [mojombo]
855
+
856
+ * Hash#to_xml supports Bignum and BigDecimal. #6313 [edibiase]
857
+
858
+ * Don't undefine #class in OptionMerger [Rick Olson]
859
+
860
+ * Hash.create_from_xml has been renamed to Hash.from_xml, alias will exist until Rails 2.0 [David Heinemeier Hansson]
861
+
862
+ * alias_method_chain works with accessor= methods also. #6153 [Caio Chassot]
863
+
864
+ * Fix loadable_constants_for_path to handle load paths that do not end with a slash. [Nicholas Seckar]
865
+
866
+ * Fix logic error in determining what was loaded by a given file. Closes #6039. [Nicholas Seckar]
867
+
868
+ * Equate Kernel.const_missing with Object.const_missing. Fixes #5988. [Nicholas Seckar]
869
+
870
+ * Add ApplicationController special case to Dependencies. [Nicholas Seckar]
871
+
872
+ * Don't pad remaining places with in_groups_of if specified padding value is false. [Marcel Molina Jr.]
873
+
874
+ * Fix cases where empty xml nodes weren't being translated to nil in Hash.create_from_xml [Rick Olso n]
875
+
876
+ <written-on type="date"></written-on> # => { :type => 'date' } # WRONG
877
+ <written-on type="date"></written-on> # => nil # RIGHT
878
+
879
+ * Tighten rescue clauses. #5985 [james@grayproductions.net]
880
+
881
+ * Inflections: don't singularize -ies plurals. [foamdino@gmail.com, Mark Van Holstyn]
882
+
883
+ * Update Initializer to use load_once_paths to avoid plugin reloading. References #5852. [Nicholas Seckar]
884
+
885
+ * Use Array#assoc in ActiveSupport::OrderedHash. [Mauricio Fernandez]
886
+
887
+ * Greatly increased performance of String.to_json, which speeds up RJS considerably on large pages, fixes #3473 [Shugo Maeda]
888
+
889
+ * Detect missing_constants calls from removed modules and fail accordingly. [Nicholas Seckar]
890
+
891
+ * Stop using defined? in Dependencies.qualified_const_defined? since defined? may invoke const_missing. [Nicholas Seckar]
892
+
893
+ * Dependencies can autoload directories of nested classes. [Jeremy Kemper]
894
+ Example:
895
+ invoice.rb class Invoice
896
+ invoice/lineitem.rb class Invoice::Lineitem
897
+
898
+ * Add Deprecation.silence so that Reloadable does not scold itself. [Nicholas Seckar]
899
+
900
+ * Add debugging logging to Dependencies. Currently can be enabled with Dependencies.log_activity = true; adding to Initializer and documenting is forthcoming. [Nicholas Seckar]
901
+
902
+ * Replace Reloadable with improvements to the Dependencies mechanism. [Nicholas Seckar]
903
+
904
+ * DateTime#to_time gives hour/minute/second resolution. #5747 [jon.evans@pobox.com]
905
+
906
+ * attr_internal to support namespacing and deprecation. Like attr_* except backed by internally-named instance variable. Set attr_internal_naming_format to change the format from the default '@_%s'. [Jeremy Kemper]
907
+ # def foo() @foo__rofl end
908
+ # def foo=(v) @foo__rofl = v end
909
+ self.attr_internal_naming_format = '@%s__rofl'
910
+ attr_internal :foo
911
+
912
+ * Raise fully qualified names upon name errors. #5533 [Lars Pind, Nicholas Seckar]
913
+
914
+ * Add extention to obtain the missing constant from NameError instances. [Nicholas Seckar]
915
+
916
+ * Thoroughly document inflections. #5700 [petermichaux@gmail.com]
917
+
918
+ * Added Module#alias_attribute [Jamis/David Heinemeier Hansson]. Example:
919
+
920
+ class Content < ActiveRecord::Base
921
+ # has a title attribute
922
+ end
923
+
924
+ class Email < ActiveRecord::Base
925
+ alias_attribute :subject, :title
926
+ end
927
+
928
+ e = Email.find(1)
929
+ e.title # => "Superstars"
930
+ e.subject # => "Superstars"
931
+ e.subject? # => true
932
+ e.subject = "Megastars"
933
+ e.title # => "Megastars"
934
+
935
+ * Deprecation: easier to work with warning behavior as procs; default behaviors for each environment so users needn't update env.rb; and testing pleasure with assert_deprecated, assert_not_deprecated. [Jeremy Kemper]
936
+ By default, test prints to $stderr, dev logs, production ignores.
937
+ Provide your own per-environment in e.g. config/environments/development.rb:
938
+ ActiveSupport::Deprecation.behavior = Proc.new { |message| raise message }
939
+
940
+ * First cut of the Rails Deprecation system. [Michael Koziarski]
941
+
942
+ * Strip boolean XML content before checking for 'true' [Rick Olson]
943
+
944
+ * Customize default BigDecimal formatting. References #5672 [Dave Thomas]
945
+
946
+ * Correctly convert <foo nil="true"> to nil when using Hash.create_from_xml. [Rick Olson]
947
+
948
+ * Optional identity for Enumerable#sum defaults to zero. #5657 [gensym@mac.com]
949
+
950
+ * HashWithIndifferentAccess shouldn't confuse false and nil. #5601 [Shugo Maeda]
951
+
952
+ * Fixed HashWithIndifferentAccess#default #5586 [chris@seagul.co.uk]
953
+
954
+ * More compatible Hash.create_from_xml. #5523 [nunemaker@gmail.com]
955
+
956
+ * Added Enumerable#sum for calculating a sum from the elements [David Heinemeier Hansson, jonathan@daikini.com]. Examples:
957
+
958
+ [1, 2, 3].sum
959
+ payments.sum { |p| p.price * p.tax_rate }
960
+ payments.sum(&:price)
961
+
962
+ This is instead of payments.inject(0) { |sum, p| sum + p.price }
963
+
964
+ * Correct and clarify Array#to_sentence docs. #5458 [brad@madriska.com]
965
+
966
+ * alias_method_chain preserves method punctuation so foo, foo?, and foo! may be chained with the same feature. [Jeremy Kemper]
967
+ Example:
968
+ alias_method_chain :save!, :validation
969
+ is equivalent to
970
+ alias_method :save_without_validation!, :save!
971
+ alias_method :save!, :save_with_validation!
972
+
973
+ * Enhance Symbol#to_proc so it works with list objects, such as multi-dimensional arrays. Closes #5295 [nov@yo.rim.or.jp]. Example:
974
+
975
+ {1 => "one", 2 => "two", 3 => "three"}.sort_by(&:first).map(&:last)
976
+ # => ["one", "two", "three"]
977
+
978
+ * Added Hash.create_from_xml(string) which will create a hash from a XML string and even typecast if possible [David Heinemeier Hansson]. Example:
979
+
980
+ Hash.create_from_xml <<-EOT
981
+ <note>
982
+ <title>This is a note</title>
983
+ <created-at type="date">2004-10-10</created-at>
984
+ </note>
985
+ EOT
986
+
987
+ ...would return:
988
+
989
+ { :note => { :title => "This is a note", :created_at => Date.new(2004, 10, 10) } }
990
+
991
+ * Added Jim Weirich's excellent FlexMock class to vendor (Copyright 2003, 2004 by Jim Weirich (jim@weriichhouse.org)) -- it's not automatically required, though, so require 'flexmock' is still necessary [David Heinemeier Hansson]
992
+
993
+ * Fixed that Module#alias_method_chain should work with both foo? foo! and foo at the same time #4954 [anna@wota.jp]
994
+
995
+ * to_xml fixes, features, and speedup: introduce :dasherize option that converts updated_at to updated-at if true (the existing default); binary columns get encoding="base64" attribute; nil values get nil="true" attribute to distinguish empty values; add type information for float columns; allow arbitrarily deep :include; include SQL type information as the type attribute. #4989 [Blair Zajac <blair@orcaware.com>]
996
+
997
+ * Add OrderedHash#values. [Sam Stephenson]
998
+
999
+ * Added Array#to_s(:db) that'll produce a comma-separated list of ids [David Heinemeier Hansson]. Example:
1000
+
1001
+ Purchase.find(:all, :conditions => "product_id IN (#{shops.products.to_s(:db)})"
1002
+
1003
+ * Normalize classify's argument to a String so that it plays nice with Symbols. [Marcel Molina Jr.]
1004
+
1005
+ * Strip out leading schema name in classify. References #5139. [Michael Schoen]
1006
+
1007
+ * Remove Enumerable#first_match since break(value) handles the use case well enough. [Nicholas Seckar]
1008
+
1009
+ Enumerable#first_match was like detect, but instead of returning the matching element, the yielded value returned. For example:
1010
+
1011
+ user_xml = adapters(:from => User, :to => Xml).first_match do |adapter|
1012
+ adapter.adapt @user
1013
+ end
1014
+
1015
+ But this is just as easily done with:
1016
+
1017
+ user_xml = adapters(:from => User, :to => Xml).each do
1018
+ break adapter.adapt(@user)
1019
+ end
1020
+
1021
+ * Make Array#in_groups_of just return the grouped collection if a block isn't given. [Marcel Molina Jr.]
1022
+
1023
+ * Don't destroy a HashWithIndifferentAccess if symbolize_keys! or stringify_keys! is called on it. Closes #5076. [Marcel Molina Jr., guy.naor@famundo.com]
1024
+
1025
+ * Document Module::delegate. #5002 [pergesu@gmail.com]
1026
+
1027
+ * Replace alias method chaining with Module#alias_method_chain. [Marcel Molina Jr.]
1028
+
1029
+ * Strip out punctuation on predicates or bang methods being aliased with alias_method_chain since target?_without_feature is not a valid method name. Add tests for Module#alias_method_chain. [Marcel Molina Jr.]
1030
+
1031
+ * Replace Ruby's deprecated append_features in favor of included. [Marcel Molina Jr.]
1032
+
1033
+ * Allow default options in with_options to be overridden. Closes #4480. [murphy@cYcnus.de]
1034
+
1035
+ * Added Module#alias_method_chain [Jamis Buck]
1036
+
1037
+ * Updated to Builder 2.0 [David Heinemeier Hansson]
1038
+
1039
+ * Add Array#split for dividing arrays into one or more subarrays by value or block. [Sam Stephenson]
1040
+
1041
+ *1.3.1* (April 6th, 2006)
1042
+
1043
+ * Clean paths inside of exception messages and traces. [Nicholas Seckar]
1044
+
1045
+ * Add Pathname.clean_within for cleaning all the paths inside of a string. [Nicholas Seckar]
1046
+
1047
+ * provide an empty Dependencies::LoadingModule.load which prints deprecation warnings. Lets 1.0 applications function with .13-style environment.rb.
1048
+
1049
+
1050
+ *1.3.0* (March 27th, 2006)
1051
+
1052
+ * When possible, avoid incorrectly obtaining constants from parent modules. Fixes #4221. [Nicholas Seckar]
1053
+
1054
+ * Add more tests for dependencies; refactor existing cases. [Nicholas Seckar]
1055
+
1056
+ * Move Module#parent and Module#as_load_path into core_ext. Add Module#parent. [Nicholas Seckar]
1057
+
1058
+ * Add CachingTools::HashCaching to simplify the creation of nested, autofilling hashes. [Nicholas Seckar]
1059
+
1060
+ * Remove a hack intended to avoid unloading the same class twice, but which would not work anyways. [Nicholas Seckar]
1061
+
1062
+ * Update Object.subclasses_of to locate nested classes. This affects Object.remove_subclasses_of in that nested classes will now be unloaded. [Nicholas Seckar]
1063
+
1064
+ * Update Object.remove_subclasses_of to use Class.remove_class, reducing duplication. [Nicholas Seckar]
1065
+
1066
+ * Added Fixnum#seconds for consistency, so you can say 5.minutes + 30.seconds instead of 5.minutes + 30 #4389 [François Beausoleil]
1067
+
1068
+ * Added option to String#camelize to generate lower-cased camel case by passing in :lower, like "super_man".camelize(:lower) # => "superMan" [David Heinemeier Hansson]
1069
+
1070
+ * Added Hash#diff to show the difference between two hashes [Chris McGrath]
1071
+
1072
+ * Added Time#advance to do precise time time calculations for cases where a month being approximated to 30 days won't do #1860 [Rick Olson]
1073
+
1074
+ * Enhance Inflector.underscore to convert '-' into '_' (as the inverse of Inflector.dasherize) [Jamis Buck]
1075
+
1076
+ * Switched to_xml to use the xml schema format for datetimes. This allows the encoding of time zones and should improve operability. [Michael Koziarski]
1077
+
1078
+ * Added a note to the documentation for the Date related Numeric extensions to indicate that they're
1079
+ approximations and shouldn't be used for critical calculations. [Michael Koziarski]
1080
+
1081
+ * Added Hash#to_xml and Array#to_xml that makes it much easier to produce XML from basic structures [David Heinemeier Hansson]. Examples:
1082
+
1083
+ { :name => "David", :street_name => "Paulina", :age => 26, :moved_on => Date.new(2005, 11, 15) }.to_xml
1084
+
1085
+ ...returns:
1086
+
1087
+ <person>
1088
+ <street-name>Paulina</street-name>
1089
+ <name>David</name>
1090
+ <age type="integer">26</age>
1091
+ <moved-on type="date">2005-11-15</moved-on>
1092
+ </person>
1093
+
1094
+ * Moved Jim Weirich's wonderful Builder from Action Pack to Active Support (it's simply too useful to be stuck in AP) [David Heinemeier Hansson]
1095
+
1096
+ * Fixed that Array#to_sentence will return "" on an empty array instead of ", and" #3842, #4031 [rubyonrails@beautifulpixel.com]
1097
+
1098
+ * Add Enumerable#group_by for grouping collections based on the result of some
1099
+ block. Useful, for example, for grouping records by date.
1100
+
1101
+ ex.
1102
+
1103
+ latest_transcripts.group_by(&:day).each do |day, transcripts|
1104
+ p "#{day} -> #{transcripts.map(&:class) * ', '}"
1105
+ end
1106
+ "2006-03-01 -> Transcript"
1107
+ "2006-02-28 -> Transcript"
1108
+ "2006-02-27 -> Transcript, Transcript"
1109
+ "2006-02-26 -> Transcript, Transcript"
1110
+
1111
+ Add Array#in_groups_of, for iterating over an array in groups of a certain
1112
+ size.
1113
+
1114
+ ex.
1115
+
1116
+ %w(1 2 3 4 5 6 7).in_groups_of(3) {|g| p g}
1117
+ ["1", "2", "3"]
1118
+ ["4", "5", "6"]
1119
+ ["7", nil, nil]
1120
+
1121
+ [Marcel Molina Jr., Sam Stephenson]
1122
+
1123
+ * Added Kernel#daemonize to turn the current process into a daemon that can be killed with a TERM signal [David Heinemeier Hansson]
1124
+
1125
+ * Add 'around' methods to Logger, to make it easy to log before and after messages for a given block as requested in #3809. [Michael Koziarski] Example:
1126
+
1127
+ logger.around_info("Start rendering component (#{options.inspect}): ",
1128
+ "\n\nEnd of component rendering") { yield }
1129
+
1130
+ * Added Time#beginning_of_quarter #3607 [cohen.jeff@gmail.com]
1131
+
1132
+ * Fix Object.subclasses_of to only return currently defined objects [Jonathan Viney <jonathan@bluewire.net.nz>]
1133
+
1134
+ * Fix constantize to properly handle names beginning with '::'. [Nicholas Seckar]
1135
+
1136
+ * Make String#last return the string instead of nil when it is shorter than the limit [Scott Barron].
1137
+
1138
+ * Added delegation support to Module that allows multiple delegations at once (unlike Forwardable in the stdlib) [David Heinemeier Hansson]. Example:
1139
+
1140
+ class Account < ActiveRecord::Base
1141
+ has_one :subscription
1142
+ delegate :free?, :paying?, :to => :subscription
1143
+ delegate :overdue?, :to => "subscription.last_payment"
1144
+ end
1145
+
1146
+ account.free? # => account.subscription.free?
1147
+ account.overdue? # => account.subscription.last_payment.overdue?
1148
+
1149
+ * Fix Reloadable to handle the case where a class that has been 'removed' has not yet been garbage collected. [Nicholas Seckar]
1150
+
1151
+ * Don't allow Reloadable to be included into Modules.
1152
+
1153
+ * Remove LoadingModule. [Nicholas Seckar]
1154
+
1155
+ * Add documentation for Reloadable::Subclasses. [Nicholas Seckar]
1156
+
1157
+ * Add Reloadable::Subclasses which handles the common case where a base class should not be reloaded, but its subclasses should be. [Nicholas Seckar]
1158
+
1159
+ * Further improvements to reloading code [Nicholas Seckar, Trevor Squires]
1160
+
1161
+ - All classes/modules which include Reloadable can define reloadable? for fine grained control of reloading
1162
+ - Class.remove_class uses Module#parent to access the parent module
1163
+ - Class.remove_class expanded to handle multiple classes in a single call
1164
+ - LoadingModule.clear! has been removed as it is no longer required
1165
+ - Module#remove_classes_including has been removed in favor of Reloadable.reloadable_classes
1166
+
1167
+ * Added reusable reloading support through the inclusion of the Relodable module that all subclasses of ActiveRecord::Base, ActiveRecord::Observer, ActiveController::Base, and ActionMailer::Base automatically gets. This means that these classes will be reloaded by the dispatcher when Dependencies.mechanism = :load. You can make your own models reloadable easily:
1168
+
1169
+ class Setting
1170
+ include Reloadable
1171
+ end
1172
+
1173
+ Reloading a class is done by removing its constant which will cause it to be loaded again on the next reference. [David Heinemeier Hansson]
1174
+
1175
+ * Added auto-loading support for classes in modules, so Conductor::Migration will look for conductor/migration.rb and Conductor::Database::Settings will look for conductor/database/settings.rb [Nicholas Seckar]
1176
+
1177
+ * Add Object#instance_exec, like instance_eval but passes its arguments to the block. (Active Support will not override the Ruby 1.9 implementation of this method.) [Sam Stephenson]
1178
+
1179
+ * Add Proc#bind(object) for changing a proc or block's self by returning a Method bound to the given object. Based on why the lucky stiff's "cloaker" method. [Sam Stephenson]
1180
+
1181
+ * Fix merge and dup for hashes with indifferent access #3404 [Ken Miller]
1182
+
1183
+ * Fix the requires in option_merger_test to unbreak AS tests. [Sam Stephenson]
1184
+
1185
+ * Make HashWithIndifferentAccess#update behave like Hash#update by returning the hash. #3419, #3425 [asnem@student.ethz.ch, JanPrill@blauton.de, Marcel Molina Jr.]
1186
+
1187
+ * Add ActiveSupport::JSON and Object#to_json for converting Ruby objects to JSON strings. [Sam Stephenson]
1188
+
1189
+ * Add Object#with_options for DRYing up multiple calls to methods having shared options. [Sam Stephenson] Example:
1190
+
1191
+ ActionController::Routing::Routes.draw do |map|
1192
+ # Account routes
1193
+ map.with_options(:controller => 'account') do |account|
1194
+ account.home '', :action => 'dashboard'
1195
+ account.signup 'signup', :action => 'new'
1196
+ account.logout 'logout', :action => 'logout'
1197
+ end
1198
+ end
1199
+
1200
+ * Introduce Dependencies.warnings_on_first_load setting. If true, enables warnings on first load of a require_dependency. Otherwise, loads without warnings. Disabled (set to false) by default. [Jeremy Kemper]
1201
+
1202
+ * Active Support is warnings-safe. #1792 [Eric Hodel]
1203
+
1204
+ * Introduce enable_warnings counterpart to silence_warnings. Turn warnings on when loading a file for the first time if Dependencies.mechanism == :load. Common mistakes such as redefined methods will print warnings to stderr. [Jeremy Kemper]
1205
+
1206
+ * Add Symbol#to_proc, which allows for, e.g. [:foo, :bar].map(&:to_s). [Marcel Molina Jr.]
1207
+
1208
+ * Added the following methods [Marcel Molina Jr., Sam Stephenson]:
1209
+ * Object#copy_instance_variables_from(object) to copy instance variables from one object to another
1210
+ * Object#extended_by to get an instance's included/extended modules
1211
+ * Object#extend_with_included_modules_from(object) to extend an instance with the modules from another instance
1212
+
1213
+ *1.2.5* (December 13th, 2005)
1214
+
1215
+ * Become part of Rails 1.0
1216
+
1217
+ * Rename Version constant to VERSION. #2802 [Marcel Molina Jr.]
1218
+
1219
+ *1.2.3* (November 7th, 2005)
1220
+
1221
+ * Change Inflector#constantize to use eval instead of const_get. [Nicholas Seckar]
1222
+
1223
+ * Fix const_missing handler to ignore the trailing '.rb' on files when comparing paths. [Nicholas Seckar]
1224
+
1225
+ * Define kernel.rb methods in "class Object" instead of "module Kernel" to work around a Windows peculiarity [Sam Stephenson]
1226
+
1227
+ * Fix broken tests caused by incomplete loading of active support. [Nicholas Seckar]
1228
+
1229
+ * Fix status pluralization bug so status_codes doesn't get pluralized as statuses_code. #2758 [keithm@infused.org]
1230
+
1231
+ * Added Kernel#silence_stderr to silence stderr for the duration of the given block [Sam Stephenson]
1232
+
1233
+ * Changed Kernel#` to print a message to stderr (like Unix) instead of raising Errno::ENOENT on Win32 [Sam Stephenson]
1234
+
1235
+ * Changed 0.blank? to false rather than true since it violates everyone's expectation of blankness. #2518, #2705 [rails@jeffcole.net]
1236
+
1237
+ * When loading classes using const_missing, raise a NameError if and only if the file we tried to load was not present. [Nicholas Seckar]
1238
+
1239
+ * Added petabytes and exebytes to numeric extensions #2397 [timct@mac.com]
1240
+
1241
+ * Added Time#end_of_month to accompany Time#beginning_of_month #2514 [Jens-Christian Fischer]
1242
+
1243
+
1244
+ *1.2.2* (October 26th, 2005)
1245
+
1246
+ * Set Logger.silencer = false to disable Logger#silence. Useful for debugging fixtures.
1247
+
1248
+ * Add title case method to String to do, e.g., 'action_web_service'.titlecase # => 'Action Web Service'. [Marcel Molina Jr.]
1249
+
1250
+
1251
+ *1.2.1* (October 19th, 2005)
1252
+
1253
+ * Classify generated routing code as framework code to avoid appearing in application traces. [Nicholas Seckar]
1254
+
1255
+ * Show all framework frames in the framework trace. [Nicholas Seckar]
1256
+
1257
+
1258
+ *1.2.0* (October 16th, 2005)
1259
+
1260
+ * Update Exception extension to show the first few framework frames in an application trace. [Nicholas Seckar]
1261
+
1262
+ * Added Exception extension to provide support for clean backtraces. [Nicholas Seckar]
1263
+
1264
+ * Updated whiny nil to be more concise and useful. [Nicholas Seckar]
1265
+
1266
+ * Added Enumerable#first_match [Nicholas Seckar]
1267
+
1268
+ * Fixed that Time#change should also reset usec when also resetting minutes #2459 [ikeda@dream.big.or.jp]
1269
+
1270
+ * Fix Logger compatibility for distributions that don't keep Ruby and its standard library in sync.
1271
+
1272
+ * Replace '%e' from long and short time formats as Windows does not support it. #2344. [Tom Ward <tom@popdog.net>]
1273
+
1274
+ * Added to_s(:db) to Range, so you can get "BETWEEN '2005-12-10' AND '2005-12-12'" from Date.new(2005, 12, 10)..Date.new(2005, 12, 12) (and likewise with Times)
1275
+
1276
+ * Moved require_library_or_gem into Kernel. #1992 [Michael Schuerig <michael@schuerig.de>]
1277
+
1278
+ * Add :rfc822 as an option for Time#to_s (to get rfc822-formatted times)
1279
+
1280
+ * Chain the const_missing hook to any previously existing hook so rails can play nicely with rake
1281
+
1282
+ * Clean logger is compatible with both 1.8.2 and 1.8.3 Logger. #2263 [Michael Schuerig <michael@schuerig.de>]
1283
+
1284
+ * Added native, faster implementations of .blank? for the core types #2286 [skae]
1285
+
1286
+ * Fixed clean logger to work with Ruby 1.8.3 Logger class #2245
1287
+
1288
+ * Fixed memory leak with Active Record classes when Dependencies.mechanism = :load #1704 [Chris McGrath]
1289
+
1290
+ * Fixed Inflector.underscore for use with acronyms, so HTML becomes html instead of htm_l #2173 [k@v2studio.com]
1291
+
1292
+ * Fixed dependencies related infinite recursion bug when a controller file does not contain a controller class. Closes #1760. [rcolli2@tampabay.rr.com]
1293
+
1294
+ * Fixed inflections for status, quiz, move #2056 [deirdre@deirdre.net]
1295
+
1296
+ * Added Hash#reverse_merge, Hash#reverse_merge!, and Hash#reverse_update to ease the use of default options
1297
+
1298
+ * Added Array#to_sentence that'll turn ['one', 'two', 'three'] into "one, two, and three" #2157 [Manfred Stienstra]
1299
+
1300
+ * Added Kernel#silence_warnings to turn off warnings temporarily for the passed block
1301
+
1302
+ * Added String#starts_with? and String#ends_with? #2118 [Thijs van der Vossen]
1303
+
1304
+ * Added easy extendability to the inflector through Inflector.inflections (using the Inflector::Inflections singleton class). Examples:
1305
+
1306
+ Inflector.inflections do |inflect|
1307
+ inflect.plural /^(ox)$/i, '\1\2en'
1308
+ inflect.singular /^(ox)en/i, '\1'
1309
+
1310
+ inflect.irregular 'octopus', 'octopi'
1311
+
1312
+ inflect.uncountable "equipment"
1313
+ end
1314
+
1315
+ * Added String#at, String#from, String#to, String#first, String#last in ActiveSupport::CoreExtensions::String::Access to ease access to individual characters and substrings in a string serving basically as human names for range access.
1316
+
1317
+ * Make Time#last_month work when invoked on the 31st of a month.
1318
+
1319
+ * Add Time.days_in_month, and make Time#next_month work when invoked on the 31st of a month
1320
+
1321
+ * Fixed that Time#midnight would have a non-zero usec on some platforms #1836
1322
+
1323
+ * Fixed inflections of "index/indices" #1766 [damn_pepe@gmail.com]
1324
+
1325
+ * Added stripping of _id to String#humanize, so "employee_id" becomes "Employee" #1574 [Justin French]
1326
+
1327
+ * Factor Fixnum and Bignum extensions into Integer extensions [Nicholas Seckar]
1328
+
1329
+ * Hooked #ordinalize into Fixnum and Bignum classes. [Nicholas Seckar, danp]
1330
+
1331
+ * Added Fixnum#ordinalize to turn 1.ordinalize to "1st", 3.ordinalize to "3rd", and 10.ordinalize to "10th" and so on #1724 [paul@cnt.org]
1332
+
1333
+
1334
+ *1.1.1* (11 July, 2005)
1335
+
1336
+ * Added more efficient implementation of the development mode reset of classes #1638 [Chris McGrath]
1337
+
1338
+
1339
+ *1.1.0* (6 July, 2005)
1340
+
1341
+ * Fixed conflict with Glue gem #1606 [Rick Olson]
1342
+
1343
+ * Added new rules to the Inflector to deal with more unusual plurals mouse/louse => mice/lice, information => information, ox => oxen, virus => viri, archive => archives #1571, #1583, #1490, #1599, #1608 [foamdino@gmail.com/others]
1344
+
1345
+ * Fixed memory leak with Object#remove_subclasses_of, which inflicted a Rails application running in development mode with a ~20KB leak per request #1289 [Chris McGrath]
1346
+
1347
+ * Made 1.year == 365.25.days to account for leap years. This allows you to do User.find(:all, :conditions => ['birthday > ?', 50.years.ago]) without losing a lot of days. #1488 [tuxie@dekadance.se]
1348
+
1349
+ * Added an exception if calling id on nil to WhinyNil #584 [kevin-temp@writesoon.com]
1350
+
1351
+ * Added Fix/Bignum#multiple_of? which returns true on 14.multiple_of?(7) and false on 16.multiple_of?(7) #1464 [Thomas Fuchs]
1352
+
1353
+ * Added even? and odd? to work with Bignums in addition to Fixnums #1464 [Thomas Fuchs]
1354
+
1355
+ * Fixed Time#at_beginning_of_week returned the next Monday instead of the previous one when called on a Sunday #1403 [jean.helou@gmail.com]
1356
+
1357
+ * Increased the speed of indifferent hash access by using Hash#default. #1436 [Nicholas Seckar]
1358
+
1359
+ * Added that " " is now also blank? (using strip if available)
1360
+
1361
+ * Fixed Dependencies so all modules are able to load missing constants #1173 [Nicholas Seckar]
1362
+
1363
+ * Fixed the Inflector to underscore strings containing numbers, so Area51Controller becomes area51_controller #1176 [Nicholas Seckar]
1364
+
1365
+ * Fixed that HashWithIndifferentAccess stringified all keys including symbols, ints, objects, and arrays #1162 [Nicholas Seckar]
1366
+
1367
+ * Fixed Time#last_year to go back in time, not forward #1278 [fabien@odilat.com]
1368
+
1369
+ * Fixed the pluralization of analysis to analyses #1295 [seattle@rootimage.msu.edu]
1370
+
1371
+ * Fixed that Time.local(2005,12).months_since(1) would raise "ArgumentError: argument out of range" #1311 [jhahn@niveon.com]
1372
+
1373
+ * Added silencing to the default Logger class
1374
+
1375
+
1376
+ *1.0.4* (19th April, 2005)
1377
+
1378
+ * Fixed that in some circumstances controllers outside of modules may have hidden ones inside modules. For example, admin/content might have been hidden by /content. #1075 [Nicholas Seckar]
1379
+
1380
+ * Fixed inflection of perspectives and similar words #1045 [Thijs van der Vossen]
1381
+
1382
+ * Added Fixnum#even? and Fixnum#odd?
1383
+
1384
+ * Fixed problem with classes being required twice. Object#const_missing now uses require_dependency to load files. It used to use require_or_load which would cause models to be loaded twice, which was not good for validations and other class methods #971 [Nicholas Seckar]
1385
+
1386
+
1387
+ *1.0.3* (27th March, 2005)
1388
+
1389
+ * Fixed Inflector.pluralize to handle capitalized words #932 [Jeremy Kemper]
1390
+
1391
+ * Added Object#suppress which allows you to make a saner choice around with exceptions to swallow #980. Example:
1392
+
1393
+ suppress(ZeroDivisionError) { 1/0 }
1394
+
1395
+ ...instead of:
1396
+
1397
+ 1/0 rescue nil # BAD, EVIL, DIRTY.
1398
+
1399
+
1400
+ *1.0.2* (22th March, 2005)
1401
+
1402
+ * Added Kernel#returning -- a Ruby-ized realization of the K combinator, courtesy of Mikael Brockman.
1403
+
1404
+ def foo
1405
+ returning values = [] do
1406
+ values << 'bar'
1407
+ values << 'baz'
1408
+ end
1409
+ end
1410
+
1411
+ foo # => ['bar', 'baz']
1412
+
1413
+
1414
+ *1.0.1* (7th March, 2005)
1415
+
1416
+ * Fixed Hash#indifferent_access to also deal with include? and fetch and nested hashes #726 [Nicholas Seckar]
1417
+
1418
+ * Added Object#blank? -- see http://redhanded.hobix.com/inspect/objectBlank.html #783 [_why the lucky stiff]
1419
+
1420
+ * Added inflection rules for "sh" words, like "wish" and "fish" #755 [phillip@pjbsoftware.com]
1421
+
1422
+ * Fixed an exception when using Ajax based requests from Safari because Safari appends a \000 to the post body. Symbols can't have \000 in them so indifferent access would throw an exception in the constructor. Indifferent hashes now use strings internally instead. #746 [Tobias Lütke]
1423
+
1424
+ * Added String#to_time and String#to_date for wrapping ParseDate
1425
+
1426
+
1427
+ *1.0.0* (24th February, 2005)
1428
+
1429
+ * Added TimeZone as the first of a number of value objects that among others Active Record can use rich value objects using composed_of #688 [Jamis Buck]
1430
+
1431
+ * Added Date::Conversions for getting dates in different convenient string representations and other objects
1432
+
1433
+ * Added Time::Conversions for getting times in different convenient string representations and other objects
1434
+
1435
+ * Added Time::Calculations to ask for things like Time.now.tomorrow, Time.now.yesterday, Time.now.months_ago(4) #580 [DP|Flurin]. Examples:
1436
+
1437
+ "Later today" => now.in(3.hours),
1438
+ "Tomorrow morning" => now.tomorrow.change(:hour => 9),
1439
+ "Tomorrow afternoon" => now.tomorrow.change(:hour => 14),
1440
+ "In a couple of days" => now.tomorrow.tomorrow.change(:hour => 9),
1441
+ "Next monday" => now.next_week.change(:hour => 9),
1442
+ "In a month" => now.next_month.change(:hour => 9),
1443
+ "In 6 months" => now.months_since(6).change(:hour => 9),
1444
+ "In a year" => now.in(1.year).change(:hour => 9)
1445
+
1446
+ * Upgraded to breakpoint 92 which fixes:
1447
+
1448
+ * overload IRB.parse_opts(), fixes #443
1449
+ => breakpoints in tests work even when running them via rake
1450
+ * untaint handlers, might fix an issue discussed on the Rails ML
1451
+ * added verbose mode to breakpoint_client
1452
+ * less noise caused by breakpoint_client by default
1453
+ * ignored TerminateLineInput exception in signal handler
1454
+ => quiet exit on Ctrl-C
1455
+
1456
+ * Fixed Inflector for words like "news" and "series" that are the same in plural and singular #603 [echion], #615 [marcenuc]
1457
+
1458
+ * Added Hash#stringify_keys and Hash#stringify_keys!
1459
+
1460
+ * Added IndifferentAccess as a way to wrap a hash by a symbol-based store that also can be accessed by string keys
1461
+
1462
+ * Added Inflector.constantize to turn "Admin::User" into a reference for the constant Admin::User
1463
+
1464
+ * Added that Inflector.camelize and Inflector.underscore can deal with modules like turning "Admin::User" into "admin/user" and back
1465
+
1466
+ * Added Inflector.humanize to turn attribute names like employee_salary into "Employee salary". Used by automated error reporting in AR.
1467
+
1468
+ * Added availability of class inheritable attributes to the masses #477 [Jeremy Kemper]
1469
+
1470
+ class Foo
1471
+ class_inheritable_reader :read_me
1472
+ class_inheritable_writer :write_me
1473
+ class_inheritable_accessor :read_and_write_me
1474
+ class_inheritable_array :read_and_concat_me
1475
+ class_inheritable_hash :read_and_update_me
1476
+ end
1477
+
1478
+ # Bar gets a clone of (not a reference to) Foo's attributes.
1479
+ class Bar < Foo
1480
+ end
1481
+
1482
+ Bar.read_and_write_me == Foo.read_and_write_me
1483
+ Bar.read_and_write_me = 'bar'
1484
+ Bar.read_and_write_me != Foo.read_and_write_me
1485
+
1486
+ * Added Inflections as an extension on String, so Inflector.pluralize(Inflector.classify(name)) becomes name.classify.pluralize #476 [Jeremy Kemper]
1487
+
1488
+ * Added Byte operations to Numeric, so 5.5.megabytes + 200.kilobytes #461 [Marcel Molina Jr.]
1489
+
1490
+ * Fixed that Dependencies.reload can't load the same file twice #420 [Kent Sibilev]
1491
+
1492
+ * Added Fixnum#ago/until, Fixnum#since/from_now #450 [Jeremy Kemper]
1493
+
1494
+ * Added that Inflector now accepts Symbols and Classes by calling .to_s on the word supplied
1495
+
1496
+ * Added time unit extensions to Fixnum that'll return the period in seconds, like 2.days + 4.hours.