social_url_stats 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (831) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +17 -0
  3. data/.ruby-version +1 -0
  4. data/Gemfile +12 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +59 -0
  7. data/Rakefile +7 -0
  8. data/lib/social_url_stats.rb +8 -0
  9. data/lib/social_url_stats/counter.rb +54 -0
  10. data/lib/social_url_stats/version.rb +3 -0
  11. data/social_url_stats.gemspec +23 -0
  12. data/test/counter_test.rb +66 -0
  13. data/test/test_helper.rb +7 -0
  14. data/vendor/ruby/1.9.1/bin/cdiff +23 -0
  15. data/vendor/ruby/1.9.1/bin/colortab +23 -0
  16. data/vendor/ruby/1.9.1/bin/decolor +23 -0
  17. data/vendor/ruby/1.9.1/bin/rake +23 -0
  18. data/vendor/ruby/1.9.1/bin/term_display +23 -0
  19. data/vendor/ruby/1.9.1/bin/term_mandel +23 -0
  20. data/vendor/ruby/1.9.1/bin/watchr +23 -0
  21. data/vendor/ruby/1.9.1/build_info/active_support-3.0.0.info +1 -0
  22. data/vendor/ruby/1.9.1/build_info/activesupport-3.0.0.info +1 -0
  23. data/vendor/ruby/1.9.1/build_info/autotest-fsevent-0.2.9.info +1 -0
  24. data/vendor/ruby/1.9.1/build_info/autotest-growl-0.2.16.info +1 -0
  25. data/vendor/ruby/1.9.1/build_info/autotest-standalone-4.5.11.info +1 -0
  26. data/vendor/ruby/1.9.1/build_info/ffi-1.9.3.info +1 -0
  27. data/vendor/ruby/1.9.1/build_info/i18n-0.6.9.info +1 -0
  28. data/vendor/ruby/1.9.1/build_info/minitest-5.2.0.info +1 -0
  29. data/vendor/ruby/1.9.1/build_info/mynyml-redgreen-0.7.1.info +1 -0
  30. data/vendor/ruby/1.9.1/build_info/rake-10.1.0.info +1 -0
  31. data/vendor/ruby/1.9.1/build_info/ruby-fsevent-0.2.1.info +1 -0
  32. data/vendor/ruby/1.9.1/build_info/sys-uname-0.9.2.info +1 -0
  33. data/vendor/ruby/1.9.1/build_info/term-ansicolor-1.2.2.info +1 -0
  34. data/vendor/ruby/1.9.1/build_info/tins-0.13.1.info +1 -0
  35. data/vendor/ruby/1.9.1/build_info/vcr-2.8.0.info +1 -0
  36. data/vendor/ruby/1.9.1/build_info/watchr-0.7.info +1 -0
  37. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/CHANGELOG +1457 -0
  38. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/README.rdoc +33 -0
  39. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support.rb +79 -0
  40. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/all.rb +3 -0
  41. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/backtrace_cleaner.rb +94 -0
  42. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/base64.rb +42 -0
  43. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/basic_object.rb +21 -0
  44. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/benchmarkable.rb +60 -0
  45. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/buffered_logger.rb +136 -0
  46. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/builder.rb +6 -0
  47. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/cache.rb +638 -0
  48. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/cache/compressed_mem_cache_store.rb +13 -0
  49. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/cache/file_store.rb +189 -0
  50. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/cache/mem_cache_store.rb +190 -0
  51. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/cache/memory_store.rb +159 -0
  52. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/cache/strategy/local_cache.rb +164 -0
  53. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/cache/synchronized_memory_store.rb +11 -0
  54. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/callbacks.rb +600 -0
  55. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/concern.rb +64 -0
  56. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/configurable.rb +36 -0
  57. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext.rb +3 -0
  58. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/array.rb +7 -0
  59. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/array/access.rb +46 -0
  60. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/array/conversions.rb +164 -0
  61. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/array/extract_options.rb +29 -0
  62. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/array/grouping.rb +100 -0
  63. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/array/random_access.rb +27 -0
  64. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/array/uniq_by.rb +17 -0
  65. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/array/wrap.rb +48 -0
  66. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/benchmark.rb +7 -0
  67. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/big_decimal.rb +1 -0
  68. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/big_decimal/conversions.rb +27 -0
  69. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/cgi.rb +1 -0
  70. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +19 -0
  71. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/class.rb +5 -0
  72. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/class/attribute.rb +90 -0
  73. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/class/attribute_accessors.rb +79 -0
  74. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/class/delegating_attributes.rb +44 -0
  75. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/class/inheritable_attributes.rb +254 -0
  76. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/class/subclasses.rb +50 -0
  77. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/date/acts_like.rb +8 -0
  78. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/date/calculations.rb +241 -0
  79. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/date/conversions.rb +99 -0
  80. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/date/freeze.rb +31 -0
  81. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/date/zones.rb +14 -0
  82. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/date_time/acts_like.rb +13 -0
  83. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/date_time/calculations.rb +114 -0
  84. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/date_time/conversions.rb +103 -0
  85. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/date_time/zones.rb +21 -0
  86. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/enumerable.rb +120 -0
  87. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/exception.rb +3 -0
  88. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/file.rb +2 -0
  89. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/file/atomic.rb +41 -0
  90. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/file/path.rb +5 -0
  91. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/float.rb +1 -0
  92. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/float/rounding.rb +19 -0
  93. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/hash.rb +8 -0
  94. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/hash/conversions.rb +150 -0
  95. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/hash/deep_merge.rb +16 -0
  96. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/hash/diff.rb +13 -0
  97. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/hash/except.rb +23 -0
  98. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/hash/indifferent_access.rb +12 -0
  99. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/hash/keys.rb +45 -0
  100. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/hash/reverse_merge.rb +28 -0
  101. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/hash/slice.rb +38 -0
  102. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/integer.rb +3 -0
  103. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/integer/inflections.rb +14 -0
  104. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/integer/multiple.rb +6 -0
  105. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/integer/time.rb +39 -0
  106. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/kernel.rb +5 -0
  107. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  108. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/kernel/debugger.rb +16 -0
  109. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/kernel/reporting.rb +62 -0
  110. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/kernel/requires.rb +26 -0
  111. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/kernel/singleton_class.rb +13 -0
  112. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/load_error.rb +23 -0
  113. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/logger.rb +108 -0
  114. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/module.rb +12 -0
  115. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/module/aliasing.rb +70 -0
  116. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/module/anonymous.rb +24 -0
  117. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
  118. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/module/attr_internal.rb +32 -0
  119. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/module/attribute_accessors.rb +60 -0
  120. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/module/delegation.rb +146 -0
  121. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/module/deprecation.rb +9 -0
  122. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/module/introspection.rb +88 -0
  123. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/module/method_names.rb +14 -0
  124. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/module/reachable.rb +10 -0
  125. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/module/remove_method.rb +11 -0
  126. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/module/synchronization.rb +42 -0
  127. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/name_error.rb +18 -0
  128. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/numeric.rb +2 -0
  129. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/numeric/bytes.rb +44 -0
  130. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/numeric/time.rb +77 -0
  131. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/object.rb +13 -0
  132. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/object/acts_like.rb +10 -0
  133. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/object/blank.rb +76 -0
  134. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/object/conversions.rb +4 -0
  135. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/object/duplicable.rb +65 -0
  136. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/object/instance_variables.rb +67 -0
  137. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/object/returning.rb +43 -0
  138. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/object/to_json.rb +19 -0
  139. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/object/to_param.rb +49 -0
  140. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/object/to_query.rb +27 -0
  141. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/object/try.rb +36 -0
  142. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/object/with_options.rb +26 -0
  143. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/proc.rb +14 -0
  144. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/process.rb +1 -0
  145. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/process/daemon.rb +23 -0
  146. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/range.rb +4 -0
  147. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/range/blockless_step.rb +29 -0
  148. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/range/conversions.rb +21 -0
  149. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/range/include_range.rb +21 -0
  150. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/range/overlaps.rb +8 -0
  151. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/regexp.rb +5 -0
  152. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/rexml.rb +46 -0
  153. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/string.rb +13 -0
  154. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/string/access.rb +99 -0
  155. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/string/behavior.rb +7 -0
  156. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/string/conversions.rb +53 -0
  157. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/string/encoding.rb +11 -0
  158. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/string/exclude.rb +6 -0
  159. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/string/filters.rb +49 -0
  160. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/string/inflections.rb +164 -0
  161. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/string/interpolation.rb +2 -0
  162. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/string/multibyte.rb +72 -0
  163. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/string/output_safety.rb +109 -0
  164. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/string/starts_ends_with.rb +4 -0
  165. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/string/strip.rb +24 -0
  166. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/string/xchar.rb +18 -0
  167. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/time/acts_like.rb +8 -0
  168. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/time/calculations.rb +287 -0
  169. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/time/conversions.rb +85 -0
  170. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/time/marshal.rb +56 -0
  171. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/time/publicize_conversion_methods.rb +10 -0
  172. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/time/zones.rb +75 -0
  173. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/uri.rb +22 -0
  174. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/dependencies.rb +662 -0
  175. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/dependencies/autoload.rb +50 -0
  176. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/deprecation.rb +18 -0
  177. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/deprecation/behaviors.rb +42 -0
  178. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/deprecation/method_wrappers.rb +29 -0
  179. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/deprecation/proxy_wrappers.rb +81 -0
  180. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/deprecation/reporting.rb +61 -0
  181. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/descendants_tracker.rb +43 -0
  182. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/duration.rb +105 -0
  183. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/file_update_checker.rb +36 -0
  184. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/gzip.rb +25 -0
  185. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/hash_with_indifferent_access.rb +151 -0
  186. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/i18n.rb +9 -0
  187. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/i18n_railtie.rb +81 -0
  188. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/inflections.rb +56 -0
  189. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/inflector.rb +7 -0
  190. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/inflector/inflections.rb +211 -0
  191. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/inflector/methods.rb +151 -0
  192. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/inflector/transliterate.rb +97 -0
  193. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/json.rb +2 -0
  194. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/json/backends/jsongem.rb +43 -0
  195. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/json/backends/yajl.rb +40 -0
  196. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/json/backends/yaml.rb +90 -0
  197. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/json/decoding.rb +51 -0
  198. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/json/encoding.rb +241 -0
  199. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/json/variable.rb +9 -0
  200. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/lazy_load_hooks.rb +46 -0
  201. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/locale/en.yml +36 -0
  202. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/log_subscriber.rb +122 -0
  203. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/log_subscriber/test_helper.rb +99 -0
  204. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/memoizable.rb +103 -0
  205. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/message_encryptor.rb +71 -0
  206. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/message_verifier.rb +62 -0
  207. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/multibyte.rb +44 -0
  208. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/multibyte/chars.rb +476 -0
  209. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/multibyte/exceptions.rb +8 -0
  210. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/multibyte/unicode.rb +392 -0
  211. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/multibyte/utils.rb +60 -0
  212. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/notifications.rb +78 -0
  213. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/notifications/fanout.rb +61 -0
  214. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/notifications/instrumenter.rb +54 -0
  215. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/option_merger.rb +25 -0
  216. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/ordered_hash.rb +179 -0
  217. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/ordered_options.rb +27 -0
  218. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/railtie.rb +60 -0
  219. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/rescuable.rb +114 -0
  220. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/ruby/shim.rb +22 -0
  221. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/secure_random.rb +199 -0
  222. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/string_inquirer.rb +21 -0
  223. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/test_case.rb +42 -0
  224. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/testing/assertions.rb +84 -0
  225. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/testing/declarative.rb +40 -0
  226. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/testing/default.rb +9 -0
  227. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/testing/deprecation.rb +55 -0
  228. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/testing/isolation.rb +157 -0
  229. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/testing/pending.rb +48 -0
  230. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/testing/performance.rb +425 -0
  231. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/testing/setup_and_teardown.rb +111 -0
  232. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/time.rb +35 -0
  233. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/time/autoload.rb +5 -0
  234. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/time_with_zone.rb +342 -0
  235. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/values/time_zone.rb +379 -0
  236. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/values/unicode_tables.dat +0 -0
  237. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/version.rb +9 -0
  238. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/whiny_nil.rb +60 -0
  239. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/xml_mini.rb +162 -0
  240. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/xml_mini/jdom.rb +168 -0
  241. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/xml_mini/libxml.rb +79 -0
  242. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/xml_mini/libxmlsax.rb +85 -0
  243. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/xml_mini/nokogiri.rb +83 -0
  244. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/xml_mini/nokogirisax.rb +88 -0
  245. data/vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/xml_mini/rexml.rb +129 -0
  246. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/.autotest +34 -0
  247. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/.gemtest +0 -0
  248. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/History.txt +967 -0
  249. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/Manifest.txt +26 -0
  250. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/README.txt +514 -0
  251. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/Rakefile +67 -0
  252. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/design_rationale.rb +52 -0
  253. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/lib/hoe/minitest.rb +26 -0
  254. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/lib/minitest.rb +766 -0
  255. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/lib/minitest/assertions.rb +661 -0
  256. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/lib/minitest/autorun.rb +12 -0
  257. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/lib/minitest/benchmark.rb +423 -0
  258. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/lib/minitest/expectations.rb +281 -0
  259. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/lib/minitest/hell.rb +11 -0
  260. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/lib/minitest/mock.rb +220 -0
  261. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/lib/minitest/parallel.rb +40 -0
  262. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/lib/minitest/pride.rb +4 -0
  263. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/lib/minitest/pride_plugin.rb +143 -0
  264. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/lib/minitest/spec.rb +277 -0
  265. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/lib/minitest/test.rb +283 -0
  266. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/lib/minitest/unit.rb +45 -0
  267. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/test/minitest/metametameta.rb +80 -0
  268. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/test/minitest/test_minitest_benchmark.rb +130 -0
  269. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/test/minitest/test_minitest_mock.rb +489 -0
  270. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/test/minitest/test_minitest_reporter.rb +313 -0
  271. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/test/minitest/test_minitest_spec.rb +799 -0
  272. data/vendor/ruby/1.9.1/gems/minitest-5.2.0/test/minitest/test_minitest_unit.rb +1865 -0
  273. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/.gitignore +2 -0
  274. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/LICENSE +19 -0
  275. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/Manifest +25 -0
  276. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/README +32 -0
  277. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/Rakefile +48 -0
  278. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/lib/redgreen.rb +17 -0
  279. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/lib/redgreen/minitest.rb +20 -0
  280. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/lib/redgreen/nanotest.rb +9 -0
  281. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/lib/redgreen/testunit.rb +21 -0
  282. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/mynyml-redgreen.gemspec +22 -0
  283. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/specs.watchr +25 -0
  284. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/test/README +11 -0
  285. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/test/contest/test_failure.rb +8 -0
  286. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/test/contest/test_success.rb +8 -0
  287. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/test/context/test_failure.rb +8 -0
  288. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/test/context/test_success.rb +8 -0
  289. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/test/minitest/test_failure.rb +8 -0
  290. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/test/minitest/test_success.rb +8 -0
  291. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/test/nanotest/test_failure.rb +5 -0
  292. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/test/nanotest/test_success.rb +5 -0
  293. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/test/shoulda/test_failure.rb +8 -0
  294. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/test/shoulda/test_success.rb +8 -0
  295. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/test/tests.rake +35 -0
  296. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/test/testunit/test_failure.rb +8 -0
  297. data/vendor/ruby/1.9.1/gems/mynyml-redgreen-0.7.1/test/testunit/test_success.rb +8 -0
  298. data/vendor/ruby/1.9.1/gems/rake-10.1.0/.gemtest +0 -0
  299. data/vendor/ruby/1.9.1/gems/rake-10.1.0/CHANGES +530 -0
  300. data/vendor/ruby/1.9.1/gems/rake-10.1.0/MIT-LICENSE +21 -0
  301. data/vendor/ruby/1.9.1/gems/rake-10.1.0/README.rdoc +187 -0
  302. data/vendor/ruby/1.9.1/gems/rake-10.1.0/Rakefile +375 -0
  303. data/vendor/ruby/1.9.1/gems/rake-10.1.0/TODO +21 -0
  304. data/vendor/ruby/1.9.1/gems/rake-10.1.0/bin/rake +33 -0
  305. data/vendor/ruby/1.9.1/gems/rake-10.1.0/install.rb +80 -0
  306. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake.rb +73 -0
  307. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/alt_system.rb +108 -0
  308. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/application.rb +728 -0
  309. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/backtrace.rb +20 -0
  310. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/clean.rb +55 -0
  311. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/cloneable.rb +16 -0
  312. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/compositepublisher.rb +21 -0
  313. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/ftptools.rb +139 -0
  314. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/publisher.rb +73 -0
  315. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/rubyforgepublisher.rb +16 -0
  316. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/sshpublisher.rb +50 -0
  317. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/sys.rb +2 -0
  318. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/default_loader.rb +10 -0
  319. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/dsl_definition.rb +157 -0
  320. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/early_time.rb +18 -0
  321. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/ext/core.rb +28 -0
  322. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/ext/module.rb +0 -0
  323. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/ext/string.rb +166 -0
  324. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/ext/time.rb +15 -0
  325. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/file_creation_task.rb +24 -0
  326. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/file_list.rb +416 -0
  327. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/file_task.rb +46 -0
  328. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/file_utils.rb +116 -0
  329. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/file_utils_ext.rb +144 -0
  330. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/gempackagetask.rb +2 -0
  331. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/invocation_chain.rb +57 -0
  332. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/invocation_exception_mixin.rb +16 -0
  333. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/linked_list.rb +103 -0
  334. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/loaders/makefile.rb +40 -0
  335. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/multi_task.rb +13 -0
  336. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/name_space.rb +25 -0
  337. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/packagetask.rb +190 -0
  338. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/pathmap.rb +1 -0
  339. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/phony.rb +15 -0
  340. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/private_reader.rb +20 -0
  341. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/promise.rb +99 -0
  342. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/pseudo_status.rb +29 -0
  343. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/rake_module.rb +37 -0
  344. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/rake_test_loader.rb +22 -0
  345. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/rdoctask.rb +2 -0
  346. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/ruby182_test_unit_fix.rb +27 -0
  347. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/rule_recursion_overflow_error.rb +20 -0
  348. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/runtest.rb +22 -0
  349. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/scope.rb +42 -0
  350. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/task.rb +378 -0
  351. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/task_argument_error.rb +7 -0
  352. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/task_arguments.rb +89 -0
  353. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/task_manager.rb +297 -0
  354. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/tasklib.rb +22 -0
  355. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/testtask.rb +201 -0
  356. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/thread_history_display.rb +48 -0
  357. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/thread_pool.rb +161 -0
  358. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/trace_output.rb +22 -0
  359. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/version.rb +9 -0
  360. data/vendor/ruby/1.9.1/gems/rake-10.1.0/lib/rake/win32.rb +56 -0
  361. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/file_creation.rb +34 -0
  362. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/helper.rb +128 -0
  363. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/support/rakefile_definitions.rb +444 -0
  364. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/support/ruby_runner.rb +33 -0
  365. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_private_reader.rb +42 -0
  366. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake.rb +40 -0
  367. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_application.rb +517 -0
  368. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_application_options.rb +457 -0
  369. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_backtrace.rb +113 -0
  370. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_clean.rb +46 -0
  371. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_definitions.rb +79 -0
  372. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_directory_task.rb +57 -0
  373. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_dsl.rb +40 -0
  374. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_early_time.rb +31 -0
  375. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_extension.rb +59 -0
  376. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_file_creation_task.rb +56 -0
  377. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_file_list.rb +627 -0
  378. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_file_list_path_map.rb +8 -0
  379. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_file_task.rb +122 -0
  380. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_file_utils.rb +309 -0
  381. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_ftp_file.rb +74 -0
  382. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_functional.rb +466 -0
  383. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_invocation_chain.rb +64 -0
  384. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_linked_list.rb +84 -0
  385. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_makefile_loader.rb +46 -0
  386. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_multi_task.rb +58 -0
  387. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_name_space.rb +43 -0
  388. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_package_task.rb +79 -0
  389. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_path_map.rb +168 -0
  390. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_path_map_explode.rb +34 -0
  391. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_path_map_partial.rb +18 -0
  392. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_pseudo_status.rb +21 -0
  393. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_rake_test_loader.rb +20 -0
  394. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_reduce_compat.rb +26 -0
  395. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_require.rb +40 -0
  396. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_rules.rb +362 -0
  397. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_scope.rb +44 -0
  398. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task.rb +376 -0
  399. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_argument_parsing.rb +103 -0
  400. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_arguments.rb +121 -0
  401. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_lib.rb +9 -0
  402. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_manager.rb +158 -0
  403. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_manager_argument_resolution.rb +19 -0
  404. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_with_arguments.rb +171 -0
  405. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_test_task.rb +119 -0
  406. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_thread_pool.rb +142 -0
  407. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_top_level_functions.rb +71 -0
  408. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_win32.rb +72 -0
  409. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_thread_history_display.rb +101 -0
  410. data/vendor/ruby/1.9.1/gems/rake-10.1.0/test/test_trace_output.rb +52 -0
  411. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/.gitignore +5 -0
  412. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/History.md +27 -0
  413. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/LICENSE +20 -0
  414. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/README.md +54 -0
  415. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/Rakefile +57 -0
  416. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/VERSION +1 -0
  417. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/examples/print_changes.rb +19 -0
  418. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/examples/restart.rb +25 -0
  419. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/ext/extconf.rb +4 -0
  420. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/ext/fsevent.c +148 -0
  421. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/lib/fsevent.bundle +0 -0
  422. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/lib/fsevent/signal_ext.rb +48 -0
  423. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/ruby-fsevent.gemspec +65 -0
  424. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/spec/fsevent_spec.rb +41 -0
  425. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/spec/signal_ext_spec.rb +76 -0
  426. data/vendor/ruby/1.9.1/gems/ruby-fsevent-0.2.1/spec/spec_helper.rb +5 -0
  427. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/.gitignore +6 -0
  428. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/.travis.yml +11 -0
  429. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/CHANGES +60 -0
  430. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/COPYING +340 -0
  431. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/Gemfile +5 -0
  432. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/README.rdoc +55 -0
  433. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/Rakefile +34 -0
  434. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/VERSION +1 -0
  435. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/bin/cdiff +19 -0
  436. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/bin/colortab +48 -0
  437. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/bin/decolor +12 -0
  438. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/bin/term_display +91 -0
  439. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/bin/term_mandel +52 -0
  440. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/examples/ColorTest.gif +0 -0
  441. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/examples/Mona_Lisa.jpg +0 -0
  442. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/examples/Stilleben.jpg +0 -0
  443. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/examples/example.rb +90 -0
  444. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/examples/lambda-red-plain.ppm +135 -0
  445. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/examples/lambda-red.png +0 -0
  446. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/examples/lambda-red.ppm +4 -0
  447. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/examples/pacman.jpg +0 -0
  448. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/examples/smiley.png +0 -0
  449. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/examples/wool.jpg +0 -0
  450. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/lib/term/ansicolor.rb +228 -0
  451. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/lib/term/ansicolor/.keep +0 -0
  452. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/lib/term/ansicolor/attribute.rb +143 -0
  453. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/lib/term/ansicolor/ppm_reader.rb +96 -0
  454. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/lib/term/ansicolor/rgb_color_metrics.rb +161 -0
  455. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/lib/term/ansicolor/rgb_triple.rb +121 -0
  456. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/lib/term/ansicolor/version.rb +8 -0
  457. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/term-ansicolor.gemspec +40 -0
  458. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/tests/ansicolor_test.rb +133 -0
  459. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/tests/attribute_test.rb +73 -0
  460. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/tests/ppm_reader_test.rb +46 -0
  461. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/tests/rgb_color_metrics_test.rb +100 -0
  462. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/tests/rgb_triple_test.rb +71 -0
  463. data/vendor/ruby/1.9.1/gems/term-ansicolor-1.2.2/tests/test_helper.rb +8 -0
  464. data/vendor/ruby/1.9.1/gems/tins-0.13.1/.gitignore +9 -0
  465. data/vendor/ruby/1.9.1/gems/tins-0.13.1/.travis.yml +16 -0
  466. data/vendor/ruby/1.9.1/gems/tins-0.13.1/COPYING +18 -0
  467. data/vendor/ruby/1.9.1/gems/tins-0.13.1/Gemfile +9 -0
  468. data/vendor/ruby/1.9.1/gems/tins-0.13.1/README.rdoc +19 -0
  469. data/vendor/ruby/1.9.1/gems/tins-0.13.1/Rakefile +34 -0
  470. data/vendor/ruby/1.9.1/gems/tins-0.13.1/TODO +0 -0
  471. data/vendor/ruby/1.9.1/gems/tins-0.13.1/VERSION +1 -0
  472. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/spruz.rb +2 -0
  473. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins.rb +54 -0
  474. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/alias.rb +1 -0
  475. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/annotate.rb +30 -0
  476. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/ask_and_send.rb +15 -0
  477. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/attempt.rb +52 -0
  478. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/bijection.rb +46 -0
  479. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/concern.rb +30 -0
  480. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/count_by.rb +8 -0
  481. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/date_dummy.rb +42 -0
  482. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/date_time_dummy.rb +40 -0
  483. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/deep_const_get.rb +37 -0
  484. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/deep_dup.rb +11 -0
  485. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/extract_last_argument_options.rb +14 -0
  486. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/file_binary.rb +85 -0
  487. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/find.rb +138 -0
  488. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/generator.rb +68 -0
  489. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/go.rb +69 -0
  490. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/hash_symbolize_keys_recursive.rb +28 -0
  491. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/hash_union.rb +15 -0
  492. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/if_predicate.rb +7 -0
  493. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/limited.rb +38 -0
  494. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/lines_file.rb +123 -0
  495. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/memoize.rb +71 -0
  496. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/method_description.rb +38 -0
  497. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/minimize.rb +55 -0
  498. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/module_group.rb +13 -0
  499. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/named_set.rb +12 -0
  500. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/null.rb +92 -0
  501. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/once.rb +25 -0
  502. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/p.rb +23 -0
  503. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/partial_application.rb +31 -0
  504. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/proc_compose.rb +15 -0
  505. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/proc_prelude.rb +73 -0
  506. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/range_plus.rb +9 -0
  507. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/require_maybe.rb +9 -0
  508. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/responding.rb +19 -0
  509. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/rotate.rb +16 -0
  510. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/round.rb +51 -0
  511. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/secure_write.rb +27 -0
  512. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/sexy_singleton.rb +39 -0
  513. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/shuffle.rb +18 -0
  514. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/string_byte_order_mark.rb +20 -0
  515. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/string_camelize.rb +16 -0
  516. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/string_underscore.rb +15 -0
  517. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/string_version.rb +105 -0
  518. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/subhash.rb +42 -0
  519. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/terminal.rb +35 -0
  520. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/time_dummy.rb +55 -0
  521. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/to.rb +8 -0
  522. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/to_proc.rb +12 -0
  523. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/token.rb +25 -0
  524. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/uniq_by.rb +10 -0
  525. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/version.rb +8 -0
  526. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/write.rb +19 -0
  527. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt.rb +42 -0
  528. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/annotate.rb +5 -0
  529. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/ask_and_send.rb +7 -0
  530. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/attempt.rb +7 -0
  531. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/blank.rb +67 -0
  532. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/concern.rb +20 -0
  533. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/count_by.rb +11 -0
  534. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/date_dummy.rb +7 -0
  535. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/date_time_dummy.rb +7 -0
  536. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/deep_const_get.rb +7 -0
  537. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/deep_dup.rb +7 -0
  538. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/extract_last_argument_options.rb +7 -0
  539. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/file_binary.rb +7 -0
  540. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/full.rb +39 -0
  541. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/hash_symbolize_keys_recursive.rb +7 -0
  542. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/hash_union.rb +11 -0
  543. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/if_predicate.rb +7 -0
  544. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/irb.rb +23 -0
  545. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/method_description.rb +23 -0
  546. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/named.rb +35 -0
  547. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/null.rb +9 -0
  548. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/p.rb +7 -0
  549. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/partial_application.rb +11 -0
  550. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/proc_compose.rb +7 -0
  551. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/proc_prelude.rb +7 -0
  552. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/range_plus.rb +12 -0
  553. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/require_maybe.rb +7 -0
  554. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/responding.rb +7 -0
  555. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/rotate.rb +7 -0
  556. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/round.rb +13 -0
  557. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/secure_write.rb +11 -0
  558. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/sexy_singleton.rb +3 -0
  559. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/shuffle.rb +11 -0
  560. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/string.rb +6 -0
  561. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/string_byte_order_mark.rb +7 -0
  562. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/string_camelize.rb +6 -0
  563. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/string_underscore.rb +6 -0
  564. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/string_version.rb +7 -0
  565. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/subhash.rb +11 -0
  566. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/symbol_to_proc.rb +8 -0
  567. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/time_dummy.rb +7 -0
  568. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/to.rb +5 -0
  569. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/uniq_by.rb +15 -0
  570. data/vendor/ruby/1.9.1/gems/tins-0.13.1/lib/tins/xt/write.rb +11 -0
  571. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/annotate_test.rb +37 -0
  572. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/ask_and_send_test.rb +32 -0
  573. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/attempt_test.rb +43 -0
  574. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/bijection_test.rb +19 -0
  575. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/blank_full_test.rb +77 -0
  576. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/concern_test.rb +36 -0
  577. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/count_by_test.rb +17 -0
  578. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/date_dummy_test.rb +31 -0
  579. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/date_time_dummy_test.rb +31 -0
  580. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/deep_const_get_test.rb +37 -0
  581. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/deep_dup_test.rb +20 -0
  582. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/extract_last_argument_options_test.rb +30 -0
  583. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/file_binary_test.rb +65 -0
  584. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/find_test.rb +115 -0
  585. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/generator_test.rb +47 -0
  586. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/go_test.rb +50 -0
  587. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/hash_symbolize_keys_recursive_test.rb +24 -0
  588. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/hash_union_test.rb +42 -0
  589. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/if_predicate_test.rb +12 -0
  590. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/limited_test.rb +25 -0
  591. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/lines_file_test.rb +82 -0
  592. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/memoize_test.rb +58 -0
  593. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/method_description_test.rb +49 -0
  594. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/minimize_test.rb +54 -0
  595. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/module_group_test.rb +29 -0
  596. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/named_set_test.rb +18 -0
  597. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/named_test.rb +32 -0
  598. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/null_test.rb +58 -0
  599. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/p_test.rb +14 -0
  600. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/partial_application_test.rb +30 -0
  601. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/proc_compose_test.rb +25 -0
  602. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/proc_prelude_test.rb +81 -0
  603. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/range_plus_test.rb +14 -0
  604. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/require_maybe_test.rb +24 -0
  605. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/responding_test.rb +24 -0
  606. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/rotate_test.rb +65 -0
  607. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/round_test.rb +32 -0
  608. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/secure_write_test.rb +42 -0
  609. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/sexy_singleton_test.rb +16 -0
  610. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/shuffle_test.rb +30 -0
  611. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/string_byte_order_mark_test.rb +40 -0
  612. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/string_camelize_test.rb +21 -0
  613. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/string_underscore_test.rb +11 -0
  614. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/string_version_test.rb +31 -0
  615. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/subhash_test.rb +29 -0
  616. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/test_helper.rb +8 -0
  617. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/time_dummy_test.rb +31 -0
  618. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/to_test.rb +32 -0
  619. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/token_test.rb +38 -0
  620. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tests/uniq_by_test.rb +31 -0
  621. data/vendor/ruby/1.9.1/gems/tins-0.13.1/tins.gemspec +40 -0
  622. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/.gemtest +0 -0
  623. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/.gitignore +52 -0
  624. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/.gitmodules +3 -0
  625. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/.rspec +2 -0
  626. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/.travis.yml +26 -0
  627. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/.yardopts +9 -0
  628. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/Appraisals +5 -0
  629. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/CHANGELOG.md +949 -0
  630. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/CONTRIBUTING.md +33 -0
  631. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/Gemfile +55 -0
  632. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/LICENSE +20 -0
  633. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/README.md +230 -0
  634. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/Rakefile +197 -0
  635. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/Upgrade.md +289 -0
  636. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/benchmarks/http_stubbing_libraries.rb +59 -0
  637. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/benchmarks/null_logging.rb +62 -0
  638. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/cucumber.yml +16 -0
  639. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/.nav +62 -0
  640. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/about_these_examples.md +18 -0
  641. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/cassettes/allow_unused_http_interactions.feature +100 -0
  642. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/cassettes/automatic_re_recording.feature +72 -0
  643. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/cassettes/decompress.feature +74 -0
  644. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/cassettes/dynamic_erb.feature +100 -0
  645. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/cassettes/exclusive.feature +123 -0
  646. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/cassettes/format.feature +308 -0
  647. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/cassettes/freezing_time.feature +68 -0
  648. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/cassettes/naming.feature +28 -0
  649. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/cassettes/no_cassette.feature +152 -0
  650. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/cassettes/persistence.feature +63 -0
  651. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/cassettes/update_content_length_header.feature +112 -0
  652. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/configuration/allow_http_connections_when_no_cassette.feature +52 -0
  653. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/configuration/cassette_library_dir.feature +31 -0
  654. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/configuration/debug_logging.feature +52 -0
  655. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/configuration/default_cassette_options.feature +100 -0
  656. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/configuration/filter_sensitive_data.feature +152 -0
  657. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/configuration/hook_into.feature +172 -0
  658. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/configuration/ignore_request.feature +193 -0
  659. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/configuration/preserve_exact_body_bytes.feature +108 -0
  660. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/configuration/query_parser.feature +84 -0
  661. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/configuration/uri_parser.feature +89 -0
  662. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/getting_started.md +82 -0
  663. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/hooks/after_http_request.feature +57 -0
  664. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/hooks/around_http_request.feature +57 -0
  665. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/hooks/before_http_request.feature +61 -0
  666. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/hooks/before_playback.feature +185 -0
  667. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/hooks/before_record.feature +172 -0
  668. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/http_libraries/em_http_request.feature +247 -0
  669. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/http_libraries/net_http.feature +169 -0
  670. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/middleware/faraday.feature +56 -0
  671. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/middleware/rack.feature +92 -0
  672. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/record_modes/all.feature +82 -0
  673. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/record_modes/new_episodes.feature +79 -0
  674. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/record_modes/none.feature +72 -0
  675. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/record_modes/once.feature +95 -0
  676. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/request_matching/README.md +30 -0
  677. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/request_matching/body.feature +91 -0
  678. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/request_matching/body_as_json.feature +90 -0
  679. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/request_matching/custom_matcher.feature +135 -0
  680. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/request_matching/headers.feature +86 -0
  681. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/request_matching/host.feature +95 -0
  682. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/request_matching/identical_request_sequence.feature +89 -0
  683. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/request_matching/method.feature +96 -0
  684. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/request_matching/path.feature +96 -0
  685. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/request_matching/playback_repeats.feature +98 -0
  686. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/request_matching/query.feature +97 -0
  687. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/request_matching/uri.feature +94 -0
  688. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/request_matching/uri_without_param.feature +101 -0
  689. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/step_definitions/cli_steps.rb +200 -0
  690. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/support/env.rb +41 -0
  691. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/support/http_lib_filters.rb +53 -0
  692. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/support/vcr_cucumber_helpers.rb +46 -0
  693. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/test_frameworks/cucumber.feature +210 -0
  694. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/test_frameworks/rspec_macro.feature +106 -0
  695. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/test_frameworks/rspec_metadata.feature +149 -0
  696. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/features/test_frameworks/test_unit.feature +46 -0
  697. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/gemfiles/typhoeus_old.gemfile +34 -0
  698. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/gemfiles/typhoeus_old.gemfile.lock +133 -0
  699. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr.rb +347 -0
  700. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/cassette.rb +289 -0
  701. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/cassette/erb_renderer.rb +55 -0
  702. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/cassette/http_interaction_list.rb +108 -0
  703. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/cassette/migrator.rb +118 -0
  704. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/cassette/persisters.rb +42 -0
  705. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/cassette/persisters/file_system.rb +64 -0
  706. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/cassette/serializers.rb +57 -0
  707. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/cassette/serializers/json.rb +48 -0
  708. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/cassette/serializers/psych.rb +48 -0
  709. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/cassette/serializers/syck.rb +61 -0
  710. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/cassette/serializers/yaml.rb +50 -0
  711. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/configuration.rb +555 -0
  712. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/deprecations.rb +108 -0
  713. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/errors.rb +266 -0
  714. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/extensions/net_http_response.rb +36 -0
  715. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/library_hooks.rb +18 -0
  716. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/library_hooks/excon.rb +27 -0
  717. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/library_hooks/fakeweb.rb +196 -0
  718. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/library_hooks/faraday.rb +47 -0
  719. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/library_hooks/typhoeus.rb +120 -0
  720. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/library_hooks/typhoeus_0.4.rb +103 -0
  721. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/library_hooks/webmock.rb +164 -0
  722. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/middleware/excon.rb +221 -0
  723. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/middleware/excon/legacy_methods.rb +33 -0
  724. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/middleware/faraday.rb +114 -0
  725. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/middleware/rack.rb +79 -0
  726. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/request_handler.rb +114 -0
  727. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/request_ignorer.rb +43 -0
  728. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/request_matcher_registry.rb +149 -0
  729. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/structs.rb +578 -0
  730. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/tasks/vcr.rake +9 -0
  731. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/test_frameworks/cucumber.rb +64 -0
  732. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/test_frameworks/rspec.rb +42 -0
  733. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/util/hooks.rb +61 -0
  734. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/util/internet_connection.rb +43 -0
  735. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/util/logger.rb +59 -0
  736. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/util/variable_args_block_caller.rb +13 -0
  737. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/util/version_checker.rb +64 -0
  738. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/lib/vcr/version.rb +34 -0
  739. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/script/ci.sh +27 -0
  740. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/acceptance/threading_spec.rb +34 -0
  741. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/capture_warnings.rb +73 -0
  742. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/fixtures/cassette_spec/1_x_cassette.yml +110 -0
  743. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/fixtures/cassette_spec/empty.yml +0 -0
  744. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/fixtures/cassette_spec/example.yml +111 -0
  745. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/fixtures/cassette_spec/with_localhost_requests.yml +111 -0
  746. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/fixtures/fake_example_responses.yml +110 -0
  747. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/fixtures/match_requests_on.yml +187 -0
  748. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/monkey_patches.rb +182 -0
  749. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/quality_spec.rb +51 -0
  750. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/spec_helper.rb +94 -0
  751. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/support/configuration_stubbing.rb +8 -0
  752. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/support/fixnum_extension.rb +10 -0
  753. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/support/http_library_adapters.rb +285 -0
  754. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/support/limited_uri.rb +31 -0
  755. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/support/ruby_interpreter.rb +7 -0
  756. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/support/shared_example_groups/excon.rb +63 -0
  757. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/support/shared_example_groups/hook_into_http_library.rb +594 -0
  758. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/support/shared_example_groups/request_hooks.rb +59 -0
  759. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/support/sinatra_app.rb +86 -0
  760. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/support/vcr_localhost_server.rb +77 -0
  761. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/support/vcr_stub_helpers.rb +17 -0
  762. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/cassette/erb_renderer_spec.rb +53 -0
  763. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/cassette/http_interaction_list_spec.rb +295 -0
  764. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/cassette/migrator_spec.rb +195 -0
  765. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/cassette/persisters/file_system_spec.rb +69 -0
  766. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/cassette/persisters_spec.rb +39 -0
  767. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/cassette/serializers_spec.rb +176 -0
  768. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/cassette_spec.rb +608 -0
  769. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/configuration_spec.rb +326 -0
  770. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/deprecations_spec.rb +85 -0
  771. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/errors_spec.rb +162 -0
  772. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/extensions/net_http_response_spec.rb +86 -0
  773. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/library_hooks/excon_spec.rb +104 -0
  774. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/library_hooks/fakeweb_spec.rb +169 -0
  775. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/library_hooks/faraday_spec.rb +68 -0
  776. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/library_hooks/typhoeus_0.4_spec.rb +36 -0
  777. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/library_hooks/typhoeus_spec.rb +162 -0
  778. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/library_hooks/webmock_spec.rb +118 -0
  779. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/library_hooks_spec.rb +51 -0
  780. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/middleware/faraday_spec.rb +182 -0
  781. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/middleware/rack_spec.rb +115 -0
  782. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/request_ignorer_spec.rb +70 -0
  783. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/request_matcher_registry_spec.rb +345 -0
  784. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/structs_spec.rb +732 -0
  785. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/test_frameworks/cucumber_spec.rb +107 -0
  786. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/test_frameworks/rspec_spec.rb +83 -0
  787. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/util/hooks_spec.rb +158 -0
  788. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/util/internet_connection_spec.rb +37 -0
  789. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/util/version_checker_spec.rb +45 -0
  790. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr/version_spec.rb +27 -0
  791. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/spec/vcr_spec.rb +349 -0
  792. data/vendor/ruby/1.9.1/gems/vcr-2.8.0/vcr.gemspec +23 -0
  793. data/vendor/ruby/1.9.1/gems/watchr-0.7/.gitignore +6 -0
  794. data/vendor/ruby/1.9.1/gems/watchr-0.7/History.txt +32 -0
  795. data/vendor/ruby/1.9.1/gems/watchr-0.7/LICENSE +19 -0
  796. data/vendor/ruby/1.9.1/gems/watchr-0.7/README.md +119 -0
  797. data/vendor/ruby/1.9.1/gems/watchr-0.7/Rakefile +34 -0
  798. data/vendor/ruby/1.9.1/gems/watchr-0.7/TODO.md +31 -0
  799. data/vendor/ruby/1.9.1/gems/watchr-0.7/bin/watchr +105 -0
  800. data/vendor/ruby/1.9.1/gems/watchr-0.7/contributions.txt +7 -0
  801. data/vendor/ruby/1.9.1/gems/watchr-0.7/docs.watchr +26 -0
  802. data/vendor/ruby/1.9.1/gems/watchr-0.7/gem.watchr +22 -0
  803. data/vendor/ruby/1.9.1/gems/watchr-0.7/lib/watchr.rb +133 -0
  804. data/vendor/ruby/1.9.1/gems/watchr-0.7/lib/watchr/controller.rb +87 -0
  805. data/vendor/ruby/1.9.1/gems/watchr-0.7/lib/watchr/event_handlers/base.rb +57 -0
  806. data/vendor/ruby/1.9.1/gems/watchr-0.7/lib/watchr/event_handlers/darwin.rb +160 -0
  807. data/vendor/ruby/1.9.1/gems/watchr-0.7/lib/watchr/event_handlers/portable.rb +75 -0
  808. data/vendor/ruby/1.9.1/gems/watchr-0.7/lib/watchr/event_handlers/unix.rb +125 -0
  809. data/vendor/ruby/1.9.1/gems/watchr-0.7/lib/watchr/script.rb +257 -0
  810. data/vendor/ruby/1.9.1/gems/watchr-0.7/specs.watchr +37 -0
  811. data/vendor/ruby/1.9.1/gems/watchr-0.7/test/README +11 -0
  812. data/vendor/ruby/1.9.1/gems/watchr-0.7/test/event_handlers/test_base.rb +24 -0
  813. data/vendor/ruby/1.9.1/gems/watchr-0.7/test/event_handlers/test_darwin.rb +111 -0
  814. data/vendor/ruby/1.9.1/gems/watchr-0.7/test/event_handlers/test_portable.rb +142 -0
  815. data/vendor/ruby/1.9.1/gems/watchr-0.7/test/event_handlers/test_unix.rb +162 -0
  816. data/vendor/ruby/1.9.1/gems/watchr-0.7/test/test_controller.rb +113 -0
  817. data/vendor/ruby/1.9.1/gems/watchr-0.7/test/test_helper.rb +37 -0
  818. data/vendor/ruby/1.9.1/gems/watchr-0.7/test/test_script.rb +163 -0
  819. data/vendor/ruby/1.9.1/gems/watchr-0.7/test/test_watchr.rb +76 -0
  820. data/vendor/ruby/1.9.1/gems/watchr-0.7/watchr.gemspec +20 -0
  821. data/vendor/ruby/1.9.1/specifications/active_support-3.0.0.gemspec +24 -0
  822. data/vendor/ruby/1.9.1/specifications/activesupport-3.0.0.gemspec +18 -0
  823. data/vendor/ruby/1.9.1/specifications/minitest-5.2.0.gemspec +37 -0
  824. data/vendor/ruby/1.9.1/specifications/mynyml-redgreen-0.7.1.gemspec +44 -0
  825. data/vendor/ruby/1.9.1/specifications/rake-10.1.0.gemspec +35 -0
  826. data/vendor/ruby/1.9.1/specifications/ruby-fsevent-0.2.1.gemspec +32 -0
  827. data/vendor/ruby/1.9.1/specifications/term-ansicolor-1.2.2.gemspec +39 -0
  828. data/vendor/ruby/1.9.1/specifications/tins-0.13.1.gemspec +38 -0
  829. data/vendor/ruby/1.9.1/specifications/vcr-2.8.0.gemspec +18 -0
  830. data/vendor/ruby/1.9.1/specifications/watchr-0.7.gemspec +37 -0
  831. metadata +904 -0
@@ -0,0 +1,21 @@
1
+ require 'test_helper'
2
+ require 'tins/xt'
3
+
4
+ module Tins
5
+ class StringCamelizeTest < Test::Unit::TestCase
6
+ def test_camelize
7
+ assert_equal 'FooBar', 'foo_bar'.camelize
8
+ assert_equal 'FooBar', 'foo_bar'.camelize(:upper)
9
+ assert_equal 'FooBar', 'foo_bar'.camelize(true)
10
+ assert_equal 'fooBar', 'foo_bar'.camelize(:lower)
11
+ assert_equal 'fooBar', 'foo_bar'.camelize(false)
12
+ assert_equal 'FooBar', 'foo_bar'.camelcase
13
+ assert_equal 'Foo::Bar', 'foo/bar'.camelize
14
+ assert_equal 'Foo::Bar', 'foo/bar'.camelize(:upper)
15
+ assert_equal 'Foo::Bar', 'foo/bar'.camelize(true)
16
+ assert_equal 'foo::Bar', 'foo/bar'.camelize(:lower)
17
+ assert_equal 'foo::Bar', 'foo/bar'.camelize(false)
18
+ assert_equal 'Foo::Bar', 'foo/bar'.camelcase
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,11 @@
1
+ require 'test_helper'
2
+ require 'tins/xt'
3
+
4
+ module Tins
5
+ class StringUnderscoreTest < Test::Unit::TestCase
6
+ def test_underscore
7
+ assert_equal 'foo_bar', 'FooBar'.underscore
8
+ assert_equal 'foo/bar', 'Foo::Bar'.underscore
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,31 @@
1
+ require 'test_helper'
2
+ require 'tins'
3
+
4
+ module Tins
5
+ class StringVersionTest < Test::Unit::TestCase
6
+ def test_comparison
7
+ assert_operator '1.2'.version, :<, '1.3'.version
8
+ assert_operator '1.3'.version, :>, '1.2'.version
9
+ assert_operator '1.2'.version, :<=, '1.2'.version
10
+ assert_operator '1.2'.version, :>=, '1.2'.version
11
+ assert_operator '1.2'.version, :==, '1.2'.version
12
+ end
13
+
14
+ def test_change
15
+ s = '1.2'
16
+ s.version.revision = 1
17
+ assert_equal '1.2.0.1', s
18
+ s.version.revision += 1
19
+ assert_equal '1.2.0.2', s
20
+ s.version.succ!
21
+ assert_equal '1.2.0.3', s
22
+ s.version.pred!
23
+ assert_equal '1.2.0.2', s
24
+ assert_raise(ArgumentError) { s.version.build -= 1 }
25
+ s.version.major = 2
26
+ assert_equal '2.2.0.2', s
27
+ s.version.minor = 1
28
+ assert_equal '2.1.0.2', s
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,29 @@
1
+ require 'test_helper'
2
+ require 'tins'
3
+
4
+ module Tins
5
+ class SubhashTest < Test::Unit::TestCase
6
+ require 'tins/xt/subhash'
7
+
8
+ def test_subhash
9
+ h = { 'foo1' => 1, 'foo2' => 2, 'bar666' => 666 }
10
+ assert_equal [ [ 'bar666', 666 ] ], h.subhash(/\Abar/).to_a
11
+ assert h.subhash(/\Abaz/).empty?
12
+ assert_equal [ [ 'foo1', 1 ], [ 'foo2', 2 ] ], h.subhash(/\Afoo\d/).sort
13
+ assert_equal [ [ 'foo2', 2 ] ], h.subhash('foo2').to_a
14
+ end
15
+
16
+ def test_subhash_bang
17
+ h = { 'foo1' => 1, 'foo2' => 2, 'bar666' => 666 }
18
+ h.subhash!('foo2')
19
+ assert_equal [ [ 'foo2', 2 ] ], h.to_a
20
+ end
21
+
22
+ def test_subhash_with_block
23
+ h = { 'foo1' => 1, 'foo2' => 2, 'bar666' => 666 }
24
+ assert h.subhash(/\Abaz/) { :foo }.empty?
25
+ assert_equal [ [ 'foo1', 1 ], [ 'foo2', 2 ] ],
26
+ h.subhash(/\Afoo(\d)/) { |_,_,m| Integer(m[1]) }.to_a.sort
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,8 @@
1
+ if ENV['START_SIMPLECOV'].to_i == 1
2
+ require 'simplecov'
3
+ SimpleCov.start do
4
+ add_filter "#{File.basename(File.dirname(__FILE__))}/"
5
+ end
6
+ end
7
+ gem 'test-unit', '~> 2.5'
8
+ require 'test/unit'
@@ -0,0 +1,31 @@
1
+ require 'test_helper'
2
+ require 'tins'
3
+
4
+ module Tins
5
+ class TimeDummyTest < Test::Unit::TestCase
6
+ require 'tins/xt/time_dummy'
7
+ require 'time'
8
+
9
+ def test_time_dummy
10
+ time = Time.parse('2009-09-09 21:09:09')
11
+ assert_not_equal time, Time.now
12
+ Time.dummy = time
13
+ assert_equal time, Time.now
14
+ Time.dummy = nil
15
+ assert_not_equal time, Time.now
16
+ end
17
+
18
+ def test_time_dummy_block
19
+ time = Time.parse('2009-09-09 21:09:09')
20
+ assert_not_equal time, Time.now
21
+ Time.dummy time do
22
+ assert_equal time, Time.now
23
+ Time.dummy time + 1 do
24
+ assert_equal time + 1, Time.now
25
+ end
26
+ assert_equal time, Time.now
27
+ end
28
+ assert_not_equal time, Time.now
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,32 @@
1
+ require 'test_helper'
2
+ require 'tins/xt/to'
3
+
4
+ module Tins
5
+ class ToTest < Test::Unit::TestCase
6
+ def test_to_removing_leading_spaces
7
+ doc = to(<<-end)
8
+ hello, world
9
+ end
10
+ assert_equal "hello, world\n", doc
11
+ end
12
+
13
+ def test_to_removing_leading_spaces_depending_on_first_line
14
+ doc = to(<<-end)
15
+ hello
16
+ world,
17
+ how are
18
+ things?
19
+ end
20
+ assert_equal "hello\n world,\n how are\n things?\n", doc
21
+ end
22
+
23
+ def test_to_not_removing_empty_lines
24
+ doc = to(<<-end)
25
+ hello, world
26
+
27
+ another line
28
+ end
29
+ assert_equal "hello, world\n\nanother line\n", doc
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,38 @@
1
+ require 'test_helper'
2
+ require 'tins'
3
+
4
+ module Tins
5
+ class TokenTest < Test::Unit::TestCase
6
+ def test_token_failures
7
+ assert_raises(ArgumentError) { Tins::Token.new(:bits => 0) }
8
+ assert_raises(ArgumentError) { Tins::Token.new(:length => 0) }
9
+ assert_raises(ArgumentError) { Tins::Token.new(:alphabet => %w[0]) }
10
+ end
11
+
12
+ def test_token_for_length
13
+ token = Tins::Token.new(:length => 22)
14
+ assert_equal 22, token.length
15
+ assert_equal 130, token.bits
16
+ end
17
+
18
+ def test_token_for_bits
19
+ token = Tins::Token.new(:bits => 128)
20
+ assert_equal 22, token.length
21
+ # can differ from bits argument depending on alphabet:
22
+ assert_equal 130, token.bits
23
+ end
24
+
25
+ def test_alphabet
26
+ token = Tins::Token.new(:alphabet => %w[0 1])
27
+ assert_equal 128, token.length
28
+ assert_equal 128, token.bits
29
+ token = Tins::Token.new(:alphabet => %w[0 1 2 3])
30
+ assert_equal 64, token.length
31
+ assert_equal 128, token.bits
32
+ token = Tins::Token.new(:length => 128, :alphabet => %w[0 1 2 3])
33
+ assert_equal 128, token.length
34
+ assert_equal 256, token.bits
35
+ end
36
+ end
37
+ end
38
+
@@ -0,0 +1,31 @@
1
+ require 'test_helper'
2
+ require 'tins/xt'
3
+
4
+ module Tins
5
+ class UniqByTest < Test::Unit::TestCase
6
+
7
+ unless defined?(Point)
8
+ class Point < Struct.new :x, :y
9
+ end
10
+ end
11
+
12
+ def test_uniq_by
13
+ assert_equal [ 1, 2, 3 ], [ 1, 2, 2, 3 ].uniq_by.sort
14
+ a = [ 1, 2, 2, 3 ]; a.uniq_by!
15
+ assert_equal [ 1, 2, 3 ], a.sort
16
+ p1 = Point.new 1, 2
17
+ p2 = Point.new 2, 2
18
+ p3 = Point.new 2, 2
19
+ p4 = Point.new 3, 3
20
+ a = [ p1, p2, p3, p4 ]
21
+ a_uniq = a.uniq_by { |p| p.y }
22
+ assert_equal 2, a_uniq.size
23
+ assert a_uniq.include?(p4)
24
+ assert [ p1, p2, p3 ].any? { |p| a_uniq.include? p }
25
+ a.uniq_by! { |p| p.y }
26
+ assert_equal 2, a.size
27
+ assert a.include?(p4)
28
+ assert [ p1, p2, p3 ].any? { |p| a.include? p }
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,40 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # stub: tins 0.13.1 ruby lib
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = "tins"
6
+ s.version = "0.13.1"
7
+
8
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
9
+ s.authors = ["Florian Frank"]
10
+ s.date = "2013-11-11"
11
+ s.description = "All the stuff that isn't good/big enough for a real library."
12
+ s.email = "flori@ping.de"
13
+ s.extra_rdoc_files = ["README.rdoc", "lib/spruz.rb", "lib/tins.rb", "lib/tins/alias.rb", "lib/tins/annotate.rb", "lib/tins/ask_and_send.rb", "lib/tins/attempt.rb", "lib/tins/bijection.rb", "lib/tins/concern.rb", "lib/tins/count_by.rb", "lib/tins/date_dummy.rb", "lib/tins/date_time_dummy.rb", "lib/tins/deep_const_get.rb", "lib/tins/deep_dup.rb", "lib/tins/extract_last_argument_options.rb", "lib/tins/file_binary.rb", "lib/tins/find.rb", "lib/tins/generator.rb", "lib/tins/go.rb", "lib/tins/hash_symbolize_keys_recursive.rb", "lib/tins/hash_union.rb", "lib/tins/if_predicate.rb", "lib/tins/limited.rb", "lib/tins/lines_file.rb", "lib/tins/memoize.rb", "lib/tins/method_description.rb", "lib/tins/minimize.rb", "lib/tins/module_group.rb", "lib/tins/named_set.rb", "lib/tins/null.rb", "lib/tins/once.rb", "lib/tins/p.rb", "lib/tins/partial_application.rb", "lib/tins/proc_compose.rb", "lib/tins/proc_prelude.rb", "lib/tins/range_plus.rb", "lib/tins/require_maybe.rb", "lib/tins/responding.rb", "lib/tins/rotate.rb", "lib/tins/round.rb", "lib/tins/secure_write.rb", "lib/tins/sexy_singleton.rb", "lib/tins/shuffle.rb", "lib/tins/string_byte_order_mark.rb", "lib/tins/string_camelize.rb", "lib/tins/string_underscore.rb", "lib/tins/string_version.rb", "lib/tins/subhash.rb", "lib/tins/terminal.rb", "lib/tins/time_dummy.rb", "lib/tins/to.rb", "lib/tins/to_proc.rb", "lib/tins/token.rb", "lib/tins/uniq_by.rb", "lib/tins/version.rb", "lib/tins/write.rb", "lib/tins/xt.rb", "lib/tins/xt/annotate.rb", "lib/tins/xt/ask_and_send.rb", "lib/tins/xt/attempt.rb", "lib/tins/xt/blank.rb", "lib/tins/xt/concern.rb", "lib/tins/xt/count_by.rb", "lib/tins/xt/date_dummy.rb", "lib/tins/xt/date_time_dummy.rb", "lib/tins/xt/deep_const_get.rb", "lib/tins/xt/deep_dup.rb", "lib/tins/xt/extract_last_argument_options.rb", "lib/tins/xt/file_binary.rb", "lib/tins/xt/full.rb", "lib/tins/xt/hash_symbolize_keys_recursive.rb", "lib/tins/xt/hash_union.rb", "lib/tins/xt/if_predicate.rb", "lib/tins/xt/irb.rb", "lib/tins/xt/method_description.rb", "lib/tins/xt/named.rb", "lib/tins/xt/null.rb", "lib/tins/xt/p.rb", "lib/tins/xt/partial_application.rb", "lib/tins/xt/proc_compose.rb", "lib/tins/xt/proc_prelude.rb", "lib/tins/xt/range_plus.rb", "lib/tins/xt/require_maybe.rb", "lib/tins/xt/responding.rb", "lib/tins/xt/rotate.rb", "lib/tins/xt/round.rb", "lib/tins/xt/secure_write.rb", "lib/tins/xt/sexy_singleton.rb", "lib/tins/xt/shuffle.rb", "lib/tins/xt/string.rb", "lib/tins/xt/string_byte_order_mark.rb", "lib/tins/xt/string_camelize.rb", "lib/tins/xt/string_underscore.rb", "lib/tins/xt/string_version.rb", "lib/tins/xt/subhash.rb", "lib/tins/xt/symbol_to_proc.rb", "lib/tins/xt/time_dummy.rb", "lib/tins/xt/to.rb", "lib/tins/xt/uniq_by.rb", "lib/tins/xt/write.rb"]
14
+ s.files = [".gitignore", ".travis.yml", "COPYING", "Gemfile", "README.rdoc", "Rakefile", "TODO", "VERSION", "lib/spruz", "lib/spruz.rb", "lib/tins.rb", "lib/tins/alias.rb", "lib/tins/annotate.rb", "lib/tins/ask_and_send.rb", "lib/tins/attempt.rb", "lib/tins/bijection.rb", "lib/tins/concern.rb", "lib/tins/count_by.rb", "lib/tins/date_dummy.rb", "lib/tins/date_time_dummy.rb", "lib/tins/deep_const_get.rb", "lib/tins/deep_dup.rb", "lib/tins/extract_last_argument_options.rb", "lib/tins/file_binary.rb", "lib/tins/find.rb", "lib/tins/generator.rb", "lib/tins/go.rb", "lib/tins/hash_symbolize_keys_recursive.rb", "lib/tins/hash_union.rb", "lib/tins/if_predicate.rb", "lib/tins/limited.rb", "lib/tins/lines_file.rb", "lib/tins/memoize.rb", "lib/tins/method_description.rb", "lib/tins/minimize.rb", "lib/tins/module_group.rb", "lib/tins/named_set.rb", "lib/tins/null.rb", "lib/tins/once.rb", "lib/tins/p.rb", "lib/tins/partial_application.rb", "lib/tins/proc_compose.rb", "lib/tins/proc_prelude.rb", "lib/tins/range_plus.rb", "lib/tins/require_maybe.rb", "lib/tins/responding.rb", "lib/tins/rotate.rb", "lib/tins/round.rb", "lib/tins/secure_write.rb", "lib/tins/sexy_singleton.rb", "lib/tins/shuffle.rb", "lib/tins/string_byte_order_mark.rb", "lib/tins/string_camelize.rb", "lib/tins/string_underscore.rb", "lib/tins/string_version.rb", "lib/tins/subhash.rb", "lib/tins/terminal.rb", "lib/tins/time_dummy.rb", "lib/tins/to.rb", "lib/tins/to_proc.rb", "lib/tins/token.rb", "lib/tins/uniq_by.rb", "lib/tins/version.rb", "lib/tins/write.rb", "lib/tins/xt.rb", "lib/tins/xt/annotate.rb", "lib/tins/xt/ask_and_send.rb", "lib/tins/xt/attempt.rb", "lib/tins/xt/blank.rb", "lib/tins/xt/concern.rb", "lib/tins/xt/count_by.rb", "lib/tins/xt/date_dummy.rb", "lib/tins/xt/date_time_dummy.rb", "lib/tins/xt/deep_const_get.rb", "lib/tins/xt/deep_dup.rb", "lib/tins/xt/extract_last_argument_options.rb", "lib/tins/xt/file_binary.rb", "lib/tins/xt/full.rb", "lib/tins/xt/hash_symbolize_keys_recursive.rb", "lib/tins/xt/hash_union.rb", "lib/tins/xt/if_predicate.rb", "lib/tins/xt/irb.rb", "lib/tins/xt/method_description.rb", "lib/tins/xt/named.rb", "lib/tins/xt/null.rb", "lib/tins/xt/p.rb", "lib/tins/xt/partial_application.rb", "lib/tins/xt/proc_compose.rb", "lib/tins/xt/proc_prelude.rb", "lib/tins/xt/range_plus.rb", "lib/tins/xt/require_maybe.rb", "lib/tins/xt/responding.rb", "lib/tins/xt/rotate.rb", "lib/tins/xt/round.rb", "lib/tins/xt/secure_write.rb", "lib/tins/xt/sexy_singleton.rb", "lib/tins/xt/shuffle.rb", "lib/tins/xt/string.rb", "lib/tins/xt/string_byte_order_mark.rb", "lib/tins/xt/string_camelize.rb", "lib/tins/xt/string_underscore.rb", "lib/tins/xt/string_version.rb", "lib/tins/xt/subhash.rb", "lib/tins/xt/symbol_to_proc.rb", "lib/tins/xt/time_dummy.rb", "lib/tins/xt/to.rb", "lib/tins/xt/uniq_by.rb", "lib/tins/xt/write.rb", "tests/annotate_test.rb", "tests/ask_and_send_test.rb", "tests/attempt_test.rb", "tests/bijection_test.rb", "tests/blank_full_test.rb", "tests/concern_test.rb", "tests/count_by_test.rb", "tests/date_dummy_test.rb", "tests/date_time_dummy_test.rb", "tests/deep_const_get_test.rb", "tests/deep_dup_test.rb", "tests/extract_last_argument_options_test.rb", "tests/file_binary_test.rb", "tests/find_test.rb", "tests/generator_test.rb", "tests/go_test.rb", "tests/hash_symbolize_keys_recursive_test.rb", "tests/hash_union_test.rb", "tests/if_predicate_test.rb", "tests/limited_test.rb", "tests/lines_file_test.rb", "tests/memoize_test.rb", "tests/method_description_test.rb", "tests/minimize_test.rb", "tests/module_group_test.rb", "tests/named_set_test.rb", "tests/named_test.rb", "tests/null_test.rb", "tests/p_test.rb", "tests/partial_application_test.rb", "tests/proc_compose_test.rb", "tests/proc_prelude_test.rb", "tests/range_plus_test.rb", "tests/require_maybe_test.rb", "tests/responding_test.rb", "tests/rotate_test.rb", "tests/round_test.rb", "tests/secure_write_test.rb", "tests/sexy_singleton_test.rb", "tests/shuffle_test.rb", "tests/string_byte_order_mark_test.rb", "tests/string_camelize_test.rb", "tests/string_underscore_test.rb", "tests/string_version_test.rb", "tests/subhash_test.rb", "tests/test_helper.rb", "tests/time_dummy_test.rb", "tests/to_test.rb", "tests/token_test.rb", "tests/uniq_by_test.rb", "tins.gemspec"]
15
+ s.homepage = "http://flori.github.com/tins"
16
+ s.licenses = ["MIT"]
17
+ s.rdoc_options = ["--title", "Tins - Useful stuff.", "--main", "README.rdoc"]
18
+ s.require_paths = ["lib"]
19
+ s.rubygems_version = "2.1.10"
20
+ s.summary = "Useful stuff."
21
+ s.test_files = ["tests/annotate_test.rb", "tests/ask_and_send_test.rb", "tests/attempt_test.rb", "tests/bijection_test.rb", "tests/blank_full_test.rb", "tests/concern_test.rb", "tests/count_by_test.rb", "tests/date_dummy_test.rb", "tests/date_time_dummy_test.rb", "tests/deep_const_get_test.rb", "tests/deep_dup_test.rb", "tests/extract_last_argument_options_test.rb", "tests/file_binary_test.rb", "tests/find_test.rb", "tests/generator_test.rb", "tests/go_test.rb", "tests/hash_symbolize_keys_recursive_test.rb", "tests/hash_union_test.rb", "tests/if_predicate_test.rb", "tests/limited_test.rb", "tests/lines_file_test.rb", "tests/memoize_test.rb", "tests/method_description_test.rb", "tests/minimize_test.rb", "tests/module_group_test.rb", "tests/named_set_test.rb", "tests/named_test.rb", "tests/null_test.rb", "tests/p_test.rb", "tests/partial_application_test.rb", "tests/proc_compose_test.rb", "tests/proc_prelude_test.rb", "tests/range_plus_test.rb", "tests/require_maybe_test.rb", "tests/responding_test.rb", "tests/rotate_test.rb", "tests/round_test.rb", "tests/secure_write_test.rb", "tests/sexy_singleton_test.rb", "tests/shuffle_test.rb", "tests/string_byte_order_mark_test.rb", "tests/string_camelize_test.rb", "tests/string_underscore_test.rb", "tests/string_version_test.rb", "tests/subhash_test.rb", "tests/test_helper.rb", "tests/time_dummy_test.rb", "tests/to_test.rb", "tests/token_test.rb", "tests/uniq_by_test.rb", "tests/annotate_test.rb", "tests/ask_and_send_test.rb", "tests/attempt_test.rb", "tests/bijection_test.rb", "tests/blank_full_test.rb", "tests/concern_test.rb", "tests/count_by_test.rb", "tests/date_dummy_test.rb", "tests/date_time_dummy_test.rb", "tests/deep_const_get_test.rb", "tests/deep_dup_test.rb", "tests/extract_last_argument_options_test.rb", "tests/file_binary_test.rb", "tests/find_test.rb", "tests/generator_test.rb", "tests/go_test.rb", "tests/hash_symbolize_keys_recursive_test.rb", "tests/hash_union_test.rb", "tests/if_predicate_test.rb", "tests/limited_test.rb", "tests/lines_file_test.rb", "tests/memoize_test.rb", "tests/method_description_test.rb", "tests/minimize_test.rb", "tests/module_group_test.rb", "tests/named_set_test.rb", "tests/named_test.rb", "tests/null_test.rb", "tests/p_test.rb", "tests/partial_application_test.rb", "tests/proc_compose_test.rb", "tests/proc_prelude_test.rb", "tests/range_plus_test.rb", "tests/require_maybe_test.rb", "tests/responding_test.rb", "tests/rotate_test.rb", "tests/round_test.rb", "tests/secure_write_test.rb", "tests/sexy_singleton_test.rb", "tests/shuffle_test.rb", "tests/string_byte_order_mark_test.rb", "tests/string_camelize_test.rb", "tests/string_underscore_test.rb", "tests/string_version_test.rb", "tests/subhash_test.rb", "tests/time_dummy_test.rb", "tests/to_test.rb", "tests/token_test.rb", "tests/uniq_by_test.rb"]
22
+
23
+ if s.respond_to? :specification_version then
24
+ s.specification_version = 4
25
+
26
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
27
+ s.add_development_dependency(%q<gem_hadar>, ["~> 0.3.2"])
28
+ s.add_development_dependency(%q<test-unit>, ["~> 2.5"])
29
+ s.add_development_dependency(%q<utils>, [">= 0"])
30
+ else
31
+ s.add_dependency(%q<gem_hadar>, ["~> 0.3.2"])
32
+ s.add_dependency(%q<test-unit>, ["~> 2.5"])
33
+ s.add_dependency(%q<utils>, [">= 0"])
34
+ end
35
+ else
36
+ s.add_dependency(%q<gem_hadar>, ["~> 0.3.2"])
37
+ s.add_dependency(%q<test-unit>, ["~> 2.5"])
38
+ s.add_dependency(%q<utils>, [">= 0"])
39
+ end
40
+ end
File without changes
@@ -0,0 +1,52 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+ tags
16
+
17
+ ## PROJECT::GENERAL
18
+ coverage
19
+ coverage.data
20
+ rdoc
21
+ pkg
22
+
23
+ ## PROJECT::SPECIFIC
24
+ features/fixtures/vcr_cassettes/**/temp/
25
+ *.rbc
26
+ .rbc
27
+ .rbx
28
+ .bundle
29
+ tmp
30
+ rerun.txt
31
+
32
+ features/README.md
33
+ features/CHANGELOG.md
34
+ features/LICENSE.md
35
+ features/Upgrade.md
36
+ features/CONTRIBUTING.md
37
+
38
+ ## PROJECT::TOOLS
39
+
40
+ .rvmrc
41
+ .yardoc
42
+ doc
43
+
44
+ ## PROJECT::EDITORS
45
+ .idea/
46
+
47
+ .rbenv-version
48
+ .ruby-version
49
+ .ruby-gemset
50
+ bin/*
51
+ bundle/*
52
+ .rspec-local
@@ -0,0 +1,3 @@
1
+ [submodule "vendor/rspec-1"]
2
+ path = vendor/rspec-1
3
+ url = git://github.com/myronmarston/rspec-1.git
@@ -0,0 +1,2 @@
1
+ --format progress
2
+ --color
@@ -0,0 +1,26 @@
1
+ language: ruby
2
+ env: CUCUMBER_FORMAT=progress
3
+ bundler_args: --without extras
4
+ script: "script/ci.sh"
5
+ services:
6
+ - redis-server
7
+ rvm:
8
+ - 1.8.7
9
+ - 1.9.2
10
+ - 1.9.3
11
+ - 2.0.0
12
+ - ree
13
+ - jruby-18mode
14
+ - jruby-19mode
15
+ - rbx-18mode
16
+ - rbx-19mode
17
+ matrix:
18
+ allow_failures:
19
+ - rvm: jruby-18mode
20
+ - rvm: jruby-19mode
21
+ - rvm: rbx-18mode
22
+ - rvm: rbx-19mode
23
+ branches:
24
+ except:
25
+ - gh-pages
26
+
@@ -0,0 +1,9 @@
1
+ --no-private
2
+ --exclude features
3
+ --markup markdown
4
+ --hide-void-return
5
+ -
6
+ CHANGELOG.md
7
+ CONTRIBUTING.md
8
+ LICENSE
9
+ Upgrade.md
@@ -0,0 +1,5 @@
1
+ appraise "typhoeus-old" do
2
+ gem 'typhoeus', '~> 0.4.2'
3
+ gem 'webmock', '1.8.11'
4
+ end
5
+
@@ -0,0 +1,949 @@
1
+ ## 2.8.0 (November 23, 2013)
2
+
3
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.7.0...v2.8.0)
4
+
5
+ Enhancements:
6
+
7
+ * Explicitly support the latest Excon release (0.29). (Myron Marston)
8
+ * Add `:body_as_json` request matcher. (Mike Dalton)
9
+ * Include the body in the `UnhandledHTTPRequestError` message when
10
+ matching on `:body` to help identify the request. (Chris Gunther)
11
+
12
+ Bug Fixes:
13
+
14
+ * Fix Excon adapter so that it properly records responses even when
15
+ a middleware raises an error (such as via the `:expects` Excon
16
+ option). Previously, the order `response_call` was invoked on
17
+ Excon middleware caused VCR's recording ot be skipped when an
18
+ error was raised by another middleware. To fix this, we have
19
+ split up VCR Excon middleware into two middlewares that we can
20
+ insert into the stack at the appropriate spots. Note that to get
21
+ this to work, Excon < 0.25.2 is no longer supported.
22
+ (Myron Marston)
23
+ * Fix Excon adapter so that we pass it a dup of the body string
24
+ rather than the body string itself, since Excon has code paths
25
+ that will mutate the stubbed response string we give it, wreaking
26
+ confusing havoc. (Myron Marston)
27
+ * Fix rspec metadata implementation so that it does not emit warnings
28
+ on RSpec 2.99. (Herman Verschooten)
29
+
30
+ ## 2.7.0 (October 31, 2013)
31
+
32
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.6.0...v2.7.0)
33
+
34
+ Enhancements:
35
+
36
+ * Explicitly support the latest WebMock releases (1.14 and 1.15).
37
+ (Eduardo Maia, Johannes Würbach)
38
+ * Explicitly support the latest Excon releases (0.27 and 0.28).
39
+ (Myron Marston)
40
+ * Add support for Excon unix sockets by leveraging its
41
+ new `::Excon::Utils.request_uri` method. (Todd Lunter)
42
+ * Reword the "it may not work with this version" warning
43
+ message so the intent is more clear (Myron Marston).
44
+ * Support post/put bodies being specified as a hash when
45
+ using Typhoeus by leveraging it's new `encoded_body` API.
46
+ (Myron Marston, Hans Hasselberg)
47
+
48
+ Bug Fixes:
49
+
50
+ * Fix detection of encoding errors for MultiJson 1.8.1+.
51
+ (Myron Marston).
52
+ * Fix file name sanitization to better handle paths that have
53
+ a dot in them (Rob Hanlon, Myron Marston).
54
+ * Fix Faraday middleware so that it works properly when another
55
+ adapter is exclusively enabled (Myron Marston).
56
+
57
+ ## 2.6.0 (September 25, 2013)
58
+
59
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.5.0...v2.6.0)
60
+
61
+ Enhancements:
62
+
63
+ * Add `VCR::Cassette#originally_recorded_at` for use when freezing
64
+ time based on when the cassette was recorded. (Myron Marston)
65
+ * Improve the `:allow_unused_http_interactions => false` option
66
+ so that it does not raise an error when there are unused interactions
67
+ due to the test failing on its own; otherwise, it could raise
68
+ an error and silence the original test failure. (Myron Marston)
69
+ * Improve perf when no logger is used by having it short-circuit
70
+ and not bother formatting a logger message that won't be
71
+ printed, anyway (Luan Santos and Matt Parker).
72
+
73
+ Bug Fixes:
74
+
75
+ * Fix confusing errors that could result when using the YAML serializer
76
+ if the client code added some state (e.g. via an extension module)
77
+ onto a request or response body. (Myron Marston)
78
+ * Ensure response body is always recorded when hooking into `:excon`,
79
+ even when using a `:response_block` and an unexpected status is
80
+ returned. Excon doesn't invoke the `:response_block` in this case,
81
+ requiring special handling. (James Bence)
82
+ * Explicitly support the latest WebMock (1.13). (Ron Smith)
83
+ * Explicitly support the latest Excon (0.26). (Myron Marston)
84
+ * Fix detection of encoding errors to handle `ArgumentError` that
85
+ is raised by recent versions of `MultiJson`. (Myron Marston)
86
+ * Fix Excon adapter so that it allows VCR to play nicely with
87
+ manual Excon stubs (using Excon's `Excon.stub` API). (Myron Marston)
88
+ * Fix Typhoeus adapter so that it sets `effective_url` properly
89
+ when the `:followlocation` option is used and a redirect is
90
+ followed. (Myron Marston)
91
+
92
+ ## 2.5.0 (May 18, 2013)
93
+
94
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.4.0...v2.5.0)
95
+
96
+ Bug Fixes:
97
+
98
+ * Fix `around_http_request` so that it does not raise confusing
99
+ errors when requests are made in multiple threads.
100
+ * Fix `configure_rspec_metadata!` so that you can safely call it
101
+ more than once
102
+
103
+ Enhancements:
104
+
105
+ * Relax WebMock version checker to allow WebMock 1.10 and 1.11 without
106
+ issuing warnings (Johannes Würbach and Myron Marston).
107
+ * Update Excon integration to take advantage of new Excon middleware
108
+ architecture. This is a more robust way to hook into Excon and will
109
+ be less prone to breakage due to internal Excon changes (Myron
110
+ Marston).
111
+
112
+ Deprecations:
113
+
114
+ * Deprecate support for Typhoeus < 0.5. It will be removed in
115
+ VCR 3.0 (Sheel Choksi).
116
+
117
+ ## 2.4.0 (January 4, 2013)
118
+
119
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.3.0...v2.4.0)
120
+
121
+ Enhancements:
122
+
123
+ * Add `:query` request matcher. The new `query_parser` config option can
124
+ bet set to change how the query is parsed. Thanks to [Nathaniel
125
+ Bibler](https://github.com/nbibler) for implementing this.
126
+
127
+ Bug Fixes:
128
+
129
+ * Fix previously recorded requests not matching when using the URIWithoutParams
130
+ builtin matcher. In the case where the original request was recorded without
131
+ parameters and subsequent requests filter out all parameters, the subsequent
132
+ requests were failing to match the originally recorded request. Thanks to
133
+ [Dmitry Jemerov](https://github.com/yole) for reporting the issue and
134
+ [Nathaniel Bibler](https://github.com/nbibler) for implementing the fix.
135
+ * Set `effective_url` on Typhoeus response when playing back. Thanks to
136
+ [Shay Frendt](https://github.com/shayfrendt) and
137
+ [Ryan Castillo](https://github.com/rmcastil) for providing the fix and
138
+ corresponding test.
139
+
140
+ Deprecations:
141
+
142
+ * Deprecate the `use_vcr_cassette` macro for RSpec. It has confusing
143
+ semantics (e.g. calling it multiple times in the same example group
144
+ can cause problems and it uses the same cassette for all examples
145
+ in a group even though they may make different HTTP requests) and
146
+ VCR's integration with RSpec metadata works much better. Thanks to
147
+ [Austen Ito](https://github.com/austenito) for implementing this.
148
+ * Deprecate integration with FakeWeb. FakeWeb appears to be no longer
149
+ maintained (0 commits in 2012 and it has pull requests that are
150
+ 2 years old) and WebMock is a far better option. Thanks to [Steve
151
+ Faulkner](https://github.com/southpolesteve) for implementing this.
152
+
153
+ ## 2.3.0 (October 29, 2012)
154
+
155
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.2.5...v2.3.0)
156
+
157
+ Enhancements:
158
+
159
+ * Add `uri_parser` configuration option. It defaults to `URI` but can
160
+ be set to something like `Addressable::URI` to handle non-standard
161
+ URIs that stdlib `URI` doesn't handle. Thanks to [Ryan
162
+ Burrows](https://github.com/rhburrows) for contributing this feature.
163
+ * Add support for Typhoeus 0.5. Thanks to [Hans
164
+ Hasselberg](https://github.com/i0rek) for making the needed changes.
165
+
166
+ Bug Fixes:
167
+
168
+ * Fix `:use_scenario_name` cucumber tag option so that it only uses the
169
+ first line of the scenario name. Scenarios can include a long preamble
170
+ that Cucumber includes as part of the scenario name. Thanks to
171
+ [Pascal Van Hecke](https://github.com/pascalvanhecke) for providing
172
+ this fix.
173
+
174
+ ## 2.2.5 (September 7, 2012)
175
+
176
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.2.4...v2.2.5)
177
+
178
+ Enhancements:
179
+
180
+ * Include note about `debug_logger` option in error message for
181
+ unhandled HTTP requests. Thanks to [Jacob Green](https://github.com/Jacobkg)
182
+ for implementing this.
183
+
184
+ Bug Fixes:
185
+
186
+ * Fix another edge case bug on the excon adapter that was causing it
187
+ to mis-record in certain situations that used Excon's :expects option.
188
+ * Fix the `:use_scenario_name` cucumber tags option to work properly
189
+ with scenario outlines. Thanks to [Joe
190
+ Nelson](https://github.com/begriffs) and [Stephen
191
+ Anderson](https://github.com/bendycode) for the initial bug fixes and
192
+ [Jacob Green](https://github.com/Jacobkg) for some further improvements.
193
+
194
+ ## 2.2.4 (July 19, 2012)
195
+
196
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.2.3...v2.2.4)
197
+
198
+ Bug Fixes:
199
+
200
+ * Fix excon so real requests are made with a connection constructed with
201
+ same args as the original connection.
202
+
203
+ ## 2.2.3 (July 9, 2012)
204
+
205
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.2.2...v2.2.3)
206
+
207
+ Bug Fixes:
208
+
209
+ * Fix FakeWeb library hook so that it properly handles the case where
210
+ multiple requests are made using the same Net::HTTP request object.
211
+ Previously, a `NoMethodError` was raised. Thanks to [Jacob
212
+ Green](https://github.com/Jacobkg) for helping to troubleshoot
213
+ this bug!
214
+
215
+ ## 2.2.2 (June 15, 2012)
216
+
217
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.2.1...v2.2.2)
218
+
219
+ Bug Fixes:
220
+
221
+ * Fix `VCR.eject_cassette` so that it always pops a cassette off the
222
+ cassette stack even if an error occurs while ejecting the cassette.
223
+ This is important to keep things consistent, so that a cassette for
224
+ one test doesn't remain in place for another test.
225
+
226
+ ## 2.2.1 (June 13, 2012)
227
+
228
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.2.0...v2.2.1)
229
+
230
+ Bug Fixes:
231
+
232
+ * Fix matcher generated by `VCR.request_matchers.uri_without_params` so that
233
+ it handles URIs w/o query params properly. Previously, it would allow any
234
+ two URIs w/o query params to match, even if the hosts or paths
235
+ differed.
236
+
237
+ ## 2.2.0 (May 31, 2012)
238
+
239
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.1.1...v2.2.0)
240
+
241
+ Enhancements:
242
+
243
+ * Add new `:persist_with` cassette option. It allows you to provide a
244
+ customized persistence implementation so you can persist it to
245
+ something other than disk (i.e. a key-value store or a database).
246
+ Thanks to [Chris Le](https://github.com/chrisle) for the idea and
247
+ help with the implementation.
248
+ * Allow requests to be stubbed by external libraries (e.g. WebMock,
249
+ FakeWeb or Typhoeus) without needing to turn VCR off.
250
+ * Add new `:allow_unused_http_interactions` cassette option. When set
251
+ to false, an error will be raised when a cassette is ejected and
252
+ there are remaining unused HTTP interactions. Thanks to
253
+ [Mattias Putman](https://github.com/challengee) for the idea
254
+ and initial implementation.
255
+
256
+ Bug Fixes:
257
+
258
+ * Fix `after_http_request` to handle symbol request predicate filters
259
+ (e.g. `:ignored?`, `:stubbed?`, `:recordable?`, `:unhandled?`, `:real?`)
260
+ properly. Previously using one of these would raise an ArgumentError.
261
+ Thanks to [playupchris](https://github.com/playupchris) for reporting
262
+ the bug and providing a fix.
263
+ * Fix FakeWeb hook so that it no longer breaks
264
+ `FakeWeb.allow_net_connect?` with arguments. Thanks to
265
+ [Ingemar](https://github.com/ingemar) for reporting the bug and
266
+ providing a fix.
267
+ * Fix WebMock hook so that it no longer breaks
268
+ `WebMock.net_connect_allowed?` with arguments. Thanks to
269
+ [Gordon Wilson](https://github.com/gordoncww) for reporting the bug and
270
+ providing a fix.
271
+ * Print a warning when VCR is used with a poorly behaved Faraday
272
+ connection stack that has a middleware after the HTTP adapter.
273
+ VCR may work improperly in this case.
274
+ * Raise an error if a response object is recorded with a non-string
275
+ body. This fails early and indicates the problem rather than failing
276
+ later with a strange error.
277
+ * Fix `filter_sensitive_data`/`define_cassette_placeholder` so that they
278
+ handle non-strings gracefully (e.g. the port number as a Fixnum).
279
+ * Gracefully handle Faraday connection stacks that do not explicitly
280
+ specify an HTTP adapter. Thanks to [Patrick Roby](https://github.com/proby)
281
+ for reporting the bug.
282
+ * Work around a bug in WebMock's em-http-request adapter that prevented
283
+ VCR from working when using the `:redirects` option with
284
+ em-http-request. This change is just a work around. It fixes the main
285
+ problem, but some features (such as the http request hooks) may not
286
+ work properly for this case. The bug will ultimately need to be
287
+ [fixed in WebMock](https://github.com/bblimke/webmock/pull/185).
288
+ Thanks to [Mark Abramov](https://github.com/markiz) for reporting
289
+ the bug and providing a great example test case.
290
+ * Fix bug in handling of Faraday requests with multipart uploads.
291
+ Thanks to [Tyler Hunt](https://github.com/tylerhunt) for reporting
292
+ and fixing the bug.
293
+
294
+ ## 2.1.1 (April 24, 2012)
295
+
296
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.1.0...v2.1.1)
297
+
298
+ * Fix `:use_scenario_name` cucumber tag option so that it works properly
299
+ with multiple scenarios. Thanks to [Brent Snook](https://github.com/brentsnook)
300
+ for reporting this bug.
301
+ * Fix `:use_scenario_name` cucumber tag option so that it only uses the
302
+ first line of the scenario feature name. Cucumber includes all of the
303
+ pre-amble text in the feature name but that can create a ridiculously
304
+ long cassette name. Thanks to [Brent Snook](https://github.com/brentsnook)
305
+ for reporting this bug.
306
+
307
+ ## 2.1.0 (April 19, 2012)
308
+
309
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.0.1...v.2.1.0)
310
+
311
+ * Add new `:use_scenario_name` option to the cucumber tags API. This
312
+ allows you to use a generic tag (such as `@vcr`) and have the
313
+ cassettes named based on the feature and scenario rather than based on
314
+ the tag. Thanks to [Omer Rauchwerger](https://github.com/rauchy) for
315
+ the implementation and [Chad Jolly](https://github.com/cjolly) for the
316
+ initial idea and feedback.
317
+ * Add new `:decode_compressed_response` cassette option. When set to
318
+ true, VCR will decompress a gzipped or deflated response before
319
+ recording the cassette, in order to make it more human readable.
320
+ Thanks to [Mislav Marohnić](https://github.com/mislav) for the
321
+ idea and implementation.
322
+
323
+ ## 2.0.1 (March 30, 2012)
324
+
325
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.0.0...v2.0.1)
326
+
327
+ * Fix encoding logic to not attempt to encode the request or response
328
+ body on deserialization if there is no encoding specified. This should
329
+ allow cassettes recorded on 1.8 to work on 1.9. Thanks to
330
+ [Kevin Menard](https://github.com/nirvdrum) for reporting the bug.
331
+ * Fix Excon adapter to fix a bug with Excon 0.11 and greater. When you
332
+ passed a block to an excon request, the response body would not be
333
+ recorded.
334
+ * Fix Faraday middleware so that it plays back parallel requests
335
+ properly. Thanks to [Dave Weiser](https://github.com/davidann) for
336
+ reporting this bug.
337
+
338
+ ## 2.0.0 (March 2, 2012)
339
+
340
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.0.0.rc2...v2.0.0)
341
+
342
+ * Add some additional logged events for the `debug_logger`.
343
+ * Don't worry about stripping the standard port from the request URI on
344
+ playback. The standard port only needs to be stripped during recording;
345
+ for playback, it will have already been stripped. This allows people
346
+ to use the `filter_sensitive_data` option in a way that changes the URI;
347
+ before this change, doing so could result in `URI::InvalidURIError`.
348
+ Thanks to [Patrick Schmitz](https://github.com/bullfight) and
349
+ [Dan Thompson](https://github.com/danthompson) for reporting the issue
350
+ and helping diagnose it.
351
+ * Relax Excon dependency to include newly released 0.10.
352
+ * Relax Faraday dependency to include 0.8.
353
+ * Fix Faraday library hook so that it always does the version checking.
354
+
355
+ ## 2.0.0 RC 2 (February 23, 2012)
356
+
357
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.0.0.rc1...v2.0.0.rc2)
358
+
359
+ ## New Features
360
+
361
+ * Add YARD documentation for the public API. Thanks to
362
+ [Ben Oakes](https://github.com/benjaminoakes) for help with setting
363
+ this up.
364
+ * Fix `around_http_request` hook so that `request.proceed` returns
365
+ the response.
366
+ * Resolve `cassette_library_dir` to an absolute path. Thanks to
367
+ [Nate Clark](https://github.com/heythisisnate) for the suggestion.
368
+ * Add to the `VCR::Request` API in `before_http_request` and
369
+ `after_http_request` hooks so the request has query methods like
370
+ `#real?`, `#recordable?`, `#ignored?`, etc. Thanks to
371
+ [Nate Clark](https://github.com/heythisisnate) for the idea.
372
+ * Allow filters (objects that respond to `#to_proc`) to be passed
373
+ to `before_http_request` and `after_http_request`. This allows
374
+ an API like `before_http_request(:real?)` or
375
+ `after_http_request(lambda { |req| req.uri =~ /amazon/ })`.
376
+ * Add `debug_logger` config option. This can be used to
377
+ troubleshoot what VCR is doing.
378
+ * Update WebMock to version (1.8.0) that supports Excon stubbing.
379
+ * Store the encoding with the request & response bodies in the
380
+ serialized cassette.
381
+ * Add new `preserve_exact_body_bytes` option that base64 encodes the
382
+ request or response body in order to preserve the bytes exactly.
383
+ Thanks to [Jeff Pollard](https://github.com/Fluxx) for help
384
+ designing this feature and for code reviewing it.
385
+ * Update to and require latest Excon (0.9.6).
386
+
387
+ ## Bug Fixes
388
+
389
+ * Fix rspec metadata integration to allow the cassette name to be set
390
+ at the example group level and apply to multiple examples. Thanks to
391
+ [Paul Russell](https://github.com/pauljamesrussell) for reporting the
392
+ bug.
393
+ * Add missing `require 'vcr/version'` to the cassette migrator task.
394
+ If you tried the migration rake task with 2.0.0.rc1 and got a
395
+ `NoMethodError`, it should be fixed now.
396
+ * Update Excon dependency to 0.9.5; 0.9.5 includes an important bug
397
+ fix needed by VCR.
398
+ * Ensure the excon retry limit is honored properly.
399
+ * Ensure that the correct error class is raised by excon when stubbing
400
+ an unexpected status.
401
+ * Fix FakeWeb library hook so that it records the request body when
402
+ using `Net::HTTP.post_form`. Thanks to
403
+ [Retistic](https://github.com/Retistic) for reporting the bug.
404
+
405
+ ## 2.0.0 RC 1 (December 8, 2011)
406
+
407
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.0.0.beta2...v2.0.0.rc1)
408
+
409
+ * Add Faraday hook that automatically inserts the VCR middleware so that
410
+ you can use VCR with Faraday without needing to insert the middleware
411
+ yourself. Use `VCR.configure { |c| c.hook_into :faraday }`.
412
+ * Add `ignore_request` config option. Pass it a block that returns
413
+ true if the given request should be ignored.
414
+ * Improve the unhandled HTTP request error message so that it lists
415
+ different options for how to get VCR to handle it.
416
+ * Add {before,after,around}_http_request hooks.
417
+ * Updated WebMock integration and bumped up required version to 1.7.8.
418
+ * Test against latest Excon (0.7.9) and confirm that VCR works fine with
419
+ it.
420
+ * Add define_cassette_placeholder as an alias for filter_sensitive_data.
421
+ * Fix Faraday middleware so that it works properly when you use parallel
422
+ requests.
423
+ * Integrate VCR with RSpec metadata. Thanks to [Ryan Bates](https://github.com/ryanb)
424
+ for the great idea.
425
+
426
+ ## 2.0.0 Beta 2 (November 6, 2011)
427
+
428
+ [Full Changelog](http://github.com/vcr/vcr/compare/v2.0.0.beta1...v2.0.0.beta2)
429
+
430
+ * Update to (and require) Typhoeus 0.3.2.
431
+ * Fix a bug with `VCR.request_matchers.uri_without_param(:some_param)`
432
+ so that it properly handles URIs that have no parameters. Thanks to
433
+ [Sathya Sekaran](https://github.com/sfsekaran) for this fix.
434
+ * The cassette format has changed significantly:
435
+ * The HTTPInteractions are no longer normalized in a lossy fashion.
436
+ VCR 1.x converted all HTTP header keys to lowercase. VCR 2.0 no
437
+ longer does this because it is impossible to know what the original
438
+ casing was (i.e. given `etag`, was it originally `etag`, `ETag` or
439
+ `Etag`?). Also, some HTTP libraries add particular request headers
440
+ to every request, and these used to be ignored. The aren't anymore.
441
+ * The ruby struct objects are not directly serialized anymore.
442
+ Instead, only primitives (hashes, arrays, strings, integers) are
443
+ serialized. This allows swappable serializers and will allow other
444
+ tools to read and use a VCR cassette.
445
+ * Add new serializer API. VCR ships with YAML, Syck, Psych and JSON
446
+ serializers, and it is very simple to implement your own. The
447
+ serializer can be configured on a per-cassette basis.
448
+ * New `vcr:migrate_cassettes DIR=path/to/cassettes` rake task assists
449
+ with upgrading from VCR 1.x to 2.0.
450
+ * Cassettes now contain a `recorded_with` attribute. This should
451
+ allow the cassette structure to be updated more easily in the future
452
+ as the version number provides a means for easily migrating
453
+ cassettes.
454
+ * Add `recorded_at` to data serialized with an HTTPInteraction. This
455
+ allows the `:re_record_interval` cassette option to work more
456
+ accurately and no longer rely on the file modification time.
457
+
458
+ Note that VCR 1.x cassettes cannot be used with VCR 2.0. See the
459
+ upgrade notes for more info.
460
+
461
+ ## 2.0.0 Beta 1 (October 8, 2011)
462
+
463
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.11.3...v2.0.0.beta1)
464
+
465
+ ### Changed
466
+
467
+ * Previously, the last matching response in a cassette would
468
+ repeatedly playback if the same request kept being made. This is
469
+ no longer the case.
470
+ * The Faraday middleware has been rewritten.
471
+ * You no longer need to configure `stub_with :faraday` to use it.
472
+ * It has been updated to work in parallel mode.
473
+ * It no longer accepts a block and uses that to determine the
474
+ cassette. Instead, use `VCR.use_cassette` just like you would
475
+ with FakeWeb or WebMock.
476
+
477
+ ### Added
478
+
479
+ * Allow any callable (an object that responds to #call, such as a
480
+ lambda) to be used as a request matcher. Thanks to [Avdi Grimm](https://github.com/avdi)
481
+ for the idea.
482
+ * Add ability to register custom request matchers.
483
+ * Add `VCR.request_matchers.uri_without_param(:some_param)` to generate
484
+ a request matcher that matches on URI but ignores the named parameter.
485
+ * New `:allow_playback_repeats` cassette option preserves the old
486
+ playback repeat behavior. Thanks to [Avdi Grimm](https://github.com/avdi)
487
+ for the idea.
488
+ * New `:exclusive` cassette option allows a cassette to be exclusively
489
+ used rather than keeping the existing one active as a fallback. Thanks
490
+ to [Avdi Grimm](https://github.com/avdi) for the idea.
491
+
492
+ ### Removed
493
+
494
+ * Removed support for Ruby 1.8.6 and 1.9.1.
495
+ * Removed lots of old deprecated APIs.
496
+ * Removed support for manually changing the URI in a cassette to a regex.
497
+
498
+ ### Deprecated
499
+
500
+ * Deprecated `VCR.config` in favor of `VCR.configure`.
501
+ * Deprecated `VCR::Config` singleton module in favor of
502
+ `VCR::Configuration` class. The current configuration instance
503
+ can be accessed via `VCR.configuration`.
504
+ * Deprecated `stub_with` in favor of `hook_into`. The stubbing
505
+ adapters have been completely rewritten and are no longer an
506
+ implementation of the adapter design pattern. Instead they simply
507
+ use the named library to globally hook into every HTTP request.
508
+
509
+ ## 1.11.3 (August 31, 2011)
510
+
511
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.11.2...v1.11.3)
512
+
513
+ * Fix cassette serialization so that it does not include extra `ignored`
514
+ instance variable.
515
+
516
+ ## 1.11.2 (August 28, 2011)
517
+
518
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.11.1...v1.11.2)
519
+
520
+ * Updated rake, cucumber and aruba dev dependencies to latest releases.
521
+ * Fix all warnings originating from VCR. VCR is now warning-free!
522
+
523
+ ## 1.11.1 (August 18, 2011)
524
+
525
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.11.0...v1.11.1)
526
+
527
+ * Yanked 1.11.0 and rebuilt gem on 1.8.7 to deal with syck/psych
528
+ incompatibilties in gemspec.
529
+
530
+ ## 1.11.0 (August 18, 2011)
531
+
532
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.10.3...v1.11.0)
533
+
534
+ * Updates to work with WebMock 1.7.0.
535
+
536
+ ## 1.10.3 (July 21, 2011)
537
+
538
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.10.2...v1.10.3)
539
+
540
+ * Fix `:update_content_length_header` option so no error is raised if
541
+ a response body is nil. Bug reported by [jg](https://github.com/jg).
542
+
543
+ ## 1.10.2 (July 16, 2011)
544
+
545
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.10.1...v1.10.2)
546
+
547
+ * Yanked 1.10.1 and rebuilt gem on 1.8.7 to deal with syck/psych
548
+ incompatibilties in gemspec.
549
+
550
+ ## 1.10.1 (July 16, 2011)
551
+
552
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.10.0...v1.10.1)
553
+
554
+ * Fix typo in error message. Fix provided by [Bradley](https://github.com/bradleyisotope).
555
+ * Fix excon adapter to properly handle queries specified as a hash.
556
+ * Fix excon adapter to stub a response with a hash as excon expects.
557
+ Fix provided by [Wesley Beary](https://github.com/geemus).
558
+ * Fix excon adapter so that it records a response even when excon raises
559
+ an error due to an unexpected response.
560
+
561
+ ## 1.10.0 (May 18, 2011)
562
+
563
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.9.0...v1.10.0)
564
+
565
+ * Fix header normalization so that it properly handles nested arrays and
566
+ non-string values.
567
+ * Add cucumber scenario documenting how VCR sanitizes cassette names
568
+ to "normal" file names (i.e. only alphanumerics, no spaces).
569
+ * Add `:ignore_cassettes` option to `VCR.turn_off!`. This causes
570
+ cassette insertions to be ignored rather than to trigger an error.
571
+ Patch provided by [Justin Smestad](https://github.com/jsmestad).
572
+ * Fix rack middleware to make it threadsafe.
573
+ * Update to latest RSpec (rspec 2.6).
574
+
575
+ ## 1.9.0 (April 14, 2011)
576
+
577
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.8.0...v1.9.0)
578
+
579
+ * Add support for [Excon](https://github.com/geemus/excon).
580
+
581
+ ## 1.8.0 (March 31, 2011)
582
+
583
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.7.2...v1.8.0)
584
+
585
+ * Updated Faraday middleware to work with newly released Faraday 0.6.0.
586
+
587
+ ## 1.7.2 (March 26, 2011)
588
+
589
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.7.1...v1.7.2)
590
+
591
+ * Fixed Typhoeus adapter so headers are returned in the same form during
592
+ playback as they would be without VCR. Bug reported by
593
+ [Avdi Grimm](https://github.com/avdi).
594
+ * Fixed Faraday adapter so it treats response headers in the same way
595
+ Faraday itself does (i.e. with lowercase keys).
596
+
597
+ ## 1.7.1 (March 19, 2011)
598
+
599
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.7.0...v1.7.1)
600
+
601
+ * Fix Faraday adapter so that it properly normalizes query parameters
602
+ in the same way that Faraday itself does.
603
+
604
+ ## 1.7.0 (March 1, 2011)
605
+
606
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.6.0...v1.7.0)
607
+
608
+ * Use Psych for YAML serialization/deserialization when it is available.
609
+ Syck, Ruby's old YAML engine, will remove whitespace from some
610
+ strings. Bug reported by [Robert Poor](https://github.com/rdpoor).
611
+ * Add new `:update_content_length_header` cassette option. The option
612
+ will ensure the `content-length` header value matches the actual
613
+ response body length.
614
+ * Add new `:once` record mode. It operates like `:new_episodes` except
615
+ when the cassette file already exists, in which case it causes
616
+ new requests to raise an error. Feature suggested by
617
+ [Jamie Cobbett](https://github.com/jamiecobbett).
618
+ * Made `:once` the default record mode.
619
+ * Add new `filter_sensitive_data` configuration option. Feature
620
+ suggested by [Nathaniel Bibler](https://github.com/nbibler).
621
+ * Commit to [Semantic Versioning](http://semver.org/). The cucumber
622
+ features document the public API for the purposes of semver.
623
+ * Add support for CI builds using [travis-ci](http://travis-ci.org/myronmarston/vcr).
624
+ * Add support for running tests through `gem test vcr`. Visit
625
+ [test.rubygems.org](http://test.rubygems.org/gems/vcr) to see
626
+ the results.
627
+ * Fix cucumber support to use separate `Before` & `After` hooks rather than
628
+ a single `Around` hook because of a bug in cucumber that prevents
629
+ background steps from running within the `Around` hook.
630
+
631
+ ## 1.6.0 (February 3, 2011)
632
+
633
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.5.1...v1.6.0)
634
+
635
+ * Add new `ignore_hosts` configuration option that allows you to ignore
636
+ any host (not just localhost aliases, as the `ignore_localhost` option
637
+ works). Feature suggested by [Claudio Poli](https://github.com/masterkain).
638
+ * Upgraded to the latest Typhoeus (0.2.1).
639
+ * General code clean up and refactoring.
640
+
641
+ ## 1.5.1 (January 12, 2011)
642
+
643
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.5.0...v1.5.1)
644
+
645
+ * Fix response and request serialization so that the headers are raw
646
+ strings. This fixes intermittent YAML seg faults for paperclip
647
+ uploads to S3. Bug reported by [Rob Slifka](https://github.com/rslifka).
648
+
649
+ ## 1.5.0 (January 12, 2011)
650
+
651
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.4.0...v1.5.0)
652
+
653
+ * Fix VCR::Cassette so it does not raise an error when a cassette file is
654
+ empty. Bug reported and fixed by [Karl Baum](https://github.com/kbaum).
655
+ * Lots of code cleanup.
656
+ * Fix the stubbing adapters so that they use the cassette instance
657
+ rather than the cassette name to create and restore checkpoints.
658
+ * Raise an appropriate error when a nested cassette is inserted with the
659
+ same name as a cassette that is already in the stack (VCR's design
660
+ doesn't allow this and you would get weird errors later on).
661
+ * Raise an appropriate error when restoring a stubs checkpoint if the
662
+ checkpoint cannot be found.
663
+ * Add `before_record` and `before_playback` hooks. Idea and initial
664
+ implementation by [Oliver Searle-Barnes](https://github.com/opsb);
665
+ futher suggestions, testing and feedback by
666
+ [Nathaniel Bibler](https://github.com/nbibler).
667
+
668
+ ## 1.4.0 (December 3, 2010)
669
+
670
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.3.3...v1.4.0)
671
+
672
+ * Added support for making HTTP requests without a cassette (i.e. if you don't
673
+ want to use VCR for all of your test suite). There are a few ways to
674
+ enable this:
675
+ * In your `VCR.config` block, set `allow_http_connections_when_no_cassette`
676
+ to true to allow HTTP requests without a cassette.
677
+ * You can temporarily turn off VCR using `VCR.turned_off { ... }`.
678
+ * You can toggle VCR off and on with `VCR.turn_off!` and `VCR.turn_on!`.
679
+ * Fixed bug with `ignore_localhost` config option. Previously, an error would
680
+ be raised if it was set before the `stub_with` option.
681
+ * Added VCR::Middleware::Rack (see features/middleware/rack.feature for usage).
682
+ * Added support for Faraday (see features/middleware/faraday.feature for usage).
683
+
684
+ ## 1.3.3 (November 21, 2010)
685
+
686
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.3.2...v1.3.3)
687
+
688
+ * In specs, hit a local sinatra server rather than example.com. This makes
689
+ the specs faster and removes an external dependency. The specs can pass
690
+ without being online!
691
+ * Raise an explicit error when the http stubbing library is not configured
692
+ (rather than letting the user get a confusing error later).
693
+ * Test against the latest WebMock release (1.6.1) (no changes required).
694
+ * Fix a few cucumber scenarios so they pass on rubinius and jruby.
695
+
696
+ ## 1.3.2 (November 16, 2010)
697
+
698
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.3.1...v1.3.2)
699
+
700
+ * Fix serialized structs so that they are normalized andthey will be the same
701
+ regardless of which HTTP library made the request.
702
+ * Status "OK " => "OK"
703
+ * Body '' => nil
704
+ * Headers {} => nil
705
+ * Remove extraneous headers added by the HTTP lib (i.e. Typhoeus user agent)
706
+ * Rewrite cucumber features in a more documentation-oriented style.
707
+
708
+ ## 1.3.1 (November 11, 2010)
709
+
710
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.3.0...v1.3.1)
711
+
712
+ * Update WebMock adapter to work with (and require) newly released WebMock 1.6.0.
713
+
714
+ ## 1.3.0 (November 11, 2010)
715
+
716
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.2.0...v1.3.0)
717
+
718
+ * Moved documentation from README to [Wiki](http://github.com/vcr/vcr/wiki).
719
+ * Refactoring and code cleanup.
720
+ * Fix InternetConnection.available? so that it memoizes correctly when a connection is not available.
721
+ * Fix WebMock version checking to allow newly released 1.5.0 to be used without a warning.
722
+ * Add support for [Typhoeus](https://github.com/pauldix/typhoeus). Thanks to
723
+ [David Balatero](https://github.com/dbalatero) for making the necessary changes in Typhoeus
724
+ to support VCR.
725
+ * Remove FakeWeb/WebMock inference logic. You _must_ configure the http stubbing library
726
+ explicitly now.
727
+
728
+ ## 1.2.0 (October 13, 2010)
729
+
730
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.1.2...v1.2.0)
731
+
732
+ * Improved the `:all` record mode so that it keeps previously recorded interactions that do not match the
733
+ new recorded interactions. Previously, all of the previously recorded interactions were deleted.
734
+ * Added `:re_record_interval` cassette option. This option causes a cassette to be re-recorded when the
735
+ existing file is older than the specified interval.
736
+ * Improved RSpec support. Added #use_vcr_cassette RSpec macro method that sets up a cassette for an RSpec
737
+ example group.
738
+ * Fixed VCR/Net::HTTP/WebMock integration so that VCR no longer loads its Net::HTTP monkey patch when
739
+ WebMock is used, and relies upon WebMock's after_request callback to record Net::HTTP instead. This
740
+ fixes [a bug](http://github.com/vcr/vcr/issues/14) when using WebMock and Open URI.
741
+ * Consider 0.0.0.0 to be a localhost alias (previously only "localhost" and 127.0.0.1 were considered).
742
+ * Added spec and feature coverage for Curb integration. Works out of the box with no changes required
743
+ to VCR due to [Pete Higgins'](http://github.com/phiggins) great work to add Curb support to WebMock.
744
+ * Got specs and features to pass on rubinius.
745
+ * Changed WebMock version requirement to 1.4.0.
746
+
747
+ ## 1.1.2 (September 9, 2010)
748
+
749
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.1.1...v1.1.2)
750
+
751
+ * Fixed a minor bug with the WebMock integration: WebMock extends each `Net::HTTPResponse` with an extension
752
+ module after reading the body, and VCR was doing the same thing, leading to some slight deviance from
753
+ standard Net::HTTP behavior. The fix prevents VCR from adding the same extension to a `Net::HTTPResponse`
754
+ that has already been extende by WebMock.
755
+ * Fixed a minor bug in the `VCR::Net::HTTPResponse` module so that it correctly handles nil bodies (such as
756
+ for a HEAD request).
757
+ * Refactored `VCR::Net::HTTPResponse` module so it is implemented in a much simpler manner.
758
+ * Updated specs and features so they pass against the latest WebMock release (1.3.5).
759
+ * Minor documentation updates.
760
+
761
+ ## 1.1.1 (August 26, 2010)
762
+
763
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.1.0...v1.1.1)
764
+
765
+ * Updated to use and require FakeWeb 1.3.0. It includes a fix for a bug related to multiple values for the
766
+ same response header.
767
+ * Use new `FakeWeb::Utility.request_uri_as_string` method rather than our own logic to construct a request uri.
768
+ * Use new `FakeWeb.allow_net_connect = /url regex/` feature to power the `ignore_localhost` VCR option rather
769
+ then toggling `FakeWeb.allow_net_connect` in our Net::HTTP extension.
770
+ * Optimized `VCR.http_stubbing_adapter.stub_requests` a bit.
771
+ * Changed the http stubbing adapters to be modules rather than classes. They should never be instantiated and
772
+ don't really hold state, so a module is more appropriate.
773
+ * Warn when FakeWeb or WebMock are a minor or major version number ahead of the required version, as the new
774
+ version isn't known to work with VCR.
775
+
776
+ ## 1.1.0 (August 22, 2010)
777
+
778
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.0.3...v1.1.0)
779
+
780
+ * Added `:match_requests_on` cassette option, which determines how VCR matches requests.
781
+ * Removed VCR::TaskRunner and the corresponding rake task definition. The rake task migrated cassettes from the
782
+ 0.3.1 format to the 0.4+ format. If you are still on 0.3.1 or earlier, I recommend you upgrade to 0.4.1 first,
783
+ migrate your cassettes and deal with migration warnings, then upgrade to the current release.
784
+ * Added some code to VCR::Cassette.new to check the options passed to the cassette and raise an error if any
785
+ invalid options are passed.
786
+ * Optimized ERB rendering a bit. Rather than creating a new struct subclass for each time we render an ERB
787
+ cassette with locals, we keep a cache of reusable struct subclasses based on the desired attributes.
788
+ [Benchmarking](http://gist.github.com/512948) reveals this is about 28% faster.
789
+ * Upgraded tests to use em-http-request 0.2.10 rather than 0.2.7.
790
+
791
+ ## 1.0.3 (August 5, 2010)
792
+
793
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.0.2...v1.0.3)
794
+
795
+ * Upgraded VCR specs to RSpec 2.
796
+ * Updated `VCR::CucumberTags` so that it uses an `around` hook rather than a `before` hook and an `after` hook.
797
+ Around hooks were added to Cucumber in the 0.7.3 release, so you'll have to be on that version or higher to use
798
+ the `VCR::CucumberTags` feature.
799
+ * Updated the WebMock version requirement to 1.3.3 or greater. 1.3.2 and earlier versions did not properly handle
800
+ multiple value for the same response header.
801
+ * Miscellaneous documentation updates.
802
+
803
+ ## 1.0.2 (July 6, 2010)
804
+
805
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.0.1...v1.0.2)
806
+
807
+ * Fixed VCR to work with [rest-client](http://github.com/archiloque/rest-client). Rest-client extends the Net::HTTP
808
+ response body string with a module containing additional data, which got serialized to the cassette file YAML
809
+ and occasionally caused problems when the YAML was deserialized. Bug reported by
810
+ [Thibaud Guillaume-Gentil](http://github.com/thibaudgg).
811
+ * Setup bundler to manage development dependencies.
812
+
813
+ ## 1.0.1 (July 1, 2010)
814
+
815
+ [Full Changelog](http://github.com/vcr/vcr/compare/v1.0.0...v1.0.1)
816
+
817
+ * Fixed specs and features so they pass on MRI 1.9.2-preview3 and JRuby 1.5.1.
818
+ * Normalized response and request headers so that they are stored the same (i.e. lower case keys, arrays of values)
819
+ in the cassette yaml files, regardless of which HTTP library is used. This is the same way Net::HTTP normalizes
820
+ HTTP headers.
821
+ * Fixed `VCR.use_cassette` so that it doesn't eject a cassette if an exception occurs while inserting one.
822
+ * Fixed FakeWeb adapter so that it works for requests that use basic auth. Patch submitted by
823
+ [Eric Allam](http://github.com/rubymaverick).
824
+
825
+ ## 1.0.0 (June 22, 2010)
826
+
827
+ [Full Changelog](http://github.com/vcr/vcr/compare/v0.4.1...v1.0.0)
828
+
829
+ * New Features
830
+ * Added support for [HTTPClient](http://github.com/nahi/httpclient), [Patron](http://github.com/toland/patron) and
831
+ [em-http-request](http://github.com/igrigorik/em-http-request) when WebMock is used. Any future http libraries
832
+ WebMock supports should (theoretically, at least) work without any VCR code changes. Thanks to
833
+ [Bartosz Blimke](http://github.com/bblimke) for adding the necessary code to WebMock to make this happen!
834
+ * Added support for dynamic responses using ERB. A cassette will be evaluated as ERB before the YAML
835
+ is deserialized if you pass it an `:erb => true` option. You can pass variables using
836
+ `:erb => { :var1 => 'some value', :var2 => 'another value' }`.
837
+ * Added `ignore_localhost` configuration setting, which defaults to false. Setting it true does the following:
838
+ * Localhost requests will proceed as normal. The "Real HTTP connections are disabled" error will not occur.
839
+ * Localhost requests will not be recorded.
840
+ * Previously recorded localhost requests will not be replayed.
841
+ * Exposed the version number:
842
+ * `VCR.version` => string (in the format "major.minor.patch")
843
+ * `VCR.version.parts` => array of integers
844
+ * `VCR.version.major` => integer
845
+ * `VCR.version.minor` => integer
846
+ * `VCR.version.patch` => integer
847
+ * Added test coverage and documentation of using a regex for non-deterministic URLs (i.e. URLs that include
848
+ a timestamp as a query parameter). It turns out this feature worked before, and I just didn't realize it :).
849
+
850
+ * Breaking Changes
851
+ * The `:allow_real_http => lambda { |uri| ... }` cassette option has been removed. There was no way to get
852
+ this to work with the newly supported http libraries without extensive monkeypatching, and it was mostly
853
+ useful for localhost requests, which is more easily handled by the new `ignore_localhost` config setting.
854
+ * Removed methods and options that had been previously deprecated. If you're upgrading from an old version,
855
+ I recommend upgrading to 0.4.1 first, deal with all the deprecation warnings, then upgrade to 1.0.0.
856
+
857
+ * Misc Changes:
858
+ * Removed dependency on [jeweler](http://github.com/technicalpickles/jeweler). Manage the gemspec by hand instead.
859
+ * Removed some extensions that are no longer necessary.
860
+
861
+ ## 0.4.1 May 11, 2010
862
+
863
+ [Full Changelog](http://github.com/vcr/vcr/compare/v0.4.0...v0.4.1)
864
+
865
+ * Fixed a bug: when `Net::HTTPResponse#read_body` was called after VCR had read the body to record a new request,
866
+ it raised an error (`IOError: Net::HTTPResponse#read_body called twice`). My fix extends Net::HTTPResponse
867
+ so that it no longer raises this error.
868
+
869
+ ## 0.4.0 April 28, 2010
870
+
871
+ [Full Changelog](http://github.com/vcr/vcr/compare/v0.3.1...v0.4.0)
872
+
873
+ * Added support for webmock. All the fakeweb-specific code is now in an adapter (as is the webmock code).
874
+
875
+ * Changed the format of the VCR cassettes. The old format was tied directly to Net::HTTP, but webmock supports
876
+ other HTTP libraries and I plan to allow VCR to use them in the future. Note that this is a breaking change--your
877
+ old VCR cassettes from prior releases will not work with VCR 0.4.0. However, VCR provides a rake task to assist
878
+ you in migrating your cassettes to the new format. Simply add `load 'vcr/tasks/vcr.rake'` to your project's Rakefile,
879
+ and run:
880
+
881
+ $ rake vcr:migrate_cassettes DIR=path/to/cassete/library/directory
882
+
883
+ * The new cassette format records more information about the request (i.e. the request headers and body), so that it
884
+ can potentially be used with webmock in the future.
885
+
886
+ * Made most of `VCR::Cassette`'s methods private. I had forgotten to make the methods private before, and most of them
887
+ don't need to be exposed.
888
+
889
+ * Automatically disallow http connections using the appropriate setting of the http stubbing library (fakeweb or webmock).
890
+ This relieves users from the need to set the option themselves, so they hopefully aren't using either fakeweb or webmock
891
+ directly, making it much easier to switch between these.
892
+
893
+ * Change documentation from rdoc to markdown format.
894
+
895
+ * Lots of other refactoring.
896
+
897
+ ## 0.3.1 April 10, 2010
898
+
899
+ [Full Changelog](http://github.com/vcr/vcr/compare/v0.3.0...v0.3.1)
900
+
901
+ * Fixed a bug: when `Net::HTTP#request` was called with a block that had a return statement, the response was not being recorded.
902
+
903
+ ## 0.3.0 March 24, 2010
904
+
905
+ [Full Changelog](http://github.com/vcr/vcr/compare/v0.2.0...v0.3.0)
906
+
907
+ * Renamed a bunch of methods, replacing them with method names that more clearly fit the VCR/cassette metaphor:
908
+ * `VCR.create_cassette!` => `VCR.insert_cassette`
909
+ * `VCR.destroy_cassette!` => `VCR.eject_cassette`
910
+ * `VCR.with_cassette` => `VCR.use_cassette`
911
+ * `VCR::Cassette#destroy!` => `VCR::Cassette#eject`
912
+ * `VCR::Cassette#cache_file` => `VCR::Cassette#file`
913
+ * `VCR::Config.cache_dir` => `VCR::Config.cassette_library_dir`
914
+ * `:unregistered` record mode => `:new_episodes` record mode
915
+
916
+ * All the old methods still work, but you'll get deprecation warnings.
917
+
918
+ ## 0.2.0 March 9, 2010
919
+
920
+ [Full Changelog](http://github.com/vcr/vcr/compare/v0.1.2...v0.2.0)
921
+
922
+ * Added `:allow_real_http` cassette option, which allows VCR to work with capybara and a javascript driver.
923
+ Bug reported by [Ben Hutton](http://github.com/benhutton).
924
+
925
+ * Deprecated the `default_cassette_record_mode` option. Use `default_cassette_options[:record_mode]` instead.
926
+
927
+ ## 0.1.2 March 4, 2010
928
+
929
+ [Full Changelog](http://github.com/vcr/vcr/compare/v0.1.1...v0.1.2)
930
+
931
+ * Added explanatory note about VCR to `FakeWeb::NetConnectNotAllowedError#message`.
932
+
933
+ * Got things to work for when a cassette records multiple requests made to the same URL with the same HTTP verb,
934
+ but different responses. We have to register an array of responses with fakeweb.
935
+
936
+ * Fixed our `Net::HTTP` monkey patch so that it only stores the recorded response once per request.
937
+ Internally, `Net::HTTP#request` recursively calls itself (passing slightly different arguments) in certain circumstances.
938
+
939
+ ## 0.1.1 February 25, 2010
940
+
941
+ [Full Changelog](http://github.com/vcr/vcr/compare/v0.1.0...v0.1.1)
942
+
943
+ * Handle asynchronous HTTP requests (such as for mechanize). Bug reported by [Thibaud Guillaume-Gentil](http://github.com/thibaudgg).
944
+
945
+ ## 0.1.0 February 25, 2010
946
+
947
+ [Full Changelog](http://github.com/vcr/vcr/compare/d2577f79247d7db60bf160881b1b64e9fa10e4fd...v0.1.0)
948
+
949
+ * Initial release. Basic recording and replaying of responses works.