whos_dated_who 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1938) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +22 -0
  3. data/.rspec +3 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +89 -0
  7. data/Rakefile +2 -0
  8. data/bin/whos_dated_who +6 -0
  9. data/lib/whos_dated_who/bing_client.rb +15 -0
  10. data/lib/whos_dated_who/biography.rb +48 -0
  11. data/lib/whos_dated_who/cli.rb +18 -0
  12. data/lib/whos_dated_who/client.rb +17 -0
  13. data/lib/whos_dated_who/parser.rb +60 -0
  14. data/lib/whos_dated_who/version.rb +3 -0
  15. data/lib/whos_dated_who.rb +11 -0
  16. data/spec/fixtures/scarlett-johansson.resp +3361 -0
  17. data/spec/spec_helper.rb +25 -0
  18. data/spec/whos_dated_who/client_spec.rb +7 -0
  19. data/spec/whos_dated_who/parser_spec.rb +53 -0
  20. data/vendor/bundle/bin/coderay +23 -0
  21. data/vendor/bundle/bin/htmldiff +25 -0
  22. data/vendor/bundle/bin/kill-pry-rescue +23 -0
  23. data/vendor/bundle/bin/ldiff +25 -0
  24. data/vendor/bundle/bin/nokogiri +23 -0
  25. data/vendor/bundle/bin/pry +23 -0
  26. data/vendor/bundle/bin/rake +23 -0
  27. data/vendor/bundle/bin/rescue +23 -0
  28. data/vendor/bundle/bin/rspec +23 -0
  29. data/vendor/bundle/bin/safe_yaml +23 -0
  30. data/vendor/bundle/bin/thor +23 -0
  31. data/vendor/bundle/build_info/activesupport-4.1.1.info +1 -0
  32. data/vendor/bundle/build_info/addressable-2.3.6.info +1 -0
  33. data/vendor/bundle/build_info/coderay-1.1.0.info +1 -0
  34. data/vendor/bundle/build_info/crack-0.4.2.info +1 -0
  35. data/vendor/bundle/build_info/diff-lcs-1.2.5.info +1 -0
  36. data/vendor/bundle/build_info/faraday-0.9.0.info +1 -0
  37. data/vendor/bundle/build_info/hashie-3.0.0.info +1 -0
  38. data/vendor/bundle/build_info/i18n-0.6.9.info +1 -0
  39. data/vendor/bundle/build_info/interception-0.5.info +1 -0
  40. data/vendor/bundle/build_info/method_source-0.8.2.info +1 -0
  41. data/vendor/bundle/build_info/mini_portile-0.6.0.info +1 -0
  42. data/vendor/bundle/build_info/minitest-5.3.4.info +1 -0
  43. data/vendor/bundle/build_info/multipart-post-2.0.0.info +1 -0
  44. data/vendor/bundle/build_info/nokogiri-1.6.2.1.info +1 -0
  45. data/vendor/bundle/build_info/pry-0.10.0.info +1 -0
  46. data/vendor/bundle/build_info/pry-rescue-1.4.1.info +1 -0
  47. data/vendor/bundle/build_info/rake-10.3.2.info +1 -0
  48. data/vendor/bundle/build_info/rspec-3.0.0.info +1 -0
  49. data/vendor/bundle/build_info/rspec-core-3.0.1.info +1 -0
  50. data/vendor/bundle/build_info/rspec-expectations-3.0.1.info +1 -0
  51. data/vendor/bundle/build_info/rspec-mocks-3.0.1.info +1 -0
  52. data/vendor/bundle/build_info/rspec-support-3.0.0.info +1 -0
  53. data/vendor/bundle/build_info/safe_yaml-1.0.3.info +1 -0
  54. data/vendor/bundle/build_info/searchbing-0.2.4.info +1 -0
  55. data/vendor/bundle/build_info/slop-3.5.0.info +1 -0
  56. data/vendor/bundle/build_info/thor-0.19.1.info +1 -0
  57. data/vendor/bundle/build_info/thread_safe-0.3.4.info +1 -0
  58. data/vendor/bundle/build_info/tzinfo-1.2.1.info +1 -0
  59. data/vendor/bundle/build_info/webmock-1.18.0.info +1 -0
  60. data/vendor/bundle/extensions/x86_64-darwin-13/2.1.0-static/interception-0.5/gem.build_complete +0 -0
  61. data/vendor/bundle/extensions/x86_64-darwin-13/2.1.0-static/interception-0.5/gem_make.out +10 -0
  62. data/vendor/bundle/extensions/x86_64-darwin-13/2.1.0-static/nokogiri-1.6.2.1/gem.build_complete +0 -0
  63. data/vendor/bundle/extensions/x86_64-darwin-13/2.1.0-static/nokogiri-1.6.2.1/gem_make.out +270 -0
  64. data/vendor/bundle/gems/activesupport-4.1.1/CHANGELOG.md +635 -0
  65. data/vendor/bundle/gems/activesupport-4.1.1/MIT-LICENSE +20 -0
  66. data/vendor/bundle/gems/activesupport-4.1.1/README.rdoc +35 -0
  67. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/all.rb +3 -0
  68. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/backtrace_cleaner.rb +103 -0
  69. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/benchmarkable.rb +49 -0
  70. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/builder.rb +6 -0
  71. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/cache/file_store.rb +185 -0
  72. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/cache/mem_cache_store.rb +198 -0
  73. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/cache/memory_store.rb +172 -0
  74. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/cache/null_store.rb +44 -0
  75. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/cache/strategy/local_cache.rb +159 -0
  76. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/cache/strategy/local_cache_middleware.rb +39 -0
  77. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/cache.rb +719 -0
  78. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/callbacks.rb +745 -0
  79. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/concern.rb +134 -0
  80. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/concurrency/latch.rb +27 -0
  81. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/configurable.rb +147 -0
  82. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/array/access.rb +56 -0
  83. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/array/conversions.rb +209 -0
  84. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/array/extract_options.rb +29 -0
  85. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/array/grouping.rb +111 -0
  86. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/array/prepend_and_append.rb +7 -0
  87. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/array/wrap.rb +45 -0
  88. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/array.rb +6 -0
  89. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/benchmark.rb +14 -0
  90. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/big_decimal/conversions.rb +16 -0
  91. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/big_decimal/yaml_conversions.rb +14 -0
  92. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/big_decimal.rb +1 -0
  93. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/class/attribute.rb +127 -0
  94. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/class/attribute_accessors.rb +4 -0
  95. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/class/delegating_attributes.rb +41 -0
  96. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/class/subclasses.rb +42 -0
  97. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/class.rb +3 -0
  98. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/date/acts_like.rb +8 -0
  99. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/date/calculations.rb +143 -0
  100. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/date/conversions.rb +88 -0
  101. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/date/zones.rb +6 -0
  102. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/date.rb +5 -0
  103. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/date_and_time/calculations.rb +251 -0
  104. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/date_and_time/zones.rb +41 -0
  105. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/date_time/acts_like.rb +14 -0
  106. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/date_time/calculations.rb +161 -0
  107. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/date_time/conversions.rb +103 -0
  108. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/date_time/zones.rb +6 -0
  109. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/date_time.rb +4 -0
  110. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/enumerable.rb +80 -0
  111. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/file/atomic.rb +63 -0
  112. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/file.rb +1 -0
  113. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/hash/compact.rb +20 -0
  114. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/hash/conversions.rb +244 -0
  115. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/hash/deep_merge.rb +27 -0
  116. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/hash/except.rb +15 -0
  117. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/hash/indifferent_access.rb +23 -0
  118. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/hash/keys.rb +140 -0
  119. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/hash/reverse_merge.rb +22 -0
  120. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/hash/slice.rb +42 -0
  121. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/hash.rb +8 -0
  122. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/integer/inflections.rb +29 -0
  123. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/integer/multiple.rb +10 -0
  124. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/integer/time.rb +44 -0
  125. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/integer.rb +3 -0
  126. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  127. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/kernel/debugger.rb +10 -0
  128. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/kernel/reporting.rb +110 -0
  129. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/kernel/singleton_class.rb +6 -0
  130. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/kernel.rb +4 -0
  131. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/load_error.rb +25 -0
  132. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/marshal.rb +21 -0
  133. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/module/aliasing.rb +69 -0
  134. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/module/anonymous.rb +19 -0
  135. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/module/attr_internal.rb +39 -0
  136. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/module/attribute_accessors.rb +212 -0
  137. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/module/concerning.rb +135 -0
  138. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/module/delegation.rb +209 -0
  139. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/module/deprecation.rb +23 -0
  140. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/module/introspection.rb +62 -0
  141. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/module/method_transplanting.rb +11 -0
  142. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/module/qualified_const.rb +52 -0
  143. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/module/reachable.rb +8 -0
  144. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/module/remove_method.rb +12 -0
  145. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/module.rb +11 -0
  146. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/name_error.rb +18 -0
  147. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/numeric/bytes.rb +44 -0
  148. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/numeric/conversions.rb +135 -0
  149. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/numeric/time.rb +87 -0
  150. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/numeric.rb +3 -0
  151. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object/acts_like.rb +10 -0
  152. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object/blank.rb +131 -0
  153. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object/conversions.rb +4 -0
  154. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object/deep_dup.rb +46 -0
  155. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object/duplicable.rb +90 -0
  156. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object/inclusion.rb +27 -0
  157. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object/instance_variables.rb +28 -0
  158. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object/json.rb +197 -0
  159. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object/to_json.rb +5 -0
  160. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object/to_param.rb +62 -0
  161. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object/to_query.rb +32 -0
  162. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object/try.rb +78 -0
  163. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object/with_options.rb +42 -0
  164. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object.rb +14 -0
  165. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/range/conversions.rb +19 -0
  166. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/range/each.rb +23 -0
  167. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/range/include_range.rb +23 -0
  168. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/range/overlaps.rb +8 -0
  169. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/range.rb +4 -0
  170. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/regexp.rb +5 -0
  171. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/string/access.rb +104 -0
  172. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/string/behavior.rb +6 -0
  173. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/string/conversions.rb +56 -0
  174. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/string/exclude.rb +11 -0
  175. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/string/filters.rb +65 -0
  176. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/string/indent.rb +43 -0
  177. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/string/inflections.rb +214 -0
  178. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/string/inquiry.rb +13 -0
  179. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/string/multibyte.rb +49 -0
  180. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/string/output_safety.rb +239 -0
  181. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/string/starts_ends_with.rb +4 -0
  182. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/string/strip.rb +26 -0
  183. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/string/zones.rb +14 -0
  184. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/string.rb +13 -0
  185. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/struct.rb +6 -0
  186. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/thread.rb +79 -0
  187. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/time/acts_like.rb +8 -0
  188. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/time/calculations.rb +257 -0
  189. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/time/conversions.rb +65 -0
  190. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/time/marshal.rb +30 -0
  191. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/time/zones.rb +78 -0
  192. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/time.rb +5 -0
  193. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/uri.rb +26 -0
  194. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext.rb +3 -0
  195. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/dependencies/autoload.rb +77 -0
  196. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/dependencies.rb +748 -0
  197. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/deprecation/behaviors.rb +76 -0
  198. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/deprecation/instance_delegator.rb +24 -0
  199. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/deprecation/method_wrappers.rb +44 -0
  200. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/deprecation/proxy_wrappers.rb +126 -0
  201. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/deprecation/reporting.rb +94 -0
  202. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/deprecation.rb +43 -0
  203. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/descendants_tracker.rb +60 -0
  204. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/duration.rb +114 -0
  205. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/file_update_checker.rb +137 -0
  206. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/file_watcher.rb +36 -0
  207. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/gem_version.rb +15 -0
  208. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/gzip.rb +36 -0
  209. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/hash_with_indifferent_access.rb +271 -0
  210. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/i18n.rb +13 -0
  211. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/i18n_railtie.rb +96 -0
  212. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/inflections.rb +70 -0
  213. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/inflector/inflections.rb +211 -0
  214. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/inflector/methods.rb +359 -0
  215. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/inflector/transliterate.rb +97 -0
  216. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/inflector.rb +7 -0
  217. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/json/decoding.rb +73 -0
  218. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/json/encoding.rb +172 -0
  219. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/json.rb +2 -0
  220. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/key_generator.rb +73 -0
  221. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/lazy_load_hooks.rb +48 -0
  222. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/locale/en.yml +133 -0
  223. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/log_subscriber/test_helper.rb +104 -0
  224. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/log_subscriber.rb +109 -0
  225. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/logger.rb +57 -0
  226. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/logger_silence.rb +24 -0
  227. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/message_encryptor.rb +106 -0
  228. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/message_verifier.rb +73 -0
  229. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/multibyte/chars.rb +222 -0
  230. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/multibyte/unicode.rb +390 -0
  231. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/multibyte.rb +21 -0
  232. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/notifications/fanout.rb +152 -0
  233. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/notifications/instrumenter.rb +73 -0
  234. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/notifications.rb +207 -0
  235. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/number_helper/number_converter.rb +182 -0
  236. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/number_helper/number_to_currency_converter.rb +46 -0
  237. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/number_helper/number_to_delimited_converter.rb +21 -0
  238. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/number_helper/number_to_human_converter.rb +66 -0
  239. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/number_helper/number_to_human_size_converter.rb +58 -0
  240. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/number_helper/number_to_percentage_converter.rb +12 -0
  241. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/number_helper/number_to_phone_converter.rb +49 -0
  242. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/number_helper/number_to_rounded_converter.rb +91 -0
  243. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/number_helper.rb +346 -0
  244. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/option_merger.rb +25 -0
  245. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/ordered_hash.rb +48 -0
  246. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/ordered_options.rb +67 -0
  247. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/per_thread_registry.rb +53 -0
  248. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/proxy_object.rb +13 -0
  249. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/rails.rb +27 -0
  250. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/railtie.rb +46 -0
  251. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/rescuable.rb +119 -0
  252. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/string_inquirer.rb +26 -0
  253. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/subscriber.rb +116 -0
  254. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/tagged_logging.rb +76 -0
  255. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/test_case.rb +66 -0
  256. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/testing/assertions.rb +97 -0
  257. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/testing/autorun.rb +5 -0
  258. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/testing/constant_lookup.rb +54 -0
  259. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/testing/declarative.rb +50 -0
  260. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/testing/deprecation.rb +35 -0
  261. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/testing/isolation.rb +91 -0
  262. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/testing/setup_and_teardown.rb +50 -0
  263. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/testing/tagged_logging.rb +25 -0
  264. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/testing/time_helpers.rb +127 -0
  265. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/time.rb +20 -0
  266. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/time_with_zone.rb +402 -0
  267. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/values/time_zone.rb +421 -0
  268. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/values/unicode_tables.dat +0 -0
  269. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/version.rb +8 -0
  270. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/xml_mini/jdom.rb +180 -0
  271. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/xml_mini/libxml.rb +79 -0
  272. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/xml_mini/libxmlsax.rb +85 -0
  273. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/xml_mini/nokogiri.rb +83 -0
  274. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/xml_mini/nokogirisax.rb +87 -0
  275. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/xml_mini/rexml.rb +129 -0
  276. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support/xml_mini.rb +191 -0
  277. data/vendor/bundle/gems/activesupport-4.1.1/lib/active_support.rb +75 -0
  278. data/vendor/bundle/gems/addressable-2.3.6/CHANGELOG.md +170 -0
  279. data/vendor/bundle/gems/addressable-2.3.6/Gemfile +28 -0
  280. data/vendor/bundle/gems/addressable-2.3.6/LICENSE.txt +202 -0
  281. data/vendor/bundle/gems/addressable-2.3.6/README.md +102 -0
  282. data/vendor/bundle/gems/addressable-2.3.6/Rakefile +37 -0
  283. data/vendor/bundle/gems/addressable-2.3.6/data/unicode.data +0 -0
  284. data/vendor/bundle/gems/addressable-2.3.6/lib/addressable/idna/native.rb +43 -0
  285. data/vendor/bundle/gems/addressable-2.3.6/lib/addressable/idna/pure.rb +669 -0
  286. data/vendor/bundle/gems/addressable-2.3.6/lib/addressable/idna.rb +25 -0
  287. data/vendor/bundle/gems/addressable-2.3.6/lib/addressable/template.rb +938 -0
  288. data/vendor/bundle/gems/addressable-2.3.6/lib/addressable/uri.rb +2351 -0
  289. data/vendor/bundle/gems/addressable-2.3.6/lib/addressable/version.rb +30 -0
  290. data/vendor/bundle/gems/addressable-2.3.6/spec/addressable/idna_spec.rb +238 -0
  291. data/vendor/bundle/gems/addressable-2.3.6/spec/addressable/net_http_compat_spec.rb +28 -0
  292. data/vendor/bundle/gems/addressable-2.3.6/spec/addressable/template_spec.rb +1328 -0
  293. data/vendor/bundle/gems/addressable-2.3.6/spec/addressable/uri_spec.rb +5940 -0
  294. data/vendor/bundle/gems/addressable-2.3.6/spec/spec_helper.rb +6 -0
  295. data/vendor/bundle/gems/addressable-2.3.6/tasks/clobber.rake +2 -0
  296. data/vendor/bundle/gems/addressable-2.3.6/tasks/gem.rake +86 -0
  297. data/vendor/bundle/gems/addressable-2.3.6/tasks/git.rake +45 -0
  298. data/vendor/bundle/gems/addressable-2.3.6/tasks/metrics.rake +22 -0
  299. data/vendor/bundle/gems/addressable-2.3.6/tasks/rspec.rake +58 -0
  300. data/vendor/bundle/gems/addressable-2.3.6/tasks/rubyforge.rake +73 -0
  301. data/vendor/bundle/gems/addressable-2.3.6/tasks/yard.rake +27 -0
  302. data/vendor/bundle/gems/addressable-2.3.6/website/index.html +110 -0
  303. data/vendor/bundle/gems/coderay-1.1.0/README_INDEX.rdoc +123 -0
  304. data/vendor/bundle/gems/coderay-1.1.0/Rakefile +37 -0
  305. data/vendor/bundle/gems/coderay-1.1.0/bin/coderay +215 -0
  306. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/duo.rb +81 -0
  307. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoder.rb +201 -0
  308. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/_map.rb +17 -0
  309. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/comment_filter.rb +25 -0
  310. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/count.rb +39 -0
  311. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/debug.rb +49 -0
  312. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/debug_lint.rb +63 -0
  313. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/div.rb +23 -0
  314. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/filter.rb +58 -0
  315. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/html/css.rb +65 -0
  316. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/html/numbering.rb +108 -0
  317. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/html/output.rb +166 -0
  318. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/html.rb +332 -0
  319. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/json.rb +83 -0
  320. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/lines_of_code.rb +45 -0
  321. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/lint.rb +59 -0
  322. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/null.rb +18 -0
  323. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/page.rb +24 -0
  324. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/span.rb +23 -0
  325. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/statistic.rb +95 -0
  326. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/terminal.rb +195 -0
  327. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/text.rb +46 -0
  328. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/token_kind_filter.rb +111 -0
  329. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/xml.rb +72 -0
  330. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/yaml.rb +50 -0
  331. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/for_redcloth.rb +95 -0
  332. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/helpers/file_type.rb +151 -0
  333. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/helpers/plugin.rb +274 -0
  334. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/helpers/word_list.rb +72 -0
  335. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanner.rb +355 -0
  336. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/_map.rb +24 -0
  337. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/c.rb +189 -0
  338. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/clojure.rb +217 -0
  339. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/cpp.rb +215 -0
  340. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/css.rb +196 -0
  341. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/debug.rb +75 -0
  342. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/delphi.rb +144 -0
  343. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/diff.rb +221 -0
  344. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/erb.rb +81 -0
  345. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/go.rb +208 -0
  346. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/groovy.rb +268 -0
  347. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/haml.rb +168 -0
  348. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/html.rb +275 -0
  349. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/java/builtin_types.rb +421 -0
  350. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/java.rb +174 -0
  351. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/java_script.rb +237 -0
  352. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/json.rb +98 -0
  353. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/lua.rb +280 -0
  354. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/php.rb +527 -0
  355. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/python.rb +287 -0
  356. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/raydebug.rb +75 -0
  357. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/ruby/patterns.rb +178 -0
  358. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/ruby/string_state.rb +71 -0
  359. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/ruby.rb +470 -0
  360. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/sass.rb +232 -0
  361. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/sql.rb +177 -0
  362. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/taskpaper.rb +36 -0
  363. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/text.rb +26 -0
  364. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/xml.rb +17 -0
  365. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/scanners/yaml.rb +140 -0
  366. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/style.rb +23 -0
  367. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/styles/_map.rb +7 -0
  368. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/styles/alpha.rb +152 -0
  369. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/token_kinds.rb +85 -0
  370. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/tokens.rb +161 -0
  371. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/tokens_proxy.rb +55 -0
  372. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay/version.rb +3 -0
  373. data/vendor/bundle/gems/coderay-1.1.0/lib/coderay.rb +284 -0
  374. data/vendor/bundle/gems/coderay-1.1.0/test/functional/basic.rb +318 -0
  375. data/vendor/bundle/gems/coderay-1.1.0/test/functional/examples.rb +129 -0
  376. data/vendor/bundle/gems/coderay-1.1.0/test/functional/for_redcloth.rb +78 -0
  377. data/vendor/bundle/gems/coderay-1.1.0/test/functional/suite.rb +15 -0
  378. data/vendor/bundle/gems/crack-0.4.2/.gitignore +8 -0
  379. data/vendor/bundle/gems/crack-0.4.2/Gemfile +6 -0
  380. data/vendor/bundle/gems/crack-0.4.2/History +25 -0
  381. data/vendor/bundle/gems/crack-0.4.2/LICENSE +20 -0
  382. data/vendor/bundle/gems/crack-0.4.2/README.md +44 -0
  383. data/vendor/bundle/gems/crack-0.4.2/crack.gemspec +20 -0
  384. data/vendor/bundle/gems/crack-0.4.2/lib/crack/json.rb +107 -0
  385. data/vendor/bundle/gems/crack-0.4.2/lib/crack/util.rb +17 -0
  386. data/vendor/bundle/gems/crack-0.4.2/lib/crack/version.rb +3 -0
  387. data/vendor/bundle/gems/crack-0.4.2/lib/crack/xml.rb +238 -0
  388. data/vendor/bundle/gems/crack-0.4.2/lib/crack.rb +7 -0
  389. data/vendor/bundle/gems/crack-0.4.2/script/bootstrap +21 -0
  390. data/vendor/bundle/gems/crack-0.4.2/script/release +42 -0
  391. data/vendor/bundle/gems/crack-0.4.2/script/test +25 -0
  392. data/vendor/bundle/gems/crack-0.4.2/test/data/twittersearch-firefox.json +1 -0
  393. data/vendor/bundle/gems/crack-0.4.2/test/data/twittersearch-ie.json +1 -0
  394. data/vendor/bundle/gems/crack-0.4.2/test/hash_test.rb +26 -0
  395. data/vendor/bundle/gems/crack-0.4.2/test/json_test.rb +80 -0
  396. data/vendor/bundle/gems/crack-0.4.2/test/parser_test.rb +27 -0
  397. data/vendor/bundle/gems/crack-0.4.2/test/string_test.rb +31 -0
  398. data/vendor/bundle/gems/crack-0.4.2/test/test_helper.rb +3 -0
  399. data/vendor/bundle/gems/crack-0.4.2/test/xml_test.rb +514 -0
  400. data/vendor/bundle/gems/diff-lcs-1.2.5/.autotest +3 -0
  401. data/vendor/bundle/gems/diff-lcs-1.2.5/.gemtest +0 -0
  402. data/vendor/bundle/gems/diff-lcs-1.2.5/.hoerc +2 -0
  403. data/vendor/bundle/gems/diff-lcs-1.2.5/.rspec +2 -0
  404. data/vendor/bundle/gems/diff-lcs-1.2.5/.travis.yml +22 -0
  405. data/vendor/bundle/gems/diff-lcs-1.2.5/Contributing.rdoc +64 -0
  406. data/vendor/bundle/gems/diff-lcs-1.2.5/Gemfile +20 -0
  407. data/vendor/bundle/gems/diff-lcs-1.2.5/History.rdoc +152 -0
  408. data/vendor/bundle/gems/diff-lcs-1.2.5/License.rdoc +39 -0
  409. data/vendor/bundle/gems/diff-lcs-1.2.5/Manifest.txt +38 -0
  410. data/vendor/bundle/gems/diff-lcs-1.2.5/README.rdoc +85 -0
  411. data/vendor/bundle/gems/diff-lcs-1.2.5/Rakefile +41 -0
  412. data/vendor/bundle/gems/diff-lcs-1.2.5/autotest/discover.rb +1 -0
  413. data/vendor/bundle/gems/diff-lcs-1.2.5/bin/htmldiff +32 -0
  414. data/vendor/bundle/gems/diff-lcs-1.2.5/bin/ldiff +6 -0
  415. data/vendor/bundle/gems/diff-lcs-1.2.5/docs/COPYING.txt +339 -0
  416. data/vendor/bundle/gems/diff-lcs-1.2.5/docs/artistic.txt +127 -0
  417. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/array.rb +7 -0
  418. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/block.rb +37 -0
  419. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/callbacks.rb +322 -0
  420. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/change.rb +177 -0
  421. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/htmldiff.rb +149 -0
  422. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/hunk.rb +276 -0
  423. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/internals.rb +301 -0
  424. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/ldiff.rb +195 -0
  425. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/string.rb +5 -0
  426. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs.rb +805 -0
  427. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff-lcs.rb +3 -0
  428. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/change_spec.rb +65 -0
  429. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/diff_spec.rb +47 -0
  430. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/hunk_spec.rb +72 -0
  431. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/issues_spec.rb +24 -0
  432. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/lcs_spec.rb +54 -0
  433. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/patch_spec.rb +414 -0
  434. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/sdiff_spec.rb +214 -0
  435. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/spec_helper.rb +290 -0
  436. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/traverse_balanced_spec.rb +310 -0
  437. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/traverse_sequences_spec.rb +139 -0
  438. data/vendor/bundle/gems/faraday-0.9.0/.document +6 -0
  439. data/vendor/bundle/gems/faraday-0.9.0/CHANGELOG.md +15 -0
  440. data/vendor/bundle/gems/faraday-0.9.0/CONTRIBUTING.md +36 -0
  441. data/vendor/bundle/gems/faraday-0.9.0/Gemfile +29 -0
  442. data/vendor/bundle/gems/faraday-0.9.0/LICENSE.md +20 -0
  443. data/vendor/bundle/gems/faraday-0.9.0/README.md +216 -0
  444. data/vendor/bundle/gems/faraday-0.9.0/Rakefile +71 -0
  445. data/vendor/bundle/gems/faraday-0.9.0/faraday.gemspec +34 -0
  446. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/adapter/em_http.rb +237 -0
  447. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/adapter/em_http_ssl_patch.rb +56 -0
  448. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/adapter/em_synchrony/parallel_manager.rb +66 -0
  449. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/adapter/em_synchrony.rb +92 -0
  450. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/adapter/excon.rb +80 -0
  451. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/adapter/httpclient.rb +106 -0
  452. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/adapter/net_http.rb +124 -0
  453. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/adapter/net_http_persistent.rb +47 -0
  454. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/adapter/patron.rb +68 -0
  455. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/adapter/rack.rb +58 -0
  456. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/adapter/test.rb +162 -0
  457. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/adapter/typhoeus.rb +123 -0
  458. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/adapter.rb +46 -0
  459. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/autoload.rb +85 -0
  460. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/connection.rb +432 -0
  461. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/error.rb +53 -0
  462. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/middleware.rb +37 -0
  463. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/options.rb +350 -0
  464. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/parameters.rb +193 -0
  465. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/rack_builder.rb +212 -0
  466. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/request/authorization.rb +42 -0
  467. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/request/basic_authentication.rb +13 -0
  468. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/request/instrumentation.rb +36 -0
  469. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/request/multipart.rb +63 -0
  470. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/request/retry.rb +118 -0
  471. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/request/token_authentication.rb +15 -0
  472. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/request/url_encoded.rb +36 -0
  473. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/request.rb +92 -0
  474. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/response/logger.rb +34 -0
  475. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/response/raise_error.rb +21 -0
  476. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/response.rb +93 -0
  477. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/upload_io.rb +67 -0
  478. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday/utils.rb +297 -0
  479. data/vendor/bundle/gems/faraday-0.9.0/lib/faraday.rb +268 -0
  480. data/vendor/bundle/gems/faraday-0.9.0/script/console +7 -0
  481. data/vendor/bundle/gems/faraday-0.9.0/script/generate_certs +42 -0
  482. data/vendor/bundle/gems/faraday-0.9.0/script/package +7 -0
  483. data/vendor/bundle/gems/faraday-0.9.0/script/proxy-server +42 -0
  484. data/vendor/bundle/gems/faraday-0.9.0/script/release +17 -0
  485. data/vendor/bundle/gems/faraday-0.9.0/script/server +36 -0
  486. data/vendor/bundle/gems/faraday-0.9.0/script/test +172 -0
  487. data/vendor/bundle/gems/faraday-0.9.0/test/adapters/default_test.rb +14 -0
  488. data/vendor/bundle/gems/faraday-0.9.0/test/adapters/em_http_test.rb +20 -0
  489. data/vendor/bundle/gems/faraday-0.9.0/test/adapters/em_synchrony_test.rb +20 -0
  490. data/vendor/bundle/gems/faraday-0.9.0/test/adapters/excon_test.rb +20 -0
  491. data/vendor/bundle/gems/faraday-0.9.0/test/adapters/httpclient_test.rb +21 -0
  492. data/vendor/bundle/gems/faraday-0.9.0/test/adapters/integration.rb +254 -0
  493. data/vendor/bundle/gems/faraday-0.9.0/test/adapters/logger_test.rb +37 -0
  494. data/vendor/bundle/gems/faraday-0.9.0/test/adapters/net_http_persistent_test.rb +20 -0
  495. data/vendor/bundle/gems/faraday-0.9.0/test/adapters/net_http_test.rb +14 -0
  496. data/vendor/bundle/gems/faraday-0.9.0/test/adapters/patron_test.rb +20 -0
  497. data/vendor/bundle/gems/faraday-0.9.0/test/adapters/rack_test.rb +31 -0
  498. data/vendor/bundle/gems/faraday-0.9.0/test/adapters/test_middleware_test.rb +114 -0
  499. data/vendor/bundle/gems/faraday-0.9.0/test/adapters/typhoeus_test.rb +28 -0
  500. data/vendor/bundle/gems/faraday-0.9.0/test/authentication_middleware_test.rb +65 -0
  501. data/vendor/bundle/gems/faraday-0.9.0/test/composite_read_io_test.rb +111 -0
  502. data/vendor/bundle/gems/faraday-0.9.0/test/connection_test.rb +522 -0
  503. data/vendor/bundle/gems/faraday-0.9.0/test/env_test.rb +210 -0
  504. data/vendor/bundle/gems/faraday-0.9.0/test/helper.rb +81 -0
  505. data/vendor/bundle/gems/faraday-0.9.0/test/live_server.rb +67 -0
  506. data/vendor/bundle/gems/faraday-0.9.0/test/middleware/instrumentation_test.rb +88 -0
  507. data/vendor/bundle/gems/faraday-0.9.0/test/middleware/retry_test.rb +109 -0
  508. data/vendor/bundle/gems/faraday-0.9.0/test/middleware_stack_test.rb +173 -0
  509. data/vendor/bundle/gems/faraday-0.9.0/test/multibyte.txt +1 -0
  510. data/vendor/bundle/gems/faraday-0.9.0/test/options_test.rb +252 -0
  511. data/vendor/bundle/gems/faraday-0.9.0/test/request_middleware_test.rb +142 -0
  512. data/vendor/bundle/gems/faraday-0.9.0/test/response_middleware_test.rb +72 -0
  513. data/vendor/bundle/gems/faraday-0.9.0/test/strawberry.rb +2 -0
  514. data/vendor/bundle/gems/faraday-0.9.0/test/utils_test.rb +58 -0
  515. data/vendor/bundle/gems/hashie-3.0.0/.gitignore +9 -0
  516. data/vendor/bundle/gems/hashie-3.0.0/.rspec +2 -0
  517. data/vendor/bundle/gems/hashie-3.0.0/.rubocop.yml +36 -0
  518. data/vendor/bundle/gems/hashie-3.0.0/.travis.yml +16 -0
  519. data/vendor/bundle/gems/hashie-3.0.0/.yardopts +1 -0
  520. data/vendor/bundle/gems/hashie-3.0.0/CHANGELOG.md +74 -0
  521. data/vendor/bundle/gems/hashie-3.0.0/CONTRIBUTING.md +118 -0
  522. data/vendor/bundle/gems/hashie-3.0.0/Gemfile +11 -0
  523. data/vendor/bundle/gems/hashie-3.0.0/Guardfile +5 -0
  524. data/vendor/bundle/gems/hashie-3.0.0/LICENSE +20 -0
  525. data/vendor/bundle/gems/hashie-3.0.0/README.md +340 -0
  526. data/vendor/bundle/gems/hashie-3.0.0/Rakefile +15 -0
  527. data/vendor/bundle/gems/hashie-3.0.0/UPGRADING.md +93 -0
  528. data/vendor/bundle/gems/hashie-3.0.0/hashie.gemspec +20 -0
  529. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/clash.rb +86 -0
  530. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/dash.rb +177 -0
  531. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/extensions/coercion.rb +119 -0
  532. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/extensions/dash/indifferent_access.rb +21 -0
  533. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/extensions/deep_fetch.rb +29 -0
  534. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/extensions/deep_merge.rb +30 -0
  535. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/extensions/ignore_undeclared.rb +45 -0
  536. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/extensions/indifferent_access.rb +147 -0
  537. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/extensions/key_conversion.rb +10 -0
  538. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/extensions/merge_initializer.rb +26 -0
  539. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/extensions/method_access.rb +124 -0
  540. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/extensions/pretty_inspect.rb +19 -0
  541. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/extensions/stringify_keys.rb +44 -0
  542. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/extensions/symbolize_keys.rb +44 -0
  543. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/hash.rb +55 -0
  544. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/mash.rb +251 -0
  545. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/rash.rb +119 -0
  546. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/trash.rb +99 -0
  547. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie/version.rb +3 -0
  548. data/vendor/bundle/gems/hashie-3.0.0/lib/hashie.rb +33 -0
  549. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/clash_spec.rb +48 -0
  550. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/dash_spec.rb +383 -0
  551. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/extensions/coercion_spec.rb +156 -0
  552. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/extensions/dash/indifferent_access_spec.rb +58 -0
  553. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/extensions/deep_fetch_spec.rb +97 -0
  554. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/extensions/deep_merge_spec.rb +22 -0
  555. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/extensions/ignore_undeclared_spec.rb +46 -0
  556. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/extensions/indifferent_access_spec.rb +152 -0
  557. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/extensions/key_conversion_spec.rb +103 -0
  558. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/extensions/merge_initializer_spec.rb +23 -0
  559. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/extensions/method_access_spec.rb +121 -0
  560. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/hash_spec.rb +58 -0
  561. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/mash_spec.rb +479 -0
  562. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/rash_spec.rb +44 -0
  563. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/trash_spec.rb +196 -0
  564. data/vendor/bundle/gems/hashie-3.0.0/spec/hashie/version_spec.rb +7 -0
  565. data/vendor/bundle/gems/hashie-3.0.0/spec/spec_helper.rb +7 -0
  566. data/vendor/bundle/gems/i18n-0.6.9/MIT-LICENSE +20 -0
  567. data/vendor/bundle/gems/i18n-0.6.9/README.textile +105 -0
  568. data/vendor/bundle/gems/i18n-0.6.9/ci/Gemfile.no-rails +5 -0
  569. data/vendor/bundle/gems/i18n-0.6.9/ci/Gemfile.no-rails.lock +14 -0
  570. data/vendor/bundle/gems/i18n-0.6.9/ci/Gemfile.rails-2.3.x +9 -0
  571. data/vendor/bundle/gems/i18n-0.6.9/ci/Gemfile.rails-2.3.x.lock +23 -0
  572. data/vendor/bundle/gems/i18n-0.6.9/ci/Gemfile.rails-3.x +9 -0
  573. data/vendor/bundle/gems/i18n-0.6.9/ci/Gemfile.rails-3.x.lock +23 -0
  574. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/backend/base.rb +190 -0
  575. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/backend/cache.rb +96 -0
  576. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/backend/cascade.rb +54 -0
  577. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/backend/chain.rb +83 -0
  578. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/backend/fallbacks.rb +65 -0
  579. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/backend/flatten.rb +113 -0
  580. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/backend/gettext.rb +72 -0
  581. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/backend/interpolation_compiler.rb +121 -0
  582. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/backend/key_value.rb +101 -0
  583. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/backend/memoize.rb +46 -0
  584. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/backend/metadata.rb +65 -0
  585. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/backend/pluralization.rb +53 -0
  586. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/backend/simple.rb +87 -0
  587. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/backend/transliterator.rb +99 -0
  588. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/backend.rb +18 -0
  589. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/config.rb +121 -0
  590. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/core_ext/hash.rb +29 -0
  591. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/core_ext/kernel/surpress_warnings.rb +9 -0
  592. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/core_ext/string/interpolate.rb +105 -0
  593. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/exceptions.rb +128 -0
  594. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/gettext/helpers.rb +64 -0
  595. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/gettext/po_parser.rb +329 -0
  596. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/gettext.rb +25 -0
  597. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/interpolate/ruby.rb +37 -0
  598. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/locale/fallbacks.rb +96 -0
  599. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/locale/tag/parents.rb +22 -0
  600. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/locale/tag/rfc4646.rb +74 -0
  601. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/locale/tag/simple.rb +39 -0
  602. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/locale/tag.rb +28 -0
  603. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/locale.rb +6 -0
  604. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/tests/basics.rb +59 -0
  605. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/tests/defaults.rb +40 -0
  606. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/tests/interpolation.rb +133 -0
  607. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/tests/link.rb +56 -0
  608. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/tests/localization/date.rb +91 -0
  609. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/tests/localization/date_time.rb +82 -0
  610. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/tests/localization/procs.rb +116 -0
  611. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/tests/localization/time.rb +81 -0
  612. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/tests/localization.rb +19 -0
  613. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/tests/lookup.rb +81 -0
  614. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/tests/pluralization.rb +35 -0
  615. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/tests/procs.rb +55 -0
  616. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/tests.rb +12 -0
  617. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n/version.rb +3 -0
  618. data/vendor/bundle/gems/i18n-0.6.9/lib/i18n.rb +367 -0
  619. data/vendor/bundle/gems/i18n-0.6.9/test/all.rb +8 -0
  620. data/vendor/bundle/gems/i18n-0.6.9/test/api/all_features_test.rb +58 -0
  621. data/vendor/bundle/gems/i18n-0.6.9/test/api/cascade_test.rb +28 -0
  622. data/vendor/bundle/gems/i18n-0.6.9/test/api/chain_test.rb +24 -0
  623. data/vendor/bundle/gems/i18n-0.6.9/test/api/fallbacks_test.rb +30 -0
  624. data/vendor/bundle/gems/i18n-0.6.9/test/api/key_value_test.rb +28 -0
  625. data/vendor/bundle/gems/i18n-0.6.9/test/api/memoize_test.rb +60 -0
  626. data/vendor/bundle/gems/i18n-0.6.9/test/api/override_test.rb +48 -0
  627. data/vendor/bundle/gems/i18n-0.6.9/test/api/pluralization_test.rb +30 -0
  628. data/vendor/bundle/gems/i18n-0.6.9/test/api/simple_test.rb +28 -0
  629. data/vendor/bundle/gems/i18n-0.6.9/test/backend/cache_test.rb +85 -0
  630. data/vendor/bundle/gems/i18n-0.6.9/test/backend/cascade_test.rb +85 -0
  631. data/vendor/bundle/gems/i18n-0.6.9/test/backend/chain_test.rb +76 -0
  632. data/vendor/bundle/gems/i18n-0.6.9/test/backend/exceptions_test.rb +35 -0
  633. data/vendor/bundle/gems/i18n-0.6.9/test/backend/fallbacks_test.rb +125 -0
  634. data/vendor/bundle/gems/i18n-0.6.9/test/backend/interpolation_compiler_test.rb +119 -0
  635. data/vendor/bundle/gems/i18n-0.6.9/test/backend/key_value_test.rb +46 -0
  636. data/vendor/bundle/gems/i18n-0.6.9/test/backend/memoize_test.rb +47 -0
  637. data/vendor/bundle/gems/i18n-0.6.9/test/backend/metadata_test.rb +47 -0
  638. data/vendor/bundle/gems/i18n-0.6.9/test/backend/pluralization_test.rb +44 -0
  639. data/vendor/bundle/gems/i18n-0.6.9/test/backend/simple_test.rb +83 -0
  640. data/vendor/bundle/gems/i18n-0.6.9/test/backend/transliterator_test.rb +85 -0
  641. data/vendor/bundle/gems/i18n-0.6.9/test/core_ext/hash_test.rb +30 -0
  642. data/vendor/bundle/gems/i18n-0.6.9/test/core_ext/string/interpolate_test.rb +99 -0
  643. data/vendor/bundle/gems/i18n-0.6.9/test/gettext/api_test.rb +206 -0
  644. data/vendor/bundle/gems/i18n-0.6.9/test/gettext/backend_test.rb +101 -0
  645. data/vendor/bundle/gems/i18n-0.6.9/test/i18n/exceptions_test.rb +120 -0
  646. data/vendor/bundle/gems/i18n-0.6.9/test/i18n/interpolate_test.rb +79 -0
  647. data/vendor/bundle/gems/i18n-0.6.9/test/i18n/load_path_test.rb +33 -0
  648. data/vendor/bundle/gems/i18n-0.6.9/test/i18n_test.rb +365 -0
  649. data/vendor/bundle/gems/i18n-0.6.9/test/locale/fallbacks_test.rb +136 -0
  650. data/vendor/bundle/gems/i18n-0.6.9/test/locale/tag/rfc4646_test.rb +142 -0
  651. data/vendor/bundle/gems/i18n-0.6.9/test/locale/tag/simple_test.rb +32 -0
  652. data/vendor/bundle/gems/i18n-0.6.9/test/run_all.rb +21 -0
  653. data/vendor/bundle/gems/i18n-0.6.9/test/test_data/locales/de.po +82 -0
  654. data/vendor/bundle/gems/i18n-0.6.9/test/test_data/locales/en.rb +3 -0
  655. data/vendor/bundle/gems/i18n-0.6.9/test/test_data/locales/en.yml +3 -0
  656. data/vendor/bundle/gems/i18n-0.6.9/test/test_data/locales/invalid/empty.yml +0 -0
  657. data/vendor/bundle/gems/i18n-0.6.9/test/test_data/locales/invalid/syntax.yml +4 -0
  658. data/vendor/bundle/gems/i18n-0.6.9/test/test_data/locales/plurals.rb +113 -0
  659. data/vendor/bundle/gems/i18n-0.6.9/test/test_helper.rb +56 -0
  660. data/vendor/bundle/gems/interception-0.5/.gitignore +9 -0
  661. data/vendor/bundle/gems/interception-0.5/.travis.yml +12 -0
  662. data/vendor/bundle/gems/interception-0.5/CHANGELOG.md +17 -0
  663. data/vendor/bundle/gems/interception-0.5/Gemfile +2 -0
  664. data/vendor/bundle/gems/interception-0.5/LICENSE.MIT +19 -0
  665. data/vendor/bundle/gems/interception-0.5/README.md +84 -0
  666. data/vendor/bundle/gems/interception-0.5/Rakefile +32 -0
  667. data/vendor/bundle/gems/interception-0.5/examples/example.rb +16 -0
  668. data/vendor/bundle/gems/interception-0.5/examples/example2.rb +17 -0
  669. data/vendor/bundle/gems/interception-0.5/ext/extconf.rb +25 -0
  670. data/vendor/bundle/gems/interception-0.5/ext/interception.c +80 -0
  671. data/vendor/bundle/gems/interception-0.5/ext/org/pryrepl/InterceptionEventHook.java +28 -0
  672. data/vendor/bundle/gems/interception-0.5/interception.gemspec +16 -0
  673. data/vendor/bundle/gems/interception-0.5/lib/cross_platform.rb +84 -0
  674. data/vendor/bundle/gems/interception-0.5/lib/interception.rb +120 -0
  675. data/vendor/bundle/gems/interception-0.5/spec/interception_spec.rb +156 -0
  676. data/vendor/bundle/gems/interception-0.5/spec/spec_helpers.rb +1 -0
  677. data/vendor/bundle/gems/method_source-0.8.2/.gemtest +0 -0
  678. data/vendor/bundle/gems/method_source-0.8.2/.travis.yml +13 -0
  679. data/vendor/bundle/gems/method_source-0.8.2/.yardopts +1 -0
  680. data/vendor/bundle/gems/method_source-0.8.2/Gemfile +2 -0
  681. data/vendor/bundle/gems/method_source-0.8.2/LICENSE +25 -0
  682. data/vendor/bundle/gems/method_source-0.8.2/README.markdown +91 -0
  683. data/vendor/bundle/gems/method_source-0.8.2/Rakefile +79 -0
  684. data/vendor/bundle/gems/method_source-0.8.2/lib/method_source/code_helpers.rb +154 -0
  685. data/vendor/bundle/gems/method_source-0.8.2/lib/method_source/source_location.rb +138 -0
  686. data/vendor/bundle/gems/method_source-0.8.2/lib/method_source/version.rb +3 -0
  687. data/vendor/bundle/gems/method_source-0.8.2/lib/method_source.rb +141 -0
  688. data/vendor/bundle/gems/method_source-0.8.2/method_source.gemspec +33 -0
  689. data/vendor/bundle/gems/method_source-0.8.2/test/test.rb +138 -0
  690. data/vendor/bundle/gems/method_source-0.8.2/test/test_code_helpers.rb +41 -0
  691. data/vendor/bundle/gems/method_source-0.8.2/test/test_helper.rb +98 -0
  692. data/vendor/bundle/gems/mini_portile-0.6.0/History.txt +86 -0
  693. data/vendor/bundle/gems/mini_portile-0.6.0/LICENSE.txt +20 -0
  694. data/vendor/bundle/gems/mini_portile-0.6.0/README.rdoc +169 -0
  695. data/vendor/bundle/gems/mini_portile-0.6.0/Rakefile +53 -0
  696. data/vendor/bundle/gems/mini_portile-0.6.0/examples/Rakefile +113 -0
  697. data/vendor/bundle/gems/mini_portile-0.6.0/lib/mini_portile.rb +437 -0
  698. data/vendor/bundle/gems/minitest-5.3.4/.autotest +34 -0
  699. data/vendor/bundle/gems/minitest-5.3.4/.gemtest +0 -0
  700. data/vendor/bundle/gems/minitest-5.3.4/History.txt +1023 -0
  701. data/vendor/bundle/gems/minitest-5.3.4/Manifest.txt +26 -0
  702. data/vendor/bundle/gems/minitest-5.3.4/README.txt +543 -0
  703. data/vendor/bundle/gems/minitest-5.3.4/Rakefile +71 -0
  704. data/vendor/bundle/gems/minitest-5.3.4/design_rationale.rb +52 -0
  705. data/vendor/bundle/gems/minitest-5.3.4/lib/hoe/minitest.rb +26 -0
  706. data/vendor/bundle/gems/minitest-5.3.4/lib/minitest/assertions.rb +661 -0
  707. data/vendor/bundle/gems/minitest-5.3.4/lib/minitest/autorun.rb +12 -0
  708. data/vendor/bundle/gems/minitest-5.3.4/lib/minitest/benchmark.rb +423 -0
  709. data/vendor/bundle/gems/minitest-5.3.4/lib/minitest/expectations.rb +281 -0
  710. data/vendor/bundle/gems/minitest-5.3.4/lib/minitest/hell.rb +11 -0
  711. data/vendor/bundle/gems/minitest-5.3.4/lib/minitest/mock.rb +220 -0
  712. data/vendor/bundle/gems/minitest-5.3.4/lib/minitest/parallel.rb +40 -0
  713. data/vendor/bundle/gems/minitest-5.3.4/lib/minitest/pride.rb +4 -0
  714. data/vendor/bundle/gems/minitest-5.3.4/lib/minitest/pride_plugin.rb +142 -0
  715. data/vendor/bundle/gems/minitest-5.3.4/lib/minitest/spec.rb +294 -0
  716. data/vendor/bundle/gems/minitest-5.3.4/lib/minitest/test.rb +283 -0
  717. data/vendor/bundle/gems/minitest-5.3.4/lib/minitest/unit.rb +45 -0
  718. data/vendor/bundle/gems/minitest-5.3.4/lib/minitest.rb +766 -0
  719. data/vendor/bundle/gems/minitest-5.3.4/test/minitest/metametameta.rb +80 -0
  720. data/vendor/bundle/gems/minitest-5.3.4/test/minitest/test_minitest_benchmark.rb +137 -0
  721. data/vendor/bundle/gems/minitest-5.3.4/test/minitest/test_minitest_mock.rb +500 -0
  722. data/vendor/bundle/gems/minitest-5.3.4/test/minitest/test_minitest_reporter.rb +313 -0
  723. data/vendor/bundle/gems/minitest-5.3.4/test/minitest/test_minitest_spec.rb +832 -0
  724. data/vendor/bundle/gems/minitest-5.3.4/test/minitest/test_minitest_unit.rb +1865 -0
  725. data/vendor/bundle/gems/multipart-post-2.0.0/.gitignore +6 -0
  726. data/vendor/bundle/gems/multipart-post-2.0.0/.travis.yml +7 -0
  727. data/vendor/bundle/gems/multipart-post-2.0.0/Gemfile +14 -0
  728. data/vendor/bundle/gems/multipart-post-2.0.0/History.txt +60 -0
  729. data/vendor/bundle/gems/multipart-post-2.0.0/Manifest.txt +9 -0
  730. data/vendor/bundle/gems/multipart-post-2.0.0/README.md +77 -0
  731. data/vendor/bundle/gems/multipart-post-2.0.0/Rakefile +9 -0
  732. data/vendor/bundle/gems/multipart-post-2.0.0/lib/composite_io.rb +108 -0
  733. data/vendor/bundle/gems/multipart-post-2.0.0/lib/multipart_post.rb +9 -0
  734. data/vendor/bundle/gems/multipart-post-2.0.0/lib/multipartable.rb +29 -0
  735. data/vendor/bundle/gems/multipart-post-2.0.0/lib/net/http/post/multipart.rb +27 -0
  736. data/vendor/bundle/gems/multipart-post-2.0.0/lib/parts.rb +96 -0
  737. data/vendor/bundle/gems/multipart-post-2.0.0/multipart-post.gemspec +22 -0
  738. data/vendor/bundle/gems/multipart-post-2.0.0/test/multibyte.txt +1 -0
  739. data/vendor/bundle/gems/multipart-post-2.0.0/test/net/http/post/test_multipart.rb +110 -0
  740. data/vendor/bundle/gems/multipart-post-2.0.0/test/test_composite_io.rb +115 -0
  741. data/vendor/bundle/gems/multipart-post-2.0.0/test/test_parts.rb +86 -0
  742. data/vendor/bundle/gems/nokogiri-1.6.2.1/.autotest +26 -0
  743. data/vendor/bundle/gems/nokogiri-1.6.2.1/.editorconfig +17 -0
  744. data/vendor/bundle/gems/nokogiri-1.6.2.1/.gemtest +0 -0
  745. data/vendor/bundle/gems/nokogiri-1.6.2.1/.travis.yml +27 -0
  746. data/vendor/bundle/gems/nokogiri-1.6.2.1/CHANGELOG.ja.rdoc +890 -0
  747. data/vendor/bundle/gems/nokogiri-1.6.2.1/CHANGELOG.rdoc +899 -0
  748. data/vendor/bundle/gems/nokogiri-1.6.2.1/C_CODING_STYLE.rdoc +33 -0
  749. data/vendor/bundle/gems/nokogiri-1.6.2.1/Gemfile +21 -0
  750. data/vendor/bundle/gems/nokogiri-1.6.2.1/Manifest.txt +377 -0
  751. data/vendor/bundle/gems/nokogiri-1.6.2.1/README.ja.rdoc +111 -0
  752. data/vendor/bundle/gems/nokogiri-1.6.2.1/README.rdoc +180 -0
  753. data/vendor/bundle/gems/nokogiri-1.6.2.1/ROADMAP.md +89 -0
  754. data/vendor/bundle/gems/nokogiri-1.6.2.1/Rakefile +356 -0
  755. data/vendor/bundle/gems/nokogiri-1.6.2.1/STANDARD_RESPONSES.md +47 -0
  756. data/vendor/bundle/gems/nokogiri-1.6.2.1/Y_U_NO_GEMSPEC.md +155 -0
  757. data/vendor/bundle/gems/nokogiri-1.6.2.1/bin/nokogiri +78 -0
  758. data/vendor/bundle/gems/nokogiri-1.6.2.1/build_all +130 -0
  759. data/vendor/bundle/gems/nokogiri-1.6.2.1/dependencies.yml +4 -0
  760. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/.RUBYARCHDIR.-.nokogiri.time +0 -0
  761. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/Makefile +601 -0
  762. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/depend +358 -0
  763. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/extconf.rb +543 -0
  764. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/html_document.c +170 -0
  765. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/html_document.h +10 -0
  766. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/html_element_description.c +279 -0
  767. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/html_element_description.h +10 -0
  768. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/html_entity_lookup.c +32 -0
  769. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/html_entity_lookup.h +8 -0
  770. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/html_sax_parser_context.c +116 -0
  771. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/html_sax_parser_context.h +11 -0
  772. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/html_sax_push_parser.c +87 -0
  773. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/html_sax_push_parser.h +9 -0
  774. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/nokogiri.c +148 -0
  775. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/nokogiri.h +164 -0
  776. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_attr.c +94 -0
  777. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_attr.h +9 -0
  778. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_attribute_decl.c +70 -0
  779. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_attribute_decl.h +9 -0
  780. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_cdata.c +56 -0
  781. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_cdata.h +9 -0
  782. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_comment.c +54 -0
  783. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_comment.h +9 -0
  784. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_document.c +577 -0
  785. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_document.h +23 -0
  786. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_document_fragment.c +48 -0
  787. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_document_fragment.h +10 -0
  788. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_dtd.c +202 -0
  789. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_dtd.h +10 -0
  790. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_element_content.c +123 -0
  791. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_element_content.h +10 -0
  792. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_element_decl.c +69 -0
  793. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_element_decl.h +9 -0
  794. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_encoding_handler.c +79 -0
  795. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_encoding_handler.h +8 -0
  796. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_entity_decl.c +110 -0
  797. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_entity_decl.h +10 -0
  798. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_entity_reference.c +52 -0
  799. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_entity_reference.h +9 -0
  800. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_io.c +56 -0
  801. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_io.h +11 -0
  802. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  803. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  804. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_namespace.c +78 -0
  805. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_namespace.h +13 -0
  806. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_node.c +1603 -0
  807. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_node.h +13 -0
  808. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_node_set.c +467 -0
  809. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_node_set.h +14 -0
  810. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_processing_instruction.c +56 -0
  811. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_processing_instruction.h +9 -0
  812. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_reader.c +681 -0
  813. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_reader.h +10 -0
  814. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_relax_ng.c +161 -0
  815. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_relax_ng.h +9 -0
  816. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_sax_parser.c +312 -0
  817. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_sax_parser.h +39 -0
  818. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_sax_parser_context.c +262 -0
  819. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_sax_parser_context.h +10 -0
  820. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_sax_push_parser.c +115 -0
  821. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_sax_push_parser.h +9 -0
  822. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_schema.c +205 -0
  823. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_schema.h +9 -0
  824. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_syntax_error.c +63 -0
  825. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_syntax_error.h +13 -0
  826. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_text.c +52 -0
  827. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_text.h +9 -0
  828. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_xpath_context.c +307 -0
  829. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xml_xpath_context.h +10 -0
  830. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xslt_stylesheet.c +270 -0
  831. data/vendor/bundle/gems/nokogiri-1.6.2.1/ext/nokogiri/xslt_stylesheet.h +14 -0
  832. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/css/node.rb +52 -0
  833. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/css/parser.rb +715 -0
  834. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/css/parser.y +249 -0
  835. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/css/parser_extras.rb +91 -0
  836. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/css/syntax_error.rb +7 -0
  837. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/css/tokenizer.rb +152 -0
  838. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/css/tokenizer.rex +55 -0
  839. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/css/xpath_visitor.rb +219 -0
  840. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/css.rb +27 -0
  841. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/decorators/slop.rb +35 -0
  842. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/html/builder.rb +35 -0
  843. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/html/document.rb +333 -0
  844. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/html/document_fragment.rb +41 -0
  845. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/html/element_description.rb +23 -0
  846. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/html/element_description_defaults.rb +671 -0
  847. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/html/entity_lookup.rb +13 -0
  848. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/html/sax/parser.rb +52 -0
  849. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/html/sax/parser_context.rb +16 -0
  850. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/html/sax/push_parser.rb +16 -0
  851. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/html.rb +37 -0
  852. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/syntax_error.rb +4 -0
  853. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/version.rb +106 -0
  854. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/attr.rb +14 -0
  855. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/attribute_decl.rb +18 -0
  856. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/builder.rb +443 -0
  857. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/cdata.rb +11 -0
  858. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/character_data.rb +7 -0
  859. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/document.rb +279 -0
  860. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/document_fragment.rb +112 -0
  861. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/dtd.rb +32 -0
  862. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/element_content.rb +36 -0
  863. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/element_decl.rb +13 -0
  864. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/entity_decl.rb +19 -0
  865. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/namespace.rb +13 -0
  866. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/node/save_options.rb +61 -0
  867. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/node.rb +982 -0
  868. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/node_set.rb +355 -0
  869. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/notation.rb +6 -0
  870. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/parse_options.rb +98 -0
  871. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/pp/character_data.rb +18 -0
  872. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/pp/node.rb +56 -0
  873. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/pp.rb +2 -0
  874. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/processing_instruction.rb +8 -0
  875. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/reader.rb +112 -0
  876. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/relax_ng.rb +32 -0
  877. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/sax/document.rb +171 -0
  878. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/sax/parser.rb +123 -0
  879. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/sax/parser_context.rb +16 -0
  880. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/sax/push_parser.rb +60 -0
  881. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/sax.rb +4 -0
  882. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/schema.rb +63 -0
  883. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/syntax_error.rb +47 -0
  884. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/text.rb +9 -0
  885. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
  886. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/xpath.rb +10 -0
  887. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml/xpath_context.rb +16 -0
  888. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xml.rb +73 -0
  889. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xslt/stylesheet.rb +25 -0
  890. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri/xslt.rb +56 -0
  891. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/nokogiri.rb +137 -0
  892. data/vendor/bundle/gems/nokogiri-1.6.2.1/lib/xsd/xmlparser/nokogiri.rb +102 -0
  893. data/vendor/bundle/gems/nokogiri-1.6.2.1/suppressions/README.txt +1 -0
  894. data/vendor/bundle/gems/nokogiri-1.6.2.1/suppressions/nokogiri_ree-1.8.7.358.supp +61 -0
  895. data/vendor/bundle/gems/nokogiri-1.6.2.1/suppressions/nokogiri_ruby-1.8.7.370.supp +0 -0
  896. data/vendor/bundle/gems/nokogiri-1.6.2.1/suppressions/nokogiri_ruby-1.9.2.320.supp +28 -0
  897. data/vendor/bundle/gems/nokogiri-1.6.2.1/suppressions/nokogiri_ruby-1.9.3.327.supp +28 -0
  898. data/vendor/bundle/gems/nokogiri-1.6.2.1/tasks/nokogiri.org.rb +24 -0
  899. data/vendor/bundle/gems/nokogiri-1.6.2.1/tasks/test.rb +95 -0
  900. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/css/test_nthiness.rb +222 -0
  901. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/css/test_parser.rb +358 -0
  902. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/css/test_tokenizer.rb +198 -0
  903. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/css/test_xpath_visitor.rb +96 -0
  904. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/decorators/test_slop.rb +16 -0
  905. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/2ch.html +108 -0
  906. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/address_book.rlx +12 -0
  907. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/address_book.xml +10 -0
  908. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/atom.xml +344 -0
  909. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/bar/bar.xsd +4 -0
  910. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/bogus.xml +0 -0
  911. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/dont_hurt_em_why.xml +422 -0
  912. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/encoding.html +82 -0
  913. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/encoding.xhtml +84 -0
  914. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/exslt.xml +8 -0
  915. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/exslt.xslt +35 -0
  916. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/foo/foo.xsd +4 -0
  917. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/metacharset.html +10 -0
  918. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/noencoding.html +47 -0
  919. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/po.xml +32 -0
  920. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/po.xsd +66 -0
  921. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/saml/saml20assertion_schema.xsd +283 -0
  922. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/saml/saml20protocol_schema.xsd +302 -0
  923. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/saml/xenc_schema.xsd +146 -0
  924. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/saml/xmldsig_schema.xsd +318 -0
  925. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/shift_jis.html +10 -0
  926. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/shift_jis.xml +5 -0
  927. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/shift_jis_no_charset.html +9 -0
  928. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/slow-xpath.xml +25509 -0
  929. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/snuggles.xml +3 -0
  930. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/staff.dtd +10 -0
  931. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/staff.xml +59 -0
  932. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/staff.xslt +32 -0
  933. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/test_document_url/bar.xml +2 -0
  934. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/test_document_url/document.dtd +4 -0
  935. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/test_document_url/document.xml +6 -0
  936. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/tlm.html +850 -0
  937. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/to_be_xincluded.xml +2 -0
  938. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/valid_bar.xml +2 -0
  939. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/files/xinclude.xml +4 -0
  940. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/helper.rb +164 -0
  941. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/html/sax/test_parser.rb +141 -0
  942. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/html/sax/test_parser_context.rb +46 -0
  943. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/html/test_builder.rb +164 -0
  944. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/html/test_document.rb +619 -0
  945. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/html/test_document_encoding.rb +148 -0
  946. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/html/test_document_fragment.rb +267 -0
  947. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/html/test_element_description.rb +105 -0
  948. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/html/test_named_characters.rb +14 -0
  949. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/html/test_node.rb +196 -0
  950. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/html/test_node_encoding.rb +27 -0
  951. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/namespaces/test_additional_namespaces_in_builder_doc.rb +14 -0
  952. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/namespaces/test_namespaces_aliased_default.rb +24 -0
  953. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/namespaces/test_namespaces_in_builder_doc.rb +75 -0
  954. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/namespaces/test_namespaces_in_cloned_doc.rb +31 -0
  955. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/namespaces/test_namespaces_in_created_doc.rb +75 -0
  956. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/namespaces/test_namespaces_in_parsed_doc.rb +66 -0
  957. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/namespaces/test_namespaces_preservation.rb +31 -0
  958. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/test_convert_xpath.rb +135 -0
  959. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/test_css_cache.rb +45 -0
  960. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/test_encoding_handler.rb +46 -0
  961. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/test_memory_leak.rb +156 -0
  962. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/test_nokogiri.rb +138 -0
  963. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/test_reader.rb +558 -0
  964. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/test_soap4r_sax.rb +52 -0
  965. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/test_xslt_transforms.rb +279 -0
  966. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/node/test_save_options.rb +28 -0
  967. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/node/test_subclass.rb +44 -0
  968. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/sax/test_parser.rb +382 -0
  969. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/sax/test_parser_context.rb +115 -0
  970. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/sax/test_push_parser.rb +157 -0
  971. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_attr.rb +64 -0
  972. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_attribute_decl.rb +86 -0
  973. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_builder.rb +315 -0
  974. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_c14n.rb +161 -0
  975. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_cdata.rb +48 -0
  976. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_comment.rb +29 -0
  977. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_document.rb +934 -0
  978. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_document_encoding.rb +28 -0
  979. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_document_fragment.rb +228 -0
  980. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_dtd.rb +187 -0
  981. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_dtd_encoding.rb +33 -0
  982. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_element_content.rb +56 -0
  983. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_element_decl.rb +73 -0
  984. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_entity_decl.rb +122 -0
  985. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_entity_reference.rb +245 -0
  986. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_namespace.rb +95 -0
  987. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_node.rb +1155 -0
  988. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_node_attributes.rb +113 -0
  989. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_node_encoding.rb +107 -0
  990. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_node_inheritance.rb +32 -0
  991. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_node_reparenting.rb +374 -0
  992. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_node_set.rb +755 -0
  993. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_parse_options.rb +64 -0
  994. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_processing_instruction.rb +30 -0
  995. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_reader_encoding.rb +142 -0
  996. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_relax_ng.rb +60 -0
  997. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_schema.rb +129 -0
  998. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_syntax_error.rb +12 -0
  999. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_text.rb +60 -0
  1000. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_unparented_node.rb +422 -0
  1001. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_xinclude.rb +83 -0
  1002. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xml/test_xpath.rb +382 -0
  1003. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xslt/test_custom_functions.rb +133 -0
  1004. data/vendor/bundle/gems/nokogiri-1.6.2.1/test/xslt/test_exception_handling.rb +37 -0
  1005. data/vendor/bundle/gems/nokogiri-1.6.2.1/test_all +81 -0
  1006. data/vendor/bundle/gems/pry-0.10.0/CHANGELOG.md +702 -0
  1007. data/vendor/bundle/gems/pry-0.10.0/LICENSE +25 -0
  1008. data/vendor/bundle/gems/pry-0.10.0/README.md +406 -0
  1009. data/vendor/bundle/gems/pry-0.10.0/bin/pry +16 -0
  1010. data/vendor/bundle/gems/pry-0.10.0/lib/pry/cli.rb +220 -0
  1011. data/vendor/bundle/gems/pry-0.10.0/lib/pry/code/code_file.rb +103 -0
  1012. data/vendor/bundle/gems/pry-0.10.0/lib/pry/code/code_range.rb +71 -0
  1013. data/vendor/bundle/gems/pry-0.10.0/lib/pry/code/loc.rb +92 -0
  1014. data/vendor/bundle/gems/pry-0.10.0/lib/pry/code.rb +341 -0
  1015. data/vendor/bundle/gems/pry-0.10.0/lib/pry/code_object.rb +172 -0
  1016. data/vendor/bundle/gems/pry-0.10.0/lib/pry/color_printer.rb +55 -0
  1017. data/vendor/bundle/gems/pry-0.10.0/lib/pry/command.rb +692 -0
  1018. data/vendor/bundle/gems/pry-0.10.0/lib/pry/command_set.rb +443 -0
  1019. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/amend_line.rb +99 -0
  1020. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/bang.rb +20 -0
  1021. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/bang_pry.rb +17 -0
  1022. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/cat/abstract_formatter.rb +27 -0
  1023. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/cat/exception_formatter.rb +77 -0
  1024. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/cat/file_formatter.rb +67 -0
  1025. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/cat/input_expression_formatter.rb +43 -0
  1026. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/cat.rb +62 -0
  1027. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/cd.rb +41 -0
  1028. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/change_inspector.rb +27 -0
  1029. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/change_prompt.rb +26 -0
  1030. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/code_collector.rb +165 -0
  1031. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/disable_pry.rb +27 -0
  1032. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/disabled_commands.rb +2 -0
  1033. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/easter_eggs.rb +112 -0
  1034. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/edit/exception_patcher.rb +25 -0
  1035. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/edit/file_and_line_locator.rb +36 -0
  1036. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/edit.rb +195 -0
  1037. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/exit.rb +42 -0
  1038. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/exit_all.rb +29 -0
  1039. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/exit_program.rb +23 -0
  1040. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/find_method.rb +193 -0
  1041. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/fix_indent.rb +19 -0
  1042. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/gem_cd.rb +26 -0
  1043. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/gem_install.rb +32 -0
  1044. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/gem_list.rb +33 -0
  1045. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/gem_open.rb +29 -0
  1046. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/gist.rb +101 -0
  1047. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/help.rb +164 -0
  1048. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/hist.rb +180 -0
  1049. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/import_set.rb +22 -0
  1050. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/install_command.rb +53 -0
  1051. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/jump_to.rb +29 -0
  1052. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/list_inspectors.rb +35 -0
  1053. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/list_prompts.rb +35 -0
  1054. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ls/constants.rb +47 -0
  1055. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ls/formatter.rb +49 -0
  1056. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ls/globals.rb +48 -0
  1057. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ls/grep.rb +21 -0
  1058. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ls/instance_vars.rb +39 -0
  1059. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ls/interrogatable.rb +18 -0
  1060. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ls/jruby_hacks.rb +49 -0
  1061. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ls/local_names.rb +35 -0
  1062. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ls/local_vars.rb +39 -0
  1063. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ls/ls_entity.rb +70 -0
  1064. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ls/methods.rb +57 -0
  1065. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ls/methods_helper.rb +46 -0
  1066. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ls/self_methods.rb +32 -0
  1067. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ls.rb +114 -0
  1068. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/nesting.rb +25 -0
  1069. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/play.rb +103 -0
  1070. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/pry_backtrace.rb +25 -0
  1071. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/pry_version.rb +17 -0
  1072. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/raise_up.rb +32 -0
  1073. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/reload_code.rb +62 -0
  1074. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/reset.rb +18 -0
  1075. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ri.rb +60 -0
  1076. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/save_file.rb +61 -0
  1077. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/shell_command.rb +48 -0
  1078. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/shell_mode.rb +25 -0
  1079. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/show_doc.rb +83 -0
  1080. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/show_info.rb +195 -0
  1081. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/show_input.rb +17 -0
  1082. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/show_source.rb +50 -0
  1083. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/simple_prompt.rb +22 -0
  1084. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/stat.rb +40 -0
  1085. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/switch_to.rb +23 -0
  1086. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/toggle_color.rb +24 -0
  1087. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/watch_expression/expression.rb +38 -0
  1088. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/watch_expression.rb +105 -0
  1089. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/whereami.rb +190 -0
  1090. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands/wtf.rb +57 -0
  1091. data/vendor/bundle/gems/pry-0.10.0/lib/pry/commands.rb +6 -0
  1092. data/vendor/bundle/gems/pry-0.10.0/lib/pry/config/behavior.rb +139 -0
  1093. data/vendor/bundle/gems/pry-0.10.0/lib/pry/config/convenience.rb +26 -0
  1094. data/vendor/bundle/gems/pry-0.10.0/lib/pry/config/default.rb +165 -0
  1095. data/vendor/bundle/gems/pry-0.10.0/lib/pry/config.rb +24 -0
  1096. data/vendor/bundle/gems/pry-0.10.0/lib/pry/core_extensions.rb +131 -0
  1097. data/vendor/bundle/gems/pry-0.10.0/lib/pry/editor.rb +133 -0
  1098. data/vendor/bundle/gems/pry-0.10.0/lib/pry/exceptions.rb +77 -0
  1099. data/vendor/bundle/gems/pry-0.10.0/lib/pry/helpers/base_helpers.rb +113 -0
  1100. data/vendor/bundle/gems/pry-0.10.0/lib/pry/helpers/command_helpers.rb +156 -0
  1101. data/vendor/bundle/gems/pry-0.10.0/lib/pry/helpers/documentation_helpers.rb +75 -0
  1102. data/vendor/bundle/gems/pry-0.10.0/lib/pry/helpers/options_helpers.rb +27 -0
  1103. data/vendor/bundle/gems/pry-0.10.0/lib/pry/helpers/table.rb +109 -0
  1104. data/vendor/bundle/gems/pry-0.10.0/lib/pry/helpers/text.rb +107 -0
  1105. data/vendor/bundle/gems/pry-0.10.0/lib/pry/helpers.rb +5 -0
  1106. data/vendor/bundle/gems/pry-0.10.0/lib/pry/history.rb +125 -0
  1107. data/vendor/bundle/gems/pry-0.10.0/lib/pry/history_array.rb +121 -0
  1108. data/vendor/bundle/gems/pry-0.10.0/lib/pry/hooks.rb +230 -0
  1109. data/vendor/bundle/gems/pry-0.10.0/lib/pry/indent.rb +406 -0
  1110. data/vendor/bundle/gems/pry-0.10.0/lib/pry/input_completer.rb +242 -0
  1111. data/vendor/bundle/gems/pry-0.10.0/lib/pry/input_lock.rb +132 -0
  1112. data/vendor/bundle/gems/pry-0.10.0/lib/pry/inspector.rb +27 -0
  1113. data/vendor/bundle/gems/pry-0.10.0/lib/pry/last_exception.rb +61 -0
  1114. data/vendor/bundle/gems/pry-0.10.0/lib/pry/method/disowned.rb +53 -0
  1115. data/vendor/bundle/gems/pry-0.10.0/lib/pry/method/patcher.rb +125 -0
  1116. data/vendor/bundle/gems/pry-0.10.0/lib/pry/method/weird_method_locator.rb +186 -0
  1117. data/vendor/bundle/gems/pry-0.10.0/lib/pry/method.rb +546 -0
  1118. data/vendor/bundle/gems/pry-0.10.0/lib/pry/module_candidate.rb +136 -0
  1119. data/vendor/bundle/gems/pry-0.10.0/lib/pry/object_path.rb +82 -0
  1120. data/vendor/bundle/gems/pry-0.10.0/lib/pry/output.rb +50 -0
  1121. data/vendor/bundle/gems/pry-0.10.0/lib/pry/pager.rb +235 -0
  1122. data/vendor/bundle/gems/pry-0.10.0/lib/pry/plugins.rb +103 -0
  1123. data/vendor/bundle/gems/pry-0.10.0/lib/pry/prompt.rb +26 -0
  1124. data/vendor/bundle/gems/pry-0.10.0/lib/pry/pry_class.rb +375 -0
  1125. data/vendor/bundle/gems/pry-0.10.0/lib/pry/pry_instance.rb +654 -0
  1126. data/vendor/bundle/gems/pry-0.10.0/lib/pry/rbx_path.rb +22 -0
  1127. data/vendor/bundle/gems/pry-0.10.0/lib/pry/repl.rb +202 -0
  1128. data/vendor/bundle/gems/pry-0.10.0/lib/pry/repl_file_loader.rb +74 -0
  1129. data/vendor/bundle/gems/pry-0.10.0/lib/pry/rubygem.rb +82 -0
  1130. data/vendor/bundle/gems/pry-0.10.0/lib/pry/terminal.rb +79 -0
  1131. data/vendor/bundle/gems/pry-0.10.0/lib/pry/test/helper.rb +170 -0
  1132. data/vendor/bundle/gems/pry-0.10.0/lib/pry/version.rb +3 -0
  1133. data/vendor/bundle/gems/pry-0.10.0/lib/pry/wrapped_module.rb +373 -0
  1134. data/vendor/bundle/gems/pry-0.10.0/lib/pry.rb +161 -0
  1135. data/vendor/bundle/gems/pry-rescue-1.4.1/.gitignore +6 -0
  1136. data/vendor/bundle/gems/pry-rescue-1.4.1/.travis.yml +7 -0
  1137. data/vendor/bundle/gems/pry-rescue-1.4.1/Gemfile +2 -0
  1138. data/vendor/bundle/gems/pry-rescue-1.4.1/LICENSE.MIT +19 -0
  1139. data/vendor/bundle/gems/pry-rescue-1.4.1/README.md +324 -0
  1140. data/vendor/bundle/gems/pry-rescue-1.4.1/Rakefile +30 -0
  1141. data/vendor/bundle/gems/pry-rescue-1.4.1/bin/kill-pry-rescue +37 -0
  1142. data/vendor/bundle/gems/pry-rescue-1.4.1/bin/rescue +55 -0
  1143. data/vendor/bundle/gems/pry-rescue-1.4.1/examples/capybara_spec.rb +15 -0
  1144. data/vendor/bundle/gems/pry-rescue-1.4.1/examples/example.rb +29 -0
  1145. data/vendor/bundle/gems/pry-rescue-1.4.1/examples/example2.rb +28 -0
  1146. data/vendor/bundle/gems/pry-rescue-1.4.1/examples/example_spec.rb +12 -0
  1147. data/vendor/bundle/gems/pry-rescue-1.4.1/examples/loop.rb +18 -0
  1148. data/vendor/bundle/gems/pry-rescue-1.4.1/examples/random-exit.rb +22 -0
  1149. data/vendor/bundle/gems/pry-rescue-1.4.1/examples/rescue.rb +32 -0
  1150. data/vendor/bundle/gems/pry-rescue-1.4.1/examples/sigsegv.rb +24 -0
  1151. data/vendor/bundle/gems/pry-rescue-1.4.1/examples/syntax-err.rb +1 -0
  1152. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry/rescue.rb +2 -0
  1153. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry-rescue/cli.rb +1 -0
  1154. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry-rescue/commands.rb +74 -0
  1155. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry-rescue/core_ext.rb +100 -0
  1156. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry-rescue/kernel_exit_hooks.rb +20 -0
  1157. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry-rescue/minitest.rb +45 -0
  1158. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry-rescue/peek/exit.rb +2 -0
  1159. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry-rescue/peek/int.rb +2 -0
  1160. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry-rescue/peek/quit.rb +2 -0
  1161. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry-rescue/peek/usr1.rb +2 -0
  1162. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry-rescue/peek/usr2.rb +2 -0
  1163. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry-rescue/peek.rb +18 -0
  1164. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry-rescue/rack.rb +19 -0
  1165. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry-rescue/rails.rb +14 -0
  1166. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry-rescue/rspec.rb +58 -0
  1167. data/vendor/bundle/gems/pry-rescue-1.4.1/lib/pry-rescue.rb +209 -0
  1168. data/vendor/bundle/gems/pry-rescue-1.4.1/pry-rescue.gemspec +23 -0
  1169. data/vendor/bundle/gems/pry-rescue-1.4.1/spec/commands_spec.rb +121 -0
  1170. data/vendor/bundle/gems/pry-rescue-1.4.1/spec/core_ext_spec.rb +100 -0
  1171. data/vendor/bundle/gems/pry-rescue-1.4.1/spec/fixtures/coderay.rb +3 -0
  1172. data/vendor/bundle/gems/pry-rescue-1.4.1/spec/fixtures/initial.rb +13 -0
  1173. data/vendor/bundle/gems/pry-rescue-1.4.1/spec/fixtures/raiseother.rb +13 -0
  1174. data/vendor/bundle/gems/pry-rescue-1.4.1/spec/fixtures/reraise.rb +13 -0
  1175. data/vendor/bundle/gems/pry-rescue-1.4.1/spec/fixtures/simple.rb +1 -0
  1176. data/vendor/bundle/gems/pry-rescue-1.4.1/spec/fixtures/super.rb +17 -0
  1177. data/vendor/bundle/gems/pry-rescue-1.4.1/spec/fixtures/uri.rb +2 -0
  1178. data/vendor/bundle/gems/pry-rescue-1.4.1/spec/peek_spec.rb +29 -0
  1179. data/vendor/bundle/gems/pry-rescue-1.4.1/spec/pry_rescue_spec.rb +114 -0
  1180. data/vendor/bundle/gems/pry-rescue-1.4.1/spec/spec_helper.rb +6 -0
  1181. data/vendor/bundle/gems/rake-10.3.2/.autotest +7 -0
  1182. data/vendor/bundle/gems/rake-10.3.2/.gemtest +0 -0
  1183. data/vendor/bundle/gems/rake-10.3.2/.rubocop.yml +27 -0
  1184. data/vendor/bundle/gems/rake-10.3.2/.togglerc +7 -0
  1185. data/vendor/bundle/gems/rake-10.3.2/CONTRIBUTING.rdoc +34 -0
  1186. data/vendor/bundle/gems/rake-10.3.2/History.rdoc +609 -0
  1187. data/vendor/bundle/gems/rake-10.3.2/MIT-LICENSE +21 -0
  1188. data/vendor/bundle/gems/rake-10.3.2/Manifest.txt +162 -0
  1189. data/vendor/bundle/gems/rake-10.3.2/README.rdoc +137 -0
  1190. data/vendor/bundle/gems/rake-10.3.2/Rakefile +81 -0
  1191. data/vendor/bundle/gems/rake-10.3.2/bin/rake +33 -0
  1192. data/vendor/bundle/gems/rake-10.3.2/lib/rake/alt_system.rb +110 -0
  1193. data/vendor/bundle/gems/rake-10.3.2/lib/rake/application.rb +783 -0
  1194. data/vendor/bundle/gems/rake-10.3.2/lib/rake/backtrace.rb +23 -0
  1195. data/vendor/bundle/gems/rake-10.3.2/lib/rake/clean.rb +76 -0
  1196. data/vendor/bundle/gems/rake-10.3.2/lib/rake/cloneable.rb +16 -0
  1197. data/vendor/bundle/gems/rake-10.3.2/lib/rake/contrib/.document +0 -0
  1198. data/vendor/bundle/gems/rake-10.3.2/lib/rake/contrib/compositepublisher.rb +21 -0
  1199. data/vendor/bundle/gems/rake-10.3.2/lib/rake/contrib/ftptools.rb +137 -0
  1200. data/vendor/bundle/gems/rake-10.3.2/lib/rake/contrib/publisher.rb +81 -0
  1201. data/vendor/bundle/gems/rake-10.3.2/lib/rake/contrib/rubyforgepublisher.rb +18 -0
  1202. data/vendor/bundle/gems/rake-10.3.2/lib/rake/contrib/sshpublisher.rb +61 -0
  1203. data/vendor/bundle/gems/rake-10.3.2/lib/rake/contrib/sys.rb +4 -0
  1204. data/vendor/bundle/gems/rake-10.3.2/lib/rake/cpu_counter.rb +109 -0
  1205. data/vendor/bundle/gems/rake-10.3.2/lib/rake/default_loader.rb +14 -0
  1206. data/vendor/bundle/gems/rake-10.3.2/lib/rake/dsl_definition.rb +198 -0
  1207. data/vendor/bundle/gems/rake-10.3.2/lib/rake/early_time.rb +21 -0
  1208. data/vendor/bundle/gems/rake-10.3.2/lib/rake/ext/core.rb +25 -0
  1209. data/vendor/bundle/gems/rake-10.3.2/lib/rake/ext/module.rb +1 -0
  1210. data/vendor/bundle/gems/rake-10.3.2/lib/rake/ext/string.rb +173 -0
  1211. data/vendor/bundle/gems/rake-10.3.2/lib/rake/ext/time.rb +15 -0
  1212. data/vendor/bundle/gems/rake-10.3.2/lib/rake/file_creation_task.rb +24 -0
  1213. data/vendor/bundle/gems/rake-10.3.2/lib/rake/file_list.rb +414 -0
  1214. data/vendor/bundle/gems/rake-10.3.2/lib/rake/file_task.rb +46 -0
  1215. data/vendor/bundle/gems/rake-10.3.2/lib/rake/file_utils.rb +116 -0
  1216. data/vendor/bundle/gems/rake-10.3.2/lib/rake/file_utils_ext.rb +144 -0
  1217. data/vendor/bundle/gems/rake-10.3.2/lib/rake/gempackagetask.rb +4 -0
  1218. data/vendor/bundle/gems/rake-10.3.2/lib/rake/invocation_chain.rb +56 -0
  1219. data/vendor/bundle/gems/rake-10.3.2/lib/rake/invocation_exception_mixin.rb +16 -0
  1220. data/vendor/bundle/gems/rake-10.3.2/lib/rake/linked_list.rb +103 -0
  1221. data/vendor/bundle/gems/rake-10.3.2/lib/rake/loaders/makefile.rb +40 -0
  1222. data/vendor/bundle/gems/rake-10.3.2/lib/rake/multi_task.rb +13 -0
  1223. data/vendor/bundle/gems/rake-10.3.2/lib/rake/name_space.rb +38 -0
  1224. data/vendor/bundle/gems/rake-10.3.2/lib/rake/packagetask.rb +202 -0
  1225. data/vendor/bundle/gems/rake-10.3.2/lib/rake/pathmap.rb +3 -0
  1226. data/vendor/bundle/gems/rake-10.3.2/lib/rake/phony.rb +15 -0
  1227. data/vendor/bundle/gems/rake-10.3.2/lib/rake/private_reader.rb +20 -0
  1228. data/vendor/bundle/gems/rake-10.3.2/lib/rake/promise.rb +99 -0
  1229. data/vendor/bundle/gems/rake-10.3.2/lib/rake/pseudo_status.rb +29 -0
  1230. data/vendor/bundle/gems/rake-10.3.2/lib/rake/rake_module.rb +38 -0
  1231. data/vendor/bundle/gems/rake-10.3.2/lib/rake/rake_test_loader.rb +22 -0
  1232. data/vendor/bundle/gems/rake-10.3.2/lib/rake/rdoctask.rb +4 -0
  1233. data/vendor/bundle/gems/rake-10.3.2/lib/rake/ruby182_test_unit_fix.rb +29 -0
  1234. data/vendor/bundle/gems/rake-10.3.2/lib/rake/rule_recursion_overflow_error.rb +20 -0
  1235. data/vendor/bundle/gems/rake-10.3.2/lib/rake/runtest.rb +27 -0
  1236. data/vendor/bundle/gems/rake-10.3.2/lib/rake/scope.rb +42 -0
  1237. data/vendor/bundle/gems/rake-10.3.2/lib/rake/task.rb +383 -0
  1238. data/vendor/bundle/gems/rake-10.3.2/lib/rake/task_argument_error.rb +7 -0
  1239. data/vendor/bundle/gems/rake-10.3.2/lib/rake/task_arguments.rb +98 -0
  1240. data/vendor/bundle/gems/rake-10.3.2/lib/rake/task_manager.rb +310 -0
  1241. data/vendor/bundle/gems/rake-10.3.2/lib/rake/tasklib.rb +24 -0
  1242. data/vendor/bundle/gems/rake-10.3.2/lib/rake/testtask.rb +212 -0
  1243. data/vendor/bundle/gems/rake-10.3.2/lib/rake/thread_history_display.rb +48 -0
  1244. data/vendor/bundle/gems/rake-10.3.2/lib/rake/thread_pool.rb +164 -0
  1245. data/vendor/bundle/gems/rake-10.3.2/lib/rake/trace_output.rb +22 -0
  1246. data/vendor/bundle/gems/rake-10.3.2/lib/rake/version.rb +7 -0
  1247. data/vendor/bundle/gems/rake-10.3.2/lib/rake/win32.rb +56 -0
  1248. data/vendor/bundle/gems/rake-10.3.2/lib/rake.rb +78 -0
  1249. data/vendor/bundle/gems/rake-10.3.2/rakelib/publish.rake +20 -0
  1250. data/vendor/bundle/gems/rake-10.3.2/rakelib/test_times.rake +25 -0
  1251. data/vendor/bundle/gems/rake-10.3.2/test/file_creation.rb +34 -0
  1252. data/vendor/bundle/gems/rake-10.3.2/test/helper.rb +127 -0
  1253. data/vendor/bundle/gems/rake-10.3.2/test/support/rakefile_definitions.rb +478 -0
  1254. data/vendor/bundle/gems/rake-10.3.2/test/support/ruby_runner.rb +33 -0
  1255. data/vendor/bundle/gems/rake-10.3.2/test/test_private_reader.rb +42 -0
  1256. data/vendor/bundle/gems/rake-10.3.2/test/test_rake.rb +40 -0
  1257. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_application.rb +641 -0
  1258. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_application_options.rb +466 -0
  1259. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_backtrace.rb +119 -0
  1260. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_clean.rb +55 -0
  1261. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_cpu_counter.rb +50 -0
  1262. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_definitions.rb +79 -0
  1263. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_directory_task.rb +63 -0
  1264. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_dsl.rb +40 -0
  1265. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_early_time.rb +31 -0
  1266. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_extension.rb +59 -0
  1267. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_file_creation_task.rb +56 -0
  1268. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_file_list.rb +627 -0
  1269. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_file_list_path_map.rb +8 -0
  1270. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_file_task.rb +186 -0
  1271. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_file_utils.rb +309 -0
  1272. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_ftp_file.rb +74 -0
  1273. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_functional.rb +482 -0
  1274. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_invocation_chain.rb +64 -0
  1275. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_linked_list.rb +84 -0
  1276. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_makefile_loader.rb +46 -0
  1277. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_multi_task.rb +58 -0
  1278. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_name_space.rb +57 -0
  1279. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_package_task.rb +79 -0
  1280. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_path_map.rb +168 -0
  1281. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_path_map_explode.rb +34 -0
  1282. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_path_map_partial.rb +18 -0
  1283. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_pseudo_status.rb +21 -0
  1284. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_rake_test_loader.rb +20 -0
  1285. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_reduce_compat.rb +26 -0
  1286. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_require.rb +40 -0
  1287. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_rules.rb +388 -0
  1288. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_scope.rb +44 -0
  1289. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_task.rb +392 -0
  1290. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_task_argument_parsing.rb +109 -0
  1291. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_task_arguments.rb +127 -0
  1292. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_task_lib.rb +9 -0
  1293. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_task_manager.rb +178 -0
  1294. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_task_manager_argument_resolution.rb +19 -0
  1295. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_task_with_arguments.rb +171 -0
  1296. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_test_task.rb +141 -0
  1297. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_thread_pool.rb +142 -0
  1298. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_top_level_functions.rb +71 -0
  1299. data/vendor/bundle/gems/rake-10.3.2/test/test_rake_win32.rb +72 -0
  1300. data/vendor/bundle/gems/rake-10.3.2/test/test_thread_history_display.rb +101 -0
  1301. data/vendor/bundle/gems/rake-10.3.2/test/test_trace_output.rb +52 -0
  1302. data/vendor/bundle/gems/rspec-3.0.0/License.txt +24 -0
  1303. data/vendor/bundle/gems/rspec-3.0.0/README.md +47 -0
  1304. data/vendor/bundle/gems/rspec-3.0.0/lib/rspec/version.rb +5 -0
  1305. data/vendor/bundle/gems/rspec-3.0.0/lib/rspec.rb +3 -0
  1306. data/vendor/bundle/gems/rspec-core-3.0.1/.document +5 -0
  1307. data/vendor/bundle/gems/rspec-core-3.0.1/.yardopts +7 -0
  1308. data/vendor/bundle/gems/rspec-core-3.0.1/Changelog.md +1436 -0
  1309. data/vendor/bundle/gems/rspec-core-3.0.1/License.txt +25 -0
  1310. data/vendor/bundle/gems/rspec-core-3.0.1/README.md +243 -0
  1311. data/vendor/bundle/gems/rspec-core-3.0.1/exe/rspec +4 -0
  1312. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/autorun.rb +2 -0
  1313. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/backport_random.rb +336 -0
  1314. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/backtrace_formatter.rb +70 -0
  1315. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/configuration.rb +1336 -0
  1316. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/configuration_options.rb +173 -0
  1317. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/drb.rb +111 -0
  1318. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/dsl.rb +94 -0
  1319. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/example.rb +474 -0
  1320. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/example_group.rb +697 -0
  1321. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/filter_manager.rb +260 -0
  1322. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/flat_map.rb +18 -0
  1323. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/formatters/base_formatter.rb +172 -0
  1324. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/formatters/base_text_formatter.rb +78 -0
  1325. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/formatters/console_codes.rb +65 -0
  1326. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
  1327. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/formatters/documentation_formatter.rb +69 -0
  1328. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/formatters/helpers.rb +88 -0
  1329. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/formatters/html_formatter.rb +148 -0
  1330. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/formatters/html_printer.rb +402 -0
  1331. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/formatters/json_formatter.rb +93 -0
  1332. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/formatters/profile_formatter.rb +67 -0
  1333. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/formatters/progress_formatter.rb +28 -0
  1334. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/formatters/snippet_extractor.rb +103 -0
  1335. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/formatters.rb +239 -0
  1336. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/hooks.rb +574 -0
  1337. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/memoized_helpers.rb +470 -0
  1338. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/metadata.rb +409 -0
  1339. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/metadata_filter.rb +86 -0
  1340. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/minitest_assertions_adapter.rb +28 -0
  1341. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/mocking_adapters/flexmock.rb +29 -0
  1342. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/mocking_adapters/mocha.rb +55 -0
  1343. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/mocking_adapters/null.rb +12 -0
  1344. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/mocking_adapters/rr.rb +29 -0
  1345. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/mocking_adapters/rspec.rb +30 -0
  1346. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/notifications.rb +511 -0
  1347. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/option_parser.rb +218 -0
  1348. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/ordering.rb +156 -0
  1349. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/pending.rb +165 -0
  1350. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/project_initializer/.rspec +3 -0
  1351. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/project_initializer/spec/spec_helper.rb +78 -0
  1352. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/project_initializer.rb +46 -0
  1353. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/rake_task.rb +144 -0
  1354. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/reporter.rb +152 -0
  1355. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/ruby_project.rb +45 -0
  1356. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/runner.rb +161 -0
  1357. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/shared_context.rb +55 -0
  1358. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/shared_example_group.rb +181 -0
  1359. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
  1360. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/version.rb +9 -0
  1361. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/warnings.rb +40 -0
  1362. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core/world.rb +183 -0
  1363. data/vendor/bundle/gems/rspec-core-3.0.1/lib/rspec/core.rb +167 -0
  1364. data/vendor/bundle/gems/rspec-expectations-3.0.1/.document +5 -0
  1365. data/vendor/bundle/gems/rspec-expectations-3.0.1/.yardopts +6 -0
  1366. data/vendor/bundle/gems/rspec-expectations-3.0.1/Changelog.md +728 -0
  1367. data/vendor/bundle/gems/rspec-expectations-3.0.1/License.txt +24 -0
  1368. data/vendor/bundle/gems/rspec-expectations-3.0.1/README.md +278 -0
  1369. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/expectations/configuration.rb +135 -0
  1370. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/expectations/expectation_target.rb +119 -0
  1371. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/expectations/fail_with.rb +34 -0
  1372. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/expectations/handler.rb +161 -0
  1373. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/expectations/minitest_integration.rb +17 -0
  1374. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/expectations/syntax.rb +130 -0
  1375. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/expectations/version.rb +8 -0
  1376. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/expectations.rb +68 -0
  1377. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/aliased_matcher.rb +41 -0
  1378. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/all.rb +76 -0
  1379. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/base_matcher.rb +115 -0
  1380. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/be.rb +277 -0
  1381. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/be_between.rb +77 -0
  1382. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/be_instance_of.rb +22 -0
  1383. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/be_kind_of.rb +16 -0
  1384. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/be_within.rb +79 -0
  1385. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/change.rb +334 -0
  1386. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/compound.rb +119 -0
  1387. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/contain_exactly.rb +257 -0
  1388. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/cover.rb +24 -0
  1389. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/eq.rb +75 -0
  1390. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/eql.rb +34 -0
  1391. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/equal.rb +81 -0
  1392. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/exist.rb +86 -0
  1393. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/has.rb +104 -0
  1394. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/include.rb +98 -0
  1395. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/match.rb +29 -0
  1396. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/operators.rb +119 -0
  1397. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/output.rb +150 -0
  1398. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/raise_error.rb +168 -0
  1399. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/respond_to.rb +98 -0
  1400. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/satisfy.rb +46 -0
  1401. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/start_and_end_with.rb +82 -0
  1402. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/throw_symbol.rb +128 -0
  1403. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in/yield.rb +402 -0
  1404. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/built_in.rb +51 -0
  1405. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/composable.rb +181 -0
  1406. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/dsl.rb +379 -0
  1407. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/generated_descriptions.rb +42 -0
  1408. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/matcher_delegator.rb +36 -0
  1409. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers/pretty.rb +77 -0
  1410. data/vendor/bundle/gems/rspec-expectations-3.0.1/lib/rspec/matchers.rb +921 -0
  1411. data/vendor/bundle/gems/rspec-mocks-3.0.1/.document +5 -0
  1412. data/vendor/bundle/gems/rspec-mocks-3.0.1/.yardopts +6 -0
  1413. data/vendor/bundle/gems/rspec-mocks-3.0.1/Changelog.md +709 -0
  1414. data/vendor/bundle/gems/rspec-mocks-3.0.1/License.txt +24 -0
  1415. data/vendor/bundle/gems/rspec-mocks-3.0.1/README.md +380 -0
  1416. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/any_instance/chain.rb +109 -0
  1417. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/any_instance/expect_chain_chain.rb +35 -0
  1418. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/any_instance/expectation_chain.rb +49 -0
  1419. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/any_instance/message_chains.rb +84 -0
  1420. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/any_instance/proxy.rb +116 -0
  1421. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/any_instance/recorder.rb +265 -0
  1422. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/any_instance/stub_chain.rb +47 -0
  1423. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/any_instance/stub_chain_chain.rb +27 -0
  1424. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/any_instance.rb +10 -0
  1425. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/argument_list_matcher.rb +72 -0
  1426. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/argument_matchers.rb +249 -0
  1427. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/configuration.rb +164 -0
  1428. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/error_generator.rb +247 -0
  1429. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/example_methods.rb +311 -0
  1430. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/instance_method_stasher.rb +135 -0
  1431. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/marshal_extension.rb +41 -0
  1432. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
  1433. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/matchers/have_received.rb +101 -0
  1434. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/matchers/receive.rb +106 -0
  1435. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/matchers/receive_message_chain.rb +67 -0
  1436. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/matchers/receive_messages.rb +72 -0
  1437. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/message_chain.rb +91 -0
  1438. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/message_expectation.rb +650 -0
  1439. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/method_double.rb +257 -0
  1440. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/method_reference.rb +154 -0
  1441. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/mutate_const.rb +398 -0
  1442. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/object_reference.rb +92 -0
  1443. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/order_group.rb +82 -0
  1444. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/proxy.rb +419 -0
  1445. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/space.rb +221 -0
  1446. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/standalone.rb +3 -0
  1447. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/syntax.rb +327 -0
  1448. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/targets.rb +97 -0
  1449. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/test_double.rb +126 -0
  1450. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/verifying_double.rb +127 -0
  1451. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/verifying_message_expecation.rb +60 -0
  1452. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/verifying_proxy.rb +170 -0
  1453. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks/version.rb +9 -0
  1454. data/vendor/bundle/gems/rspec-mocks-3.0.1/lib/rspec/mocks.rb +126 -0
  1455. data/vendor/bundle/gems/rspec-support-3.0.0/Changelog.md +17 -0
  1456. data/vendor/bundle/gems/rspec-support-3.0.0/LICENSE.txt +22 -0
  1457. data/vendor/bundle/gems/rspec-support-3.0.0/README.md +17 -0
  1458. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/caller_filter.rb +64 -0
  1459. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/differ.rb +205 -0
  1460. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/encoded_string.rb +66 -0
  1461. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/fuzzy_matcher.rb +47 -0
  1462. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/hunk_generator.rb +48 -0
  1463. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/method_signature_verifier.rb +205 -0
  1464. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/ruby_features.rb +35 -0
  1465. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/spec/deprecation_helpers.rb +61 -0
  1466. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/spec/formatting_support.rb +9 -0
  1467. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/spec/in_sub_process.rb +40 -0
  1468. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/spec/stderr_splitter.rb +53 -0
  1469. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/spec/with_isolated_stderr.rb +15 -0
  1470. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/spec.rb +62 -0
  1471. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/version.rb +7 -0
  1472. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/version_checker.rb +53 -0
  1473. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support/warnings.rb +36 -0
  1474. data/vendor/bundle/gems/rspec-support-3.0.0/lib/rspec/support.rb +58 -0
  1475. data/vendor/bundle/gems/safe_yaml-1.0.3/.gitignore +1 -0
  1476. data/vendor/bundle/gems/safe_yaml-1.0.3/.travis.yml +48 -0
  1477. data/vendor/bundle/gems/safe_yaml-1.0.3/CHANGES.md +149 -0
  1478. data/vendor/bundle/gems/safe_yaml-1.0.3/Gemfile +11 -0
  1479. data/vendor/bundle/gems/safe_yaml-1.0.3/LICENSE.txt +22 -0
  1480. data/vendor/bundle/gems/safe_yaml-1.0.3/README.md +191 -0
  1481. data/vendor/bundle/gems/safe_yaml-1.0.3/Rakefile +23 -0
  1482. data/vendor/bundle/gems/safe_yaml-1.0.3/bin/safe_yaml +75 -0
  1483. data/vendor/bundle/gems/safe_yaml-1.0.3/bundle_install_all_ruby_versions.sh +21 -0
  1484. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/deep.rb +34 -0
  1485. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/libyaml_checker.rb +36 -0
  1486. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/load.rb +181 -0
  1487. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/parse/date.rb +35 -0
  1488. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/parse/hexadecimal.rb +12 -0
  1489. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/parse/sexagesimal.rb +26 -0
  1490. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/psych_handler.rb +99 -0
  1491. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/psych_resolver.rb +52 -0
  1492. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/resolver.rb +94 -0
  1493. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/safe_to_ruby_visitor.rb +29 -0
  1494. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/syck_hack.rb +36 -0
  1495. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/syck_node_monkeypatch.rb +43 -0
  1496. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/syck_resolver.rb +38 -0
  1497. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/transform/to_boolean.rb +21 -0
  1498. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/transform/to_date.rb +13 -0
  1499. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/transform/to_float.rb +33 -0
  1500. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/transform/to_integer.rb +26 -0
  1501. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/transform/to_nil.rb +18 -0
  1502. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/transform/to_symbol.rb +17 -0
  1503. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/transform/transformation_map.rb +47 -0
  1504. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/transform.rb +41 -0
  1505. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml/version.rb +3 -0
  1506. data/vendor/bundle/gems/safe_yaml-1.0.3/lib/safe_yaml.rb +94 -0
  1507. data/vendor/bundle/gems/safe_yaml-1.0.3/run_specs_all_ruby_versions.sh +29 -0
  1508. data/vendor/bundle/gems/safe_yaml-1.0.3/safe_yaml.gemspec +19 -0
  1509. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/exploit.1.9.2.yaml +2 -0
  1510. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/exploit.1.9.3.yaml +2 -0
  1511. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/issue48.txt +20 -0
  1512. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/issue49.yml +0 -0
  1513. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/libyaml_checker_spec.rb +69 -0
  1514. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/psych_resolver_spec.rb +10 -0
  1515. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/resolver_specs.rb +278 -0
  1516. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/safe_yaml_spec.rb +731 -0
  1517. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/spec_helper.rb +42 -0
  1518. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/support/exploitable_back_door.rb +29 -0
  1519. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/syck_resolver_spec.rb +10 -0
  1520. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/transform/base64_spec.rb +11 -0
  1521. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/transform/to_date_spec.rb +60 -0
  1522. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/transform/to_float_spec.rb +42 -0
  1523. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/transform/to_integer_spec.rb +64 -0
  1524. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/transform/to_symbol_spec.rb +51 -0
  1525. data/vendor/bundle/gems/safe_yaml-1.0.3/spec/yaml_spec.rb +15 -0
  1526. data/vendor/bundle/gems/searchbing-0.2.4/README.md +50 -0
  1527. data/vendor/bundle/gems/searchbing-0.2.4/lib/searchbing.rb +61 -0
  1528. data/vendor/bundle/gems/slop-3.5.0/.gitignore +7 -0
  1529. data/vendor/bundle/gems/slop-3.5.0/.travis.yml +12 -0
  1530. data/vendor/bundle/gems/slop-3.5.0/CHANGES.md +303 -0
  1531. data/vendor/bundle/gems/slop-3.5.0/Gemfile +3 -0
  1532. data/vendor/bundle/gems/slop-3.5.0/LICENSE +20 -0
  1533. data/vendor/bundle/gems/slop-3.5.0/README.md +182 -0
  1534. data/vendor/bundle/gems/slop-3.5.0/Rakefile +29 -0
  1535. data/vendor/bundle/gems/slop-3.5.0/lib/slop/commands.rb +196 -0
  1536. data/vendor/bundle/gems/slop-3.5.0/lib/slop/option.rb +209 -0
  1537. data/vendor/bundle/gems/slop-3.5.0/lib/slop.rb +687 -0
  1538. data/vendor/bundle/gems/slop-3.5.0/slop.gemspec +17 -0
  1539. data/vendor/bundle/gems/slop-3.5.0/test/commands_test.rb +26 -0
  1540. data/vendor/bundle/gems/slop-3.5.0/test/helper.rb +12 -0
  1541. data/vendor/bundle/gems/slop-3.5.0/test/option_test.rb +138 -0
  1542. data/vendor/bundle/gems/slop-3.5.0/test/slop_test.rb +518 -0
  1543. data/vendor/bundle/gems/thor-0.19.1/.document +5 -0
  1544. data/vendor/bundle/gems/thor-0.19.1/CHANGELOG.md +139 -0
  1545. data/vendor/bundle/gems/thor-0.19.1/LICENSE.md +20 -0
  1546. data/vendor/bundle/gems/thor-0.19.1/README.md +41 -0
  1547. data/vendor/bundle/gems/thor-0.19.1/Thorfile +29 -0
  1548. data/vendor/bundle/gems/thor-0.19.1/bin/thor +6 -0
  1549. data/vendor/bundle/gems/thor-0.19.1/lib/thor/actions/create_file.rb +103 -0
  1550. data/vendor/bundle/gems/thor-0.19.1/lib/thor/actions/create_link.rb +59 -0
  1551. data/vendor/bundle/gems/thor-0.19.1/lib/thor/actions/directory.rb +118 -0
  1552. data/vendor/bundle/gems/thor-0.19.1/lib/thor/actions/empty_directory.rb +135 -0
  1553. data/vendor/bundle/gems/thor-0.19.1/lib/thor/actions/file_manipulation.rb +316 -0
  1554. data/vendor/bundle/gems/thor-0.19.1/lib/thor/actions/inject_into_file.rb +107 -0
  1555. data/vendor/bundle/gems/thor-0.19.1/lib/thor/actions.rb +319 -0
  1556. data/vendor/bundle/gems/thor-0.19.1/lib/thor/base.rb +656 -0
  1557. data/vendor/bundle/gems/thor-0.19.1/lib/thor/command.rb +133 -0
  1558. data/vendor/bundle/gems/thor-0.19.1/lib/thor/core_ext/hash_with_indifferent_access.rb +77 -0
  1559. data/vendor/bundle/gems/thor-0.19.1/lib/thor/core_ext/io_binary_read.rb +10 -0
  1560. data/vendor/bundle/gems/thor-0.19.1/lib/thor/core_ext/ordered_hash.rb +98 -0
  1561. data/vendor/bundle/gems/thor-0.19.1/lib/thor/error.rb +32 -0
  1562. data/vendor/bundle/gems/thor-0.19.1/lib/thor/group.rb +281 -0
  1563. data/vendor/bundle/gems/thor-0.19.1/lib/thor/invocation.rb +178 -0
  1564. data/vendor/bundle/gems/thor-0.19.1/lib/thor/line_editor/basic.rb +35 -0
  1565. data/vendor/bundle/gems/thor-0.19.1/lib/thor/line_editor/readline.rb +88 -0
  1566. data/vendor/bundle/gems/thor-0.19.1/lib/thor/line_editor.rb +17 -0
  1567. data/vendor/bundle/gems/thor-0.19.1/lib/thor/parser/argument.rb +73 -0
  1568. data/vendor/bundle/gems/thor-0.19.1/lib/thor/parser/arguments.rb +175 -0
  1569. data/vendor/bundle/gems/thor-0.19.1/lib/thor/parser/option.rb +125 -0
  1570. data/vendor/bundle/gems/thor-0.19.1/lib/thor/parser/options.rb +218 -0
  1571. data/vendor/bundle/gems/thor-0.19.1/lib/thor/parser.rb +4 -0
  1572. data/vendor/bundle/gems/thor-0.19.1/lib/thor/rake_compat.rb +71 -0
  1573. data/vendor/bundle/gems/thor-0.19.1/lib/thor/runner.rb +322 -0
  1574. data/vendor/bundle/gems/thor-0.19.1/lib/thor/shell/basic.rb +421 -0
  1575. data/vendor/bundle/gems/thor-0.19.1/lib/thor/shell/color.rb +149 -0
  1576. data/vendor/bundle/gems/thor-0.19.1/lib/thor/shell/html.rb +126 -0
  1577. data/vendor/bundle/gems/thor-0.19.1/lib/thor/shell.rb +81 -0
  1578. data/vendor/bundle/gems/thor-0.19.1/lib/thor/util.rb +267 -0
  1579. data/vendor/bundle/gems/thor-0.19.1/lib/thor/version.rb +3 -0
  1580. data/vendor/bundle/gems/thor-0.19.1/lib/thor.rb +484 -0
  1581. data/vendor/bundle/gems/thor-0.19.1/spec/actions/create_file_spec.rb +168 -0
  1582. data/vendor/bundle/gems/thor-0.19.1/spec/actions/create_link_spec.rb +96 -0
  1583. data/vendor/bundle/gems/thor-0.19.1/spec/actions/directory_spec.rb +169 -0
  1584. data/vendor/bundle/gems/thor-0.19.1/spec/actions/empty_directory_spec.rb +129 -0
  1585. data/vendor/bundle/gems/thor-0.19.1/spec/actions/file_manipulation_spec.rb +392 -0
  1586. data/vendor/bundle/gems/thor-0.19.1/spec/actions/inject_into_file_spec.rb +135 -0
  1587. data/vendor/bundle/gems/thor-0.19.1/spec/actions_spec.rb +331 -0
  1588. data/vendor/bundle/gems/thor-0.19.1/spec/base_spec.rb +298 -0
  1589. data/vendor/bundle/gems/thor-0.19.1/spec/command_spec.rb +79 -0
  1590. data/vendor/bundle/gems/thor-0.19.1/spec/core_ext/hash_with_indifferent_access_spec.rb +48 -0
  1591. data/vendor/bundle/gems/thor-0.19.1/spec/core_ext/ordered_hash_spec.rb +115 -0
  1592. data/vendor/bundle/gems/thor-0.19.1/spec/exit_condition_spec.rb +19 -0
  1593. data/vendor/bundle/gems/thor-0.19.1/spec/fixtures/application.rb +2 -0
  1594. data/vendor/bundle/gems/thor-0.19.1/spec/fixtures/app{1}/README +3 -0
  1595. data/vendor/bundle/gems/thor-0.19.1/spec/fixtures/bundle/execute.rb +6 -0
  1596. data/vendor/bundle/gems/thor-0.19.1/spec/fixtures/bundle/main.thor +1 -0
  1597. data/vendor/bundle/gems/thor-0.19.1/spec/fixtures/command.thor +10 -0
  1598. data/vendor/bundle/gems/thor-0.19.1/spec/fixtures/enum.thor +10 -0
  1599. data/vendor/bundle/gems/thor-0.19.1/spec/fixtures/group.thor +128 -0
  1600. data/vendor/bundle/gems/thor-0.19.1/spec/fixtures/invoke.thor +131 -0
  1601. data/vendor/bundle/gems/thor-0.19.1/spec/fixtures/path with spaces +0 -0
  1602. data/vendor/bundle/gems/thor-0.19.1/spec/fixtures/preserve/script.sh +3 -0
  1603. data/vendor/bundle/gems/thor-0.19.1/spec/fixtures/script.thor +220 -0
  1604. data/vendor/bundle/gems/thor-0.19.1/spec/fixtures/subcommand.thor +17 -0
  1605. data/vendor/bundle/gems/thor-0.19.1/spec/group_spec.rb +222 -0
  1606. data/vendor/bundle/gems/thor-0.19.1/spec/helper.rb +80 -0
  1607. data/vendor/bundle/gems/thor-0.19.1/spec/invocation_spec.rb +120 -0
  1608. data/vendor/bundle/gems/thor-0.19.1/spec/line_editor/basic_spec.rb +28 -0
  1609. data/vendor/bundle/gems/thor-0.19.1/spec/line_editor/readline_spec.rb +69 -0
  1610. data/vendor/bundle/gems/thor-0.19.1/spec/line_editor_spec.rb +43 -0
  1611. data/vendor/bundle/gems/thor-0.19.1/spec/parser/argument_spec.rb +53 -0
  1612. data/vendor/bundle/gems/thor-0.19.1/spec/parser/arguments_spec.rb +66 -0
  1613. data/vendor/bundle/gems/thor-0.19.1/spec/parser/option_spec.rb +210 -0
  1614. data/vendor/bundle/gems/thor-0.19.1/spec/parser/options_spec.rb +414 -0
  1615. data/vendor/bundle/gems/thor-0.19.1/spec/quality_spec.rb +75 -0
  1616. data/vendor/bundle/gems/thor-0.19.1/spec/rake_compat_spec.rb +72 -0
  1617. data/vendor/bundle/gems/thor-0.19.1/spec/register_spec.rb +227 -0
  1618. data/vendor/bundle/gems/thor-0.19.1/spec/runner_spec.rb +246 -0
  1619. data/vendor/bundle/gems/thor-0.19.1/spec/sandbox/application.rb +2 -0
  1620. data/vendor/bundle/gems/thor-0.19.1/spec/sandbox/app{1}/README +3 -0
  1621. data/vendor/bundle/gems/thor-0.19.1/spec/sandbox/bundle/execute.rb +6 -0
  1622. data/vendor/bundle/gems/thor-0.19.1/spec/sandbox/bundle/main.thor +1 -0
  1623. data/vendor/bundle/gems/thor-0.19.1/spec/sandbox/command.thor +10 -0
  1624. data/vendor/bundle/gems/thor-0.19.1/spec/sandbox/enum.thor +10 -0
  1625. data/vendor/bundle/gems/thor-0.19.1/spec/sandbox/group.thor +128 -0
  1626. data/vendor/bundle/gems/thor-0.19.1/spec/sandbox/invoke.thor +131 -0
  1627. data/vendor/bundle/gems/thor-0.19.1/spec/sandbox/path with spaces +0 -0
  1628. data/vendor/bundle/gems/thor-0.19.1/spec/sandbox/preserve/script.sh +3 -0
  1629. data/vendor/bundle/gems/thor-0.19.1/spec/sandbox/script.thor +220 -0
  1630. data/vendor/bundle/gems/thor-0.19.1/spec/sandbox/subcommand.thor +17 -0
  1631. data/vendor/bundle/gems/thor-0.19.1/spec/shell/basic_spec.rb +337 -0
  1632. data/vendor/bundle/gems/thor-0.19.1/spec/shell/color_spec.rb +119 -0
  1633. data/vendor/bundle/gems/thor-0.19.1/spec/shell/html_spec.rb +31 -0
  1634. data/vendor/bundle/gems/thor-0.19.1/spec/shell_spec.rb +47 -0
  1635. data/vendor/bundle/gems/thor-0.19.1/spec/subcommand_spec.rb +48 -0
  1636. data/vendor/bundle/gems/thor-0.19.1/spec/thor_spec.rb +505 -0
  1637. data/vendor/bundle/gems/thor-0.19.1/spec/util_spec.rb +196 -0
  1638. data/vendor/bundle/gems/thor-0.19.1/thor.gemspec +24 -0
  1639. data/vendor/bundle/gems/thread_safe-0.3.4/.travis.yml +24 -0
  1640. data/vendor/bundle/gems/thread_safe-0.3.4/Gemfile +4 -0
  1641. data/vendor/bundle/gems/thread_safe-0.3.4/LICENSE +144 -0
  1642. data/vendor/bundle/gems/thread_safe-0.3.4/README.md +56 -0
  1643. data/vendor/bundle/gems/thread_safe-0.3.4/Rakefile +48 -0
  1644. data/vendor/bundle/gems/thread_safe-0.3.4/examples/bench_cache.rb +35 -0
  1645. data/vendor/bundle/gems/thread_safe-0.3.4/ext/org/jruby/ext/thread_safe/JRubyCacheBackendLibrary.java +245 -0
  1646. data/vendor/bundle/gems/thread_safe-0.3.4/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMap.java +31 -0
  1647. data/vendor/bundle/gems/thread_safe-0.3.4/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMapV8.java +3863 -0
  1648. data/vendor/bundle/gems/thread_safe-0.3.4/ext/org/jruby/ext/thread_safe/jsr166e/LongAdder.java +203 -0
  1649. data/vendor/bundle/gems/thread_safe-0.3.4/ext/org/jruby/ext/thread_safe/jsr166e/Striped64.java +342 -0
  1650. data/vendor/bundle/gems/thread_safe-0.3.4/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
  1651. data/vendor/bundle/gems/thread_safe-0.3.4/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/LongAdder.java +204 -0
  1652. data/vendor/bundle/gems/thread_safe-0.3.4/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/Striped64.java +291 -0
  1653. data/vendor/bundle/gems/thread_safe-0.3.4/ext/org/jruby/ext/thread_safe/jsr166y/ThreadLocalRandom.java +199 -0
  1654. data/vendor/bundle/gems/thread_safe-0.3.4/ext/thread_safe/JrubyCacheBackendService.java +15 -0
  1655. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/atomic_reference_cache_backend.rb +922 -0
  1656. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/cache.rb +163 -0
  1657. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/mri_cache_backend.rb +62 -0
  1658. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/non_concurrent_cache_backend.rb +133 -0
  1659. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/synchronized_cache_backend.rb +76 -0
  1660. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/synchronized_delegator.rb +60 -0
  1661. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/util/adder.rb +59 -0
  1662. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/util/atomic_reference.rb +45 -0
  1663. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/util/cheap_lockable.rb +105 -0
  1664. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/util/power_of_two_tuple.rb +26 -0
  1665. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/util/striped64.rb +226 -0
  1666. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/util/volatile.rb +62 -0
  1667. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/util/volatile_tuple.rb +46 -0
  1668. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/util/xor_shift_random.rb +39 -0
  1669. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/util.rb +16 -0
  1670. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/version.rb +21 -0
  1671. data/vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe.rb +65 -0
  1672. data/vendor/bundle/gems/thread_safe-0.3.4/test/src/thread_safe/SecurityManager.java +21 -0
  1673. data/vendor/bundle/gems/thread_safe-0.3.4/test/test_array.rb +18 -0
  1674. data/vendor/bundle/gems/thread_safe-0.3.4/test/test_cache.rb +901 -0
  1675. data/vendor/bundle/gems/thread_safe-0.3.4/test/test_cache_loops.rb +449 -0
  1676. data/vendor/bundle/gems/thread_safe-0.3.4/test/test_hash.rb +17 -0
  1677. data/vendor/bundle/gems/thread_safe-0.3.4/test/test_helper.rb +113 -0
  1678. data/vendor/bundle/gems/thread_safe-0.3.4/test/test_synchronized_delegator.rb +84 -0
  1679. data/vendor/bundle/gems/thread_safe-0.3.4/thread_safe.gemspec +26 -0
  1680. data/vendor/bundle/gems/tzinfo-1.2.1/.yardopts +6 -0
  1681. data/vendor/bundle/gems/tzinfo-1.2.1/CHANGES.md +638 -0
  1682. data/vendor/bundle/gems/tzinfo-1.2.1/LICENSE +19 -0
  1683. data/vendor/bundle/gems/tzinfo-1.2.1/README.md +151 -0
  1684. data/vendor/bundle/gems/tzinfo-1.2.1/Rakefile +104 -0
  1685. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/country.rb +180 -0
  1686. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/country_index_definition.rb +31 -0
  1687. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/country_info.rb +42 -0
  1688. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/country_timezone.rb +123 -0
  1689. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/data_source.rb +190 -0
  1690. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/data_timezone.rb +58 -0
  1691. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/data_timezone_info.rb +55 -0
  1692. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/info_timezone.rb +30 -0
  1693. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/linked_timezone.rb +63 -0
  1694. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/linked_timezone_info.rb +26 -0
  1695. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/offset_rationals.rb +77 -0
  1696. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/ruby_core_support.rb +146 -0
  1697. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/ruby_country_info.rb +70 -0
  1698. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/ruby_data_source.rb +136 -0
  1699. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/time_or_datetime.rb +333 -0
  1700. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/timezone.rb +636 -0
  1701. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/timezone_definition.rb +36 -0
  1702. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/timezone_index_definition.rb +54 -0
  1703. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/timezone_info.rb +30 -0
  1704. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/timezone_offset.rb +74 -0
  1705. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/timezone_period.rb +204 -0
  1706. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/timezone_proxy.rb +70 -0
  1707. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/timezone_transition.rb +120 -0
  1708. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/timezone_transition_definition.rb +101 -0
  1709. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/transition_data_timezone_info.rb +274 -0
  1710. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/zoneinfo_country_info.rb +35 -0
  1711. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/zoneinfo_data_source.rb +460 -0
  1712. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo/zoneinfo_timezone_info.rb +245 -0
  1713. data/vendor/bundle/gems/tzinfo-1.2.1/lib/tzinfo.rb +40 -0
  1714. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_country.rb +236 -0
  1715. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_country_index_definition.rb +69 -0
  1716. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_country_info.rb +16 -0
  1717. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_country_timezone.rb +161 -0
  1718. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_data_source.rb +192 -0
  1719. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_data_timezone.rb +99 -0
  1720. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_data_timezone_info.rb +18 -0
  1721. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_info_timezone.rb +34 -0
  1722. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_linked_timezone.rb +155 -0
  1723. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_linked_timezone_info.rb +23 -0
  1724. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_offset_rationals.rb +23 -0
  1725. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_ruby_core_support.rb +168 -0
  1726. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_ruby_country_info.rb +80 -0
  1727. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_ruby_data_source.rb +143 -0
  1728. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_time_or_datetime.rb +639 -0
  1729. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_timezone.rb +1334 -0
  1730. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_timezone_definition.rb +113 -0
  1731. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_timezone_index_definition.rb +73 -0
  1732. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_timezone_info.rb +11 -0
  1733. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_timezone_london.rb +143 -0
  1734. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_timezone_melbourne.rb +142 -0
  1735. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_timezone_new_york.rb +142 -0
  1736. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_timezone_offset.rb +126 -0
  1737. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_timezone_period.rb +548 -0
  1738. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_timezone_proxy.rb +113 -0
  1739. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_timezone_transition.rb +352 -0
  1740. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_timezone_transition_definition.rb +284 -0
  1741. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_timezone_utc.rb +27 -0
  1742. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_transition_data_timezone_info.rb +423 -0
  1743. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_zoneinfo_country_info.rb +64 -0
  1744. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_zoneinfo_data_source.rb +985 -0
  1745. data/vendor/bundle/gems/tzinfo-1.2.1/test/tc_zoneinfo_timezone_info.rb +814 -0
  1746. data/vendor/bundle/gems/tzinfo-1.2.1/test/test_utils.rb +132 -0
  1747. data/vendor/bundle/gems/tzinfo-1.2.1/test/ts_all.rb +7 -0
  1748. data/vendor/bundle/gems/tzinfo-1.2.1/test/ts_all_ruby.rb +5 -0
  1749. data/vendor/bundle/gems/tzinfo-1.2.1/test/ts_all_zoneinfo.rb +7 -0
  1750. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/definitions/America/Argentina/Buenos_Aires.rb +89 -0
  1751. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/definitions/America/New_York.rb +315 -0
  1752. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/definitions/Australia/Melbourne.rb +218 -0
  1753. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/definitions/EST.rb +19 -0
  1754. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__m__1.rb +21 -0
  1755. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__p__1.rb +21 -0
  1756. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/definitions/Etc/UTC.rb +21 -0
  1757. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/definitions/Europe/Amsterdam.rb +261 -0
  1758. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/definitions/Europe/Andorra.rb +186 -0
  1759. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/definitions/Europe/London.rb +321 -0
  1760. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/definitions/Europe/Paris.rb +265 -0
  1761. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/definitions/Europe/Prague.rb +220 -0
  1762. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/definitions/UTC.rb +16 -0
  1763. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/indexes/countries.rb +927 -0
  1764. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/indexes/timezones.rb +594 -0
  1765. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data/version.rb +14 -0
  1766. data/vendor/bundle/gems/tzinfo-1.2.1/test/tzinfo-data/tzinfo/data.rb +8 -0
  1767. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/America/Argentina/Buenos_Aires +0 -0
  1768. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/America/New_York +0 -0
  1769. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/Australia/Melbourne +0 -0
  1770. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/EST +0 -0
  1771. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/Etc/UTC +0 -0
  1772. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/Europe/Amsterdam +0 -0
  1773. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/Europe/Andorra +0 -0
  1774. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/Europe/London +0 -0
  1775. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/Europe/Paris +0 -0
  1776. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/Europe/Prague +0 -0
  1777. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/Factory +0 -0
  1778. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/iso3166.tab +275 -0
  1779. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/posix/Europe/London +0 -0
  1780. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/posixrules +0 -0
  1781. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/right/Europe/London +0 -0
  1782. data/vendor/bundle/gems/tzinfo-1.2.1/test/zoneinfo/zone.tab +452 -0
  1783. data/vendor/bundle/gems/tzinfo-1.2.1/tzinfo.gemspec +21 -0
  1784. data/vendor/bundle/gems/webmock-1.18.0/.gemtest +0 -0
  1785. data/vendor/bundle/gems/webmock-1.18.0/.gitignore +30 -0
  1786. data/vendor/bundle/gems/webmock-1.18.0/.rspec-tm +2 -0
  1787. data/vendor/bundle/gems/webmock-1.18.0/.travis.yml +17 -0
  1788. data/vendor/bundle/gems/webmock-1.18.0/CHANGELOG.md +1081 -0
  1789. data/vendor/bundle/gems/webmock-1.18.0/Gemfile +20 -0
  1790. data/vendor/bundle/gems/webmock-1.18.0/LICENSE +20 -0
  1791. data/vendor/bundle/gems/webmock-1.18.0/README.md +926 -0
  1792. data/vendor/bundle/gems/webmock-1.18.0/Rakefile +53 -0
  1793. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/api.rb +85 -0
  1794. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/assertion_failure.rb +11 -0
  1795. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/callback_registry.rb +35 -0
  1796. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/config.rb +10 -0
  1797. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/cucumber.rb +8 -0
  1798. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/deprecation.rb +9 -0
  1799. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/errors.rb +33 -0
  1800. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/curb_adapter.rb +270 -0
  1801. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/em_http_request/em_http_request_0_x.rb +147 -0
  1802. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/em_http_request/em_http_request_1_x.rb +208 -0
  1803. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/em_http_request_adapter.rb +11 -0
  1804. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/excon_adapter.rb +154 -0
  1805. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/http_gem/client.rb +14 -0
  1806. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/http_gem/request.rb +10 -0
  1807. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/http_gem/response.rb +21 -0
  1808. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/http_gem/streamer.rb +13 -0
  1809. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/http_gem/webmock.rb +62 -0
  1810. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/http_gem_adapter.rb +38 -0
  1811. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/http_lib_adapter.rb +7 -0
  1812. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/http_lib_adapter_registry.rb +19 -0
  1813. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/httpclient_adapter.rb +214 -0
  1814. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/net_http.rb +307 -0
  1815. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/net_http_response.rb +34 -0
  1816. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/patron_adapter.rb +126 -0
  1817. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/http_lib_adapters/typhoeus_hydra_adapter.rb +169 -0
  1818. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/matchers/hash_including_matcher.rb +36 -0
  1819. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/minitest.rb +39 -0
  1820. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/rack_response.rb +69 -0
  1821. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/request_execution_verifier.rb +56 -0
  1822. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/request_pattern.rb +315 -0
  1823. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/request_registry.rb +35 -0
  1824. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/request_signature.rb +50 -0
  1825. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/request_stub.rb +97 -0
  1826. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/response.rb +146 -0
  1827. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/responses_sequence.rb +40 -0
  1828. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/rspec/matchers/request_pattern_matcher.rb +44 -0
  1829. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/rspec/matchers/webmock_matcher.rb +48 -0
  1830. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/rspec/matchers.rb +28 -0
  1831. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/rspec.rb +33 -0
  1832. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/stub_registry.rb +67 -0
  1833. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/stub_request_snippet.rb +30 -0
  1834. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/test_unit.rb +20 -0
  1835. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/util/hash_counter.rb +32 -0
  1836. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/util/hash_keys_stringifier.rb +23 -0
  1837. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/util/headers.rb +43 -0
  1838. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/util/json.rb +59 -0
  1839. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/util/query_mapper.rb +194 -0
  1840. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/util/uri.rb +110 -0
  1841. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/util/version_checker.rb +94 -0
  1842. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/version.rb +3 -0
  1843. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock/webmock.rb +126 -0
  1844. data/vendor/bundle/gems/webmock-1.18.0/lib/webmock.rb +52 -0
  1845. data/vendor/bundle/gems/webmock-1.18.0/minitest/test_helper.rb +34 -0
  1846. data/vendor/bundle/gems/webmock-1.18.0/minitest/test_webmock.rb +9 -0
  1847. data/vendor/bundle/gems/webmock-1.18.0/minitest/webmock_spec.rb +60 -0
  1848. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/curb/curb_spec.rb +401 -0
  1849. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/curb/curb_spec_helper.rb +144 -0
  1850. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/em_http_request/em_http_request_spec.rb +273 -0
  1851. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/em_http_request/em_http_request_spec_helper.rb +73 -0
  1852. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/excon/excon_spec.rb +65 -0
  1853. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/excon/excon_spec_helper.rb +43 -0
  1854. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/http_gem/http_gem_spec.rb +50 -0
  1855. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/http_gem/http_gem_spec_helper.rb +43 -0
  1856. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/httpclient/httpclient_spec.rb +155 -0
  1857. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/httpclient/httpclient_spec_helper.rb +48 -0
  1858. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/net_http/net_http_shared.rb +142 -0
  1859. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/net_http/net_http_spec.rb +278 -0
  1860. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/net_http/net_http_spec_helper.rb +55 -0
  1861. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/net_http/real_net_http_spec.rb +20 -0
  1862. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/patron/patron_spec.rb +136 -0
  1863. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/patron/patron_spec_helper.rb +50 -0
  1864. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/shared/allowing_and_disabling_net_connect.rb +142 -0
  1865. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/shared/callbacks.rb +146 -0
  1866. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/shared/complex_cross_concern_behaviors.rb +36 -0
  1867. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/shared/enabling_and_disabling_webmock.rb +95 -0
  1868. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/shared/precedence_of_stubs.rb +15 -0
  1869. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/shared/request_expectations.rb +666 -0
  1870. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/shared/returning_declared_responses.rb +388 -0
  1871. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/shared/stubbing_requests.rb +523 -0
  1872. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/typhoeus/typhoeus_hydra_spec.rb +123 -0
  1873. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/typhoeus/typhoeus_hydra_spec_helper.rb +57 -0
  1874. data/vendor/bundle/gems/webmock-1.18.0/spec/acceptance/webmock_shared.rb +41 -0
  1875. data/vendor/bundle/gems/webmock-1.18.0/spec/quality_spec.rb +84 -0
  1876. data/vendor/bundle/gems/webmock-1.18.0/spec/spec_helper.rb +61 -0
  1877. data/vendor/bundle/gems/webmock-1.18.0/spec/support/example_curl_output.txt +22 -0
  1878. data/vendor/bundle/gems/webmock-1.18.0/spec/support/my_rack_app.rb +53 -0
  1879. data/vendor/bundle/gems/webmock-1.18.0/spec/support/network_connection.rb +25 -0
  1880. data/vendor/bundle/gems/webmock-1.18.0/spec/support/webmock_server.rb +69 -0
  1881. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/api_spec.rb +75 -0
  1882. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/errors_spec.rb +50 -0
  1883. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/http_lib_adapters/http_lib_adapter_registry_spec.rb +17 -0
  1884. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/http_lib_adapters/http_lib_adapter_spec.rb +12 -0
  1885. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/matchers/hash_including_matcher_spec.rb +87 -0
  1886. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/rack_response_spec.rb +102 -0
  1887. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/request_execution_verifier_spec.rb +100 -0
  1888. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/request_pattern_spec.rb +545 -0
  1889. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/request_registry_spec.rb +75 -0
  1890. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/request_signature_spec.rb +113 -0
  1891. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/request_stub_spec.rb +198 -0
  1892. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/response_spec.rb +271 -0
  1893. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/stub_registry_spec.rb +103 -0
  1894. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/stub_request_snippet_spec.rb +95 -0
  1895. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/util/hash_counter_spec.rb +39 -0
  1896. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/util/hash_keys_stringifier_spec.rb +27 -0
  1897. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/util/headers_spec.rb +28 -0
  1898. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/util/json_spec.rb +7 -0
  1899. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/util/query_mapper_spec.rb +30 -0
  1900. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/util/uri_spec.rb +270 -0
  1901. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/util/version_checker_spec.rb +59 -0
  1902. data/vendor/bundle/gems/webmock-1.18.0/spec/unit/webmock_spec.rb +7 -0
  1903. data/vendor/bundle/gems/webmock-1.18.0/test/http_request.rb +24 -0
  1904. data/vendor/bundle/gems/webmock-1.18.0/test/shared_test.rb +88 -0
  1905. data/vendor/bundle/gems/webmock-1.18.0/test/test_helper.rb +23 -0
  1906. data/vendor/bundle/gems/webmock-1.18.0/test/test_webmock.rb +6 -0
  1907. data/vendor/bundle/gems/webmock-1.18.0/webmock.gemspec +37 -0
  1908. data/vendor/bundle/specifications/activesupport-4.1.1.gemspec +46 -0
  1909. data/vendor/bundle/specifications/addressable-2.3.6.gemspec +42 -0
  1910. data/vendor/bundle/specifications/coderay-1.1.0.gemspec +26 -0
  1911. data/vendor/bundle/specifications/crack-0.4.2.gemspec +32 -0
  1912. data/vendor/bundle/specifications/diff-lcs-1.2.5.gemspec +68 -0
  1913. data/vendor/bundle/specifications/faraday-0.9.0.gemspec +34 -0
  1914. data/vendor/bundle/specifications/hashie-3.0.0.gemspec +35 -0
  1915. data/vendor/bundle/specifications/i18n-0.6.9.gemspec +42 -0
  1916. data/vendor/bundle/specifications/interception-0.5.gemspec +37 -0
  1917. data/vendor/bundle/specifications/method_source-0.8.2.gemspec +34 -0
  1918. data/vendor/bundle/specifications/mini_portile-0.6.0.gemspec +24 -0
  1919. data/vendor/bundle/specifications/minitest-5.3.4.gemspec +39 -0
  1920. data/vendor/bundle/specifications/multipart-post-2.0.0.gemspec +22 -0
  1921. data/vendor/bundle/specifications/nokogiri-1.6.2.1.gemspec +73 -0
  1922. data/vendor/bundle/specifications/pry-0.10.0.gemspec +43 -0
  1923. data/vendor/bundle/specifications/pry-rescue-1.4.1.gemspec +54 -0
  1924. data/vendor/bundle/specifications/rake-10.3.2.gemspec +45 -0
  1925. data/vendor/bundle/specifications/rspec-3.0.0.gemspec +43 -0
  1926. data/vendor/bundle/specifications/rspec-core-3.0.1.gemspec +66 -0
  1927. data/vendor/bundle/specifications/rspec-expectations-3.0.1.gemspec +51 -0
  1928. data/vendor/bundle/specifications/rspec-mocks-3.0.1.gemspec +48 -0
  1929. data/vendor/bundle/specifications/rspec-support-3.0.0.gemspec +42 -0
  1930. data/vendor/bundle/specifications/safe_yaml-1.0.3.gemspec +23 -0
  1931. data/vendor/bundle/specifications/searchbing-0.2.4.gemspec +20 -0
  1932. data/vendor/bundle/specifications/slop-3.5.0.gemspec +36 -0
  1933. data/vendor/bundle/specifications/thor-0.19.1.gemspec +34 -0
  1934. data/vendor/bundle/specifications/thread_safe-0.3.4.gemspec +38 -0
  1935. data/vendor/bundle/specifications/tzinfo-1.2.1.gemspec +37 -0
  1936. data/vendor/bundle/specifications/webmock-1.18.0.gemspec +66 -0
  1937. data/whos_dated_who.gemspec +33 -0
  1938. metadata +2140 -0
@@ -0,0 +1,1436 @@
1
+ ### 3.0.1 / 2014-06-12
2
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0...v3.0.1)
3
+
4
+ Bug Fixes:
5
+
6
+ * Fix a couple ruby warnings caused by rspec-core when loaded.
7
+ (Prem Sichanugrist, #1584)
8
+ * Example groups named `Config` will no longer cause a Ruby warning to be
9
+ issued. (Jimmy Cuadra, #1580)
10
+
11
+ ### 3.0.0 / 2014-06-01
12
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.rc1...v3.0.0)
13
+
14
+ Bug Fixes:
15
+
16
+ * Fix `BaseTextFormatter` so that it does not re-close a closed output
17
+ stream. (Myron Marston)
18
+ * Fix regression in metadata that caused the metadata hash of a top-level
19
+ example group to have a `:parent_example_group` key even though it has
20
+ no parent example group. (Myron Marston)
21
+
22
+ Enhancements:
23
+
24
+ * Alter the default `spec_helper.rb` to no longer recommend
25
+ `config.full_backtrace = true` see #1536 for discussion. (Jon Rowe)
26
+
27
+ ### 3.0.0.rc1 / 2014-05-18
28
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.beta2...v3.0.0.rc1)
29
+
30
+ Breaking Changes for 3.0.0:
31
+
32
+ * Change `described_class` so that in a nested group like `describe
33
+ MyClass`, it returns `MyClass` rather than the outer group's described
34
+ class. (Myron Marston)
35
+ * Refactor filter manager so that it no longer subclasses Hash and has a
36
+ tighter, more domain-specific interface. (Sergey Pchelincev)
37
+ * Remove legacy colours definitions from `BaseTextFormatter`. (Jon Rowe)
38
+ * Remove console color definitions from `BaseTextFormatter`. (Jon Rowe)
39
+ * Restructure example group metadata so that the computed keys are
40
+ exposed directly off of the metadata hash rather than being on
41
+ a nested `:example_group` subhash. In addition, the parent example
42
+ group metadata is now available as `[:parent_example_group]` rather
43
+ than `[:example_group][:example_group]`. Deprecated access via the
44
+ old key structure is still provided. (Myron Marston)
45
+ * Remove `:describes` metadata key. It duplicates `:described_class`
46
+ for no good reason. Deprecated access via `:describes` is still
47
+ provided. (Myron Marston)
48
+ * Rename `:example_group_block` metadata key to `:block`.
49
+ (Myron Marston)
50
+ * Remove deprecated `RSpec::Core::Example#options`. (Myron Marston)
51
+ * Move `BaseTextFormatter#colorize_summary` to `SummaryNotification#colorize_with`
52
+ (Jon Rowe).
53
+ * `describe some_hash` treated `some_hash` as metadata in RSpec 2.x but
54
+ will treat it as the described object in RSpec 3.0. Metadata must
55
+ always come after the description args. (Myron Marston)
56
+ * Remove deprecated `display_name` alias of `ExampleGroup.description`.
57
+ (Myron Marston)
58
+ * Remove deprecated `describes` alias of `ExampleGroup.described_class`.
59
+ (Myron Marston)
60
+ * Remove deprecated `RSpec::Core::ExampleGroup.alias_it_behaves_like_to`.
61
+ Use `RSpec::Core::Configuration#alias_it_behaves_like_to` instead.
62
+ (Myron Marston)
63
+ * Remove deprecated `RSpec::Core::ExampleGroup.alias_example_to`.
64
+ Use `RSpec::Core::Configuration#alias_example_to` instead.
65
+ (Myron Marston)
66
+ * Removed `focused` example alias and change example/group aliases
67
+ `fit`, `focus`, `fcontext` and `fdescribe` to no longer include
68
+ `:focused => true` metadata. They only contain `:focus => true`
69
+ metadata now. This means that you will need to filter them with
70
+ `filter_run :focus`, not `filter_run :focused`. (Myron Marston)
71
+ * Remove `--line-number` filtering. It's semantically dubious since it's
72
+ a global filter (potentially applied to multiple files) but there's no
73
+ meaningful connection between the same line number in multiple files.
74
+ Instead use the `rspec path/to/spec.rb:23:46` form, which is terser
75
+ and makes more sense as it is scoped to a file. (Myron Marston)
76
+ * Remove `--default_path` as an alias for `--default-path`. (Jon Rowe)
77
+ * Remove deprecated `share_examples_for`. There's still
78
+ `shared_examples` and `shared_examples_for`. (Myron Marston)
79
+ * Rename `RSpec::Core::Configuration#warnings` to
80
+ `RSpec::Core::Configuration#warnings?` since it's a boolean flag.
81
+ (Myron Marston)
82
+ * RSpec's global state is no longer reset after a spec run. This gives
83
+ more flexibility to alternate runners to decide when and if they
84
+ want the state reset. Alternate runners are now responsible for
85
+ calling this (or doing a similar reset) if they are going to run
86
+ the spec suite multiple times in the same process. (Sam Phippen)
87
+ * Merge `RSpec::Core::CommandLine` (never formally declared public)
88
+ into `RSpec::Core::Runner`. (Myron Marston)
89
+ * Remove `color_enabled` as an alias of `color`. (Jon Rowe)
90
+ * Remove `backtrace_cleaner` as an alias of `backtrace_formatter`. (Jon Rowe)
91
+ * Remove `filename_pattern` as an alias of `pattern`. (Jon Rowe)
92
+ * Extract support for legacy formatters to `rspec-legacy_formatters`. (Jon Rowe)
93
+ * `RSpec::Configuration#formatters` now returns a dup to prevent mutation. (Jon Rowe)
94
+ * Replace `stdlib` as an available expectation framework with `test_unit` and
95
+ `minitest`. (Aaron Kromer)
96
+ * Remove backtrace formatting helpers from `BaseTextFormatter`. (Jon Rowe)
97
+ * Extract profiler support to `ProfileFormatter` and `ProfileNotification`.
98
+ Formatters should implement `dump_profile` if they wish to respond to `--profile`.
99
+ (Jon Rowe)
100
+ * Extract remaining formatter state to reporter and notifications. Introduce
101
+ `ExamplesNotification` to share information about examples that was previously
102
+ held in `BaseFormatter`. (Jon Rowe)
103
+
104
+ Enhancements:
105
+
106
+ * Add `config.default_formatter` attribute, which can be used to set a
107
+ formatter which will only be used if no other formatter is set
108
+ (e.g. via `--formatter`). (Myron Marston)
109
+ * Support legacy colour definitions in `LegacyFormatterAdaptor`. (Jon Rowe)
110
+ * Migrate `execution_result` (exposed by metadata) from a hash to a
111
+ first-class object with appropriate attributes. `status` is now
112
+ stored and returned as a symbol rather than a string. It retains
113
+ deprecated hash behavior for backwards compatibility. (Myron Marston)
114
+ * Provide console code helper for formatters. (Jon Rowe)
115
+ * Use raw ruby hashes for the metadata hashes rather than a subclass of
116
+ a hash. Computed metadata entries are now computed in advance rather
117
+ than being done lazily on first access. (Myron Marston)
118
+ * Add `:block` metadata entry to the example metadata, bringing
119
+ parity with `:block` in the example group metadata. (Myron Marston)
120
+ * Add `fspecify` and `fexample` as aliases of `specify` and `example`
121
+ with `:focus => true` metadata for parity with `fit`. (Myron Marston)
122
+ * Add legacy support for `colorize_summary`. (Jon Rowe)
123
+ * Restructure runner so it can be more easily customized in a subclass
124
+ for an alternate runner. (Ben Hoskings)
125
+ * Document `RSpec::Core::ConfigurationOptions` as an officially
126
+ supported public API. (Myron Marston)
127
+ * Add `--deprecation-out` CLI option which directs deprecation warnings
128
+ to the named file. (Myron Marston)
129
+ * Minitest 5 compatability for `expect_with :stdlib` (now available as
130
+ `expect_with :minitest`). (Xavier Shay)
131
+ * Reporter now notifies formatters of the load time of RSpec and your
132
+ specs via `StartNotification` and `SummaryNotification`. (Jon Rowe)
133
+ * Add `disable_monkey_patching!` config option that disables all monkey
134
+ patching from whatever pieces of RSpec you use. (Alexey Fedorov)
135
+ * Add `Pathname` support for setting all output streams. (Aaron Kromer)
136
+ * Add `config.define_derived_metadata`, which can be used to apply
137
+ additional metadata to all groups or examples that match a given
138
+ filter. (Myron Marston)
139
+ * Provide formatted and colorized backtraces via `FailedExampleNotification`
140
+ and send `PendingExampleFixedNotifications` when the error is due to a
141
+ passing spec you expect to fail. (Jon Rowe)
142
+ * Add `dump_profile` to formatter API to allow formatters to implement
143
+ support for `--profile`. (Jon Rowe)
144
+ * Allow colourising text via `ConsoleCodes` with RSpec 'states'
145
+ (e.g. `:success`, `:failure`) rather than direct colour codes. (Jon Rowe)
146
+ * Expose `fully_formatted` methods off the formatter notification objects
147
+ that make it easy for a custom formatter to produce formatted output
148
+ like rspec-core's. (Myron Marston)
149
+
150
+ Bug Fixes:
151
+
152
+ * Fix `spec_helper.rb` file generated by `rspec --init` so that the
153
+ recommended settings correctly use the documentation formatter
154
+ when running one file. (Myron Marston)
155
+ * Fix ordering problem where descriptions were generated after
156
+ tearing down mocks, which resulted in unexpected exceptions.
157
+ (Bradley Schaefer, Aaron Kromer, Andrey Savchenko)
158
+ * Allow a symbol to be used as an implicit subject (e.g. `describe
159
+ :foo`). (Myron Marston)
160
+ * Prevent creating an isolated context (i.e. using `RSpec.describe`) when
161
+ already inside a context. There is no reason to do this, and it could
162
+ potentially cause unexpected bugs. (Xavier Shay)
163
+ * Fix shared example group scoping so that when two shared example
164
+ groups share the same name at different levels of nested contexts,
165
+ the one in the nearest context is used. (Myron Marston)
166
+ * Fix `--warnings` option so that it enables warnings immediately so
167
+ that it applies to files loaded by `--require`. (Myron Marston)
168
+ * Issue a warning when you set `config.deprecation_stream` too late for
169
+ it to take effect because the reporter has already been setup. (Myron Marston)
170
+ * Add the full `RSpec::Core::Example` interface to the argument yielded
171
+ to `around` hooks. (Myron Marston)
172
+ * Line number always takes precendence when running specs with filters.
173
+ (Xavier Shay)
174
+ * Ensure :if and :unless metadata filters are treated as a special case
175
+ and are always in-effect. (Bradley Schaefer)
176
+ * Ensure the currently running installation of RSpec is used when
177
+ the rake task shells out to `rspec`, even if a newer version is also
178
+ installed. (Postmodern)
179
+ * Using a legacy formatter as default no longer causes an infinite loop.
180
+ (Xavier Shay)
181
+
182
+ ### 3.0.0.beta2 / 2014-02-17
183
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.beta1...v3.0.0.beta2)
184
+
185
+ Breaking Changes for 3.0.0:
186
+
187
+ * Make `mock_with` option more strict. Strings are no longer supported
188
+ (e.g. `mock_with "mocha"`) -- use a symbol instead. Also, unrecognized
189
+ values will now result in an error rather than falling back to the
190
+ null mocking adapter. If you want to use the null mocking adapter,
191
+ use `mock_with :nothing` (as has been documented for a long time).
192
+ (Myron Marston)
193
+ * Remove support for overriding RSpec's built-in `:if` and `:unless`
194
+ filters. (Ashish Dixit)
195
+ * Custom formatters are now required to call
196
+ `RSpec::Core::Formatters.register(formatter_class, *notifications)`
197
+ where `notifications` is the list of events the formatter wishes to
198
+ be notified about. Notifications are handled by methods matching the
199
+ names on formatters. This allows us to add or remove notifications
200
+ without breaking existing formatters. (Jon Rowe)
201
+ * Change arguments passed to formatters. Rather than passing multiple
202
+ arguments (which limits are ability to add additional arguments as
203
+ doing so would break existing formatters), we now pass a notification
204
+ value object that exposes the same data via attributes. This will
205
+ allow us to add new bits of data to a notification event without
206
+ breaking existing formatters. (Jon Rowe)
207
+ * Remove support for deprecated `:alias` option for
208
+ `RSpec.configuration.add_setting`. (Myron Marston)
209
+ * Remove support for deprecated `RSpec.configuration.requires = [...]`.
210
+ (Myron Marston)
211
+ * Remove support for deprecated `--formatter` CLI option. (Myron Marston)
212
+ * Remove support for deprecated `--configure` CLI option. (Myron Marston)
213
+ * Remove support for deprecated `RSpec::Core::RakeTask#spec_opts=`.
214
+ (Myron Marston)
215
+ * An example group level `pending` block or `:pending` metadata now executes
216
+ the example and cause a failure if it passes, otherwise it will be pending if
217
+ it fails. The old "never run" behaviour is still used for `xexample`, `xit`,
218
+ and `xspecify`, or via a new `skip` method or `:skip` metadata option.
219
+ (Xavier Shay)
220
+ * After calling `pending` inside an example, the remainder of the example will
221
+ now be run. If it passes a failure is raised, otherwise the example is marked
222
+ pending. The old "never run" behaviour is provided a by a new `skip` method.
223
+ (Xavier Shay)
224
+ * Pending blocks inside an example have been removed as a feature with no
225
+ direct replacement. Use `skip` or `pending` without a block. (Xavier Shay)
226
+ * Pending statement is no longer allowed in `before(:all)` hooks. Use `skip`
227
+ instead. (Xavier Shay)
228
+ * Remove `show_failures_in_pending_blocks` configuration option. (Xavier Shay)
229
+ * Remove support for specifying the documentation formatter using
230
+ 's', 'n', 'spec' or 'nested'. (Jon Rowe)
231
+
232
+ Enhancements:
233
+
234
+ * Add example run time to JSON formatter output. (Karthik Kastury)
235
+ * Add more suggested settings to the files generated by
236
+ `rspec --init`. (Myron Marston)
237
+ * Add `config.alias_example_group_to`, which can be used to define a
238
+ new method that defines an example group with the provided metadata.
239
+ (Michi Huber)
240
+ * Add `xdescribe` and `xcontext` as shortcuts to skip an example group.
241
+ (Myron Marston)
242
+ * Add `fdescribe` and `fcontext` as shortcuts to focus an example group.
243
+ (Myron Marston)
244
+ * Don't autorun specs via `#at_exit` by default. `require 'rspec/autorun'`
245
+ is only needed when running specs via `ruby`, as it always has been.
246
+ Running specs via `rake` or `rspec` are both unaffected. (Ben Hoskings)
247
+ * Add `expose_dsl_globally` config option, defaulting to true. When disabled
248
+ it will remove the monkey patches rspec-core adds to `main` and `Module`
249
+ (e.g. `describe`, `shared_examples_for`, etc). (Jon Rowe)
250
+ * Expose RSpec DSL entry point methods (`describe`,
251
+ `shared_examples_for`, etc) on the `RSpec` constant. Intended for use
252
+ when `expose_dsl_globally` is set to `false`. (Jon Rowe)
253
+ * For consistency, expose all example group aliases (including
254
+ `context`) on the `RSpec` constant. If `expose_dsl_globally` is set to
255
+ `true`, also expose them on `main` and `Module`. Historically, only `describe`
256
+ was exposed. (Jon Rowe, Michi Huber)
257
+ * Add hook scope `:example` as an alias for `:each`, and `:context` as an alias
258
+ for `:all`. (John Feminella)
259
+
260
+ Bug Fixes:
261
+
262
+ * Fix failure (undefined method `path`) in end-of-run summary
263
+ when `raise_errors_for_deprecations!` is configured. (Myron Marston)
264
+ * Issue error when attempting to use `-i` or `--I` on command line,
265
+ too close to `-I` to be considered short hand for `--init`. (Jon Rowe)
266
+ * Prevent adding formatters to an output target if the same
267
+ formatter has already been added to that output. (Alex Peattie)
268
+ * Allow a matcher-generated example description to be used when
269
+ the example is pending. (Myron Marston)
270
+ * Ensure the configured `failure_exit_code` is used by the rake
271
+ task when there is a failure. (Jon Rowe)
272
+ * Restore behaviour whereby system exclusion filters take priority over working
273
+ directory (was broken in beta1). (Jon Rowe)
274
+ * Prevent RSpec mangling file names that have substrings containing `line_number`
275
+ or `default_path`. (Matijs van Zuijlen)
276
+
277
+ ### 3.0.0.beta1 / 2013-11-07
278
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0...v3.0.0.beta1)
279
+
280
+ Breaking Changes for 3.0.0:
281
+
282
+ * Remove explicit support for 1.8.6. (Jon Rowe)
283
+ * Remove `RSpec::Core::ExampleGroup#example` and
284
+ `RSpec::Core::ExampleGroup#running_example` methods. If you need
285
+ access to the example (e.g. to get its metadata), use a block arg
286
+ instead. (David Chelimsky)
287
+ * Remove `TextMateFormatter`, it has been moved to `rspec-tmbundle`.
288
+ (Aaron Kromer)
289
+ * Remove RCov integration. (Jon Rowe)
290
+ * Remove deprecated support for RSpec 1 constructs (Myron Marston):
291
+ * The `Spec` and `Rspec` constants (rather than `RSpec`).
292
+ * `Spec::Runner.configure` rather than `RSpec.configure`.
293
+ * `Rake::SpecTask` rather than `RSpec::Core::RakeTask`.
294
+ * Remove deprecated support for `share_as`. (Myron Marston)
295
+ * Remove `--debug` option (and corresponding option on
296
+ `RSpec::Core::Configuration`). Instead, use `-r<debugger gem name>` to
297
+ load whichever debugger gem you wish to use (e.g. `ruby-debug`,
298
+ `debugger`, or `pry`). (Myron Marston)
299
+ * Extract Autotest support to a seperate gem. (Jon Rowe)
300
+ * Raise an error when a `let` or `subject` declaration is
301
+ accessed in a `before(:all)` or `after(:all)` hook. (Myron Marston)
302
+ * Extract `its` support to a separate gem. (Peter Alfvin)
303
+ * Disallow use of a shared example group from sibling contexts, making them
304
+ fully isolated. 2.14 and 2.99 allowed this but printed a deprecation warning.
305
+ (Jon Rowe)
306
+ * Remove `RSpec::Core::Configuration#output` and
307
+ `RSpec::Core::Configuration#out` aliases of
308
+ `RSpec::Core::Configuration#output_stream`. (Myron Marston)
309
+ * Remove legacy ordering APIs deprecated in 2.99.0.beta1. (Myron
310
+ Marston)
311
+
312
+ Enhancements:
313
+
314
+ * Replace unmaintained syntax gem with coderay gem. (Xavier Shay)
315
+ * Times in profile output are now bold instead of `failure_color`.
316
+ (Matthew Boedicker)
317
+ * Add `--no-fail-fast` command line option. (Gonzalo Rodríguez-Baltanás Díaz)
318
+ * Runner now considers the local system ip address when running under Drb.
319
+ (Adrian CB)
320
+ * JsonFormatter now includes `--profile` information. (Alex / @MasterLambaster)
321
+ * Always treat symbols passed as metadata args as hash
322
+ keys with true values. RSpec 2 supported this with the
323
+ `treat_symbols_as_metadata_keys_with_true_values` but
324
+ now this behavior is always enabled. (Myron Marston)
325
+ * Add `--dry-run` option, which prints the formatter output
326
+ of your suite without running any examples or hooks.
327
+ (Thomas Stratmann, Myron Marston)
328
+ * Document the configuration options and default values in the `spec_helper.rb`
329
+ file that is generated by RSpec. (Parker Selbert)
330
+ * Give generated example group classes a friendly name derived
331
+ from the docstring, rather than something like "Nested_2".
332
+ (Myron Marston)
333
+ * Avoid affecting randomization of user code when shuffling
334
+ examples so that users can count on their own seeds
335
+ working. (Travis Herrick)
336
+ * Ordering is no longer a single global property of the test suite.
337
+ Each group can pick an ordering using `:order` metadata. (Andy
338
+ Lindeman, Sam Phippen, Myron Marston)
339
+ * Allow named custom ordering strategies to be registered, which can
340
+ then be used on individual example groups. (Andy Lindeman, Sam
341
+ Phippen, Myron Marston)
342
+
343
+ Deprecations:
344
+
345
+ * `treat_symbols_as_metadata_keys_with_true_values` is deprecated and no
346
+ longer has an affect now that the behavior it enabled is always
347
+ enabled. (Myron Marston)
348
+
349
+ ### 2.99.0 / 2014-06-01
350
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.rc1...v2.99.0)
351
+
352
+ Bug Fixes:
353
+
354
+ * Fix `BaseTextFormatter` so that it does not re-close a closed output
355
+ stream. (Myron Marston)
356
+ * Use `RSpec::Configuration#backtrace_exclusion_patterns` rather than the
357
+ deprecated `RSpec::Configuration#backtrace_clean_patterns` when mocking
358
+ with rr. (David Dollar)
359
+
360
+ ### 2.99.0.rc1 / 2014-05-18
361
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.beta2...v2.99.0.rc1)
362
+
363
+ Enhancements:
364
+
365
+ * Add `--deprecation-out` CLI option which directs deprecation warnings
366
+ to the named file. (Myron Marston)
367
+ * Backport support for `skip` in metadata to skip execution of an example.
368
+ (Xavier Shay, #1472)
369
+ * Add `Pathname` support for setting all output streams. (Aaron Kromer)
370
+ * Add `test_unit` and `minitest` expectation frameworks. (Aaron Kromer)
371
+
372
+ Deprecations:
373
+
374
+ * Deprecate `RSpec::Core::Pending::PendingDeclaredInExample`, use
375
+ `SkipDeclaredInExample` instead. (Xavier Shay)
376
+ * Issue a deprecation when `described_class` is accessed from within
377
+ a nested `describe <SomeClass>` example group, since `described_class`
378
+ will return the innermost described class in RSpec 3 rather than the
379
+ outermost described class, as it behaved in RSpec 2. (Myron Marston)
380
+ * Deprecate `RSpec::Core::FilterManager::DEFAULT_EXCLUSIONS`,
381
+ `RSpec::Core::FilterManager::STANDALONE_FILTERS` and use of
382
+ `#empty_without_conditional_filters?` on those filters. (Sergey Pchelincev)
383
+ * Deprecate `RSpec::Core::Example#options` in favor of
384
+ `RSpec::Core::Example#metadata`. (Myron Marston)
385
+ * Issue warning when passing a symbol or hash to `describe` or `context`
386
+ as the first argument. In RSpec 2.x this would be treated as metadata
387
+ but in RSpec 3 it'll be treated as the described object. To continue
388
+ having it treated as metadata, pass a description before the symbol or
389
+ hash. (Myron Marston)
390
+ * Deprecate `RSpec::Core::BaseTextFormatter::VT100_COLORS` and
391
+ `RSpec::Core::BaseTextFormatter::VT100_COLOR_CODES` in favour
392
+ of `RSpec::Core::BaseTextFormatter::ConsoleCodes::VT100_CODES` and
393
+ `RSpec::Core::BaseTextFormatter::ConsoleCodes::VT100_CODE_VALUES`.
394
+ (Jon Rowe)
395
+ * Deprecate `RSpec::Core::ExampleGroup.display_name` in favor of
396
+ `RSpec::Core::ExampleGroup.description`. (Myron Marston)
397
+ * Deprecate `RSpec::Core::ExampleGroup.describes` in favor of
398
+ `RSpec::Core::ExampleGroup.described_class`. (Myron Marston)
399
+ * Deprecate `RSpec::Core::ExampleGroup.alias_example_to` in favor of
400
+ `RSpec::Core::Configuration#alias_example_to`. (Myron Marston)
401
+ * Deprecate `RSpec::Core::ExampleGroup.alias_it_behaves_like_to` in favor
402
+ of `RSpec::Core::Configuration#alias_it_behaves_like_to`. (Myron Marston)
403
+ * Deprecate `RSpec::Core::ExampleGroup.focused` in favor of
404
+ `RSpec::Core::ExampleGroup.focus`. (Myron Marston)
405
+ * Add deprecation warning for `config.filter_run :focused` since
406
+ example aliases `fit` and `focus` will no longer include
407
+ `:focused` metadata but will continue to include `:focus`. (Myron Marston)
408
+ * Deprecate filtering by `:line_number` (e.g. `--line-number` from the
409
+ CLI). Use location filtering instead. (Myron Marston)
410
+ * Deprecate `--default_path` as an alternative to `--default-path`. (Jon Rowe)
411
+ * Deprecate `RSpec::Core::Configuration#warnings` in favor of
412
+ `RSpec::Core::Configuration#warnings?`. (Myron Marston)
413
+ * Deprecate `share_examples_for` in favor of `shared_examples_for` or
414
+ just `shared_examples`. (Myron Marston)
415
+ * Deprecate `RSpec::Core::CommandLine` in favor of
416
+ `RSpec::Core::Runner`. (Myron Marston)
417
+ * Deprecate `#color_enabled`, `#color_enabled=` and `#color?` in favour of
418
+ `#color`, `#color=` and `#color_enabled? output`. (Jon Rowe)
419
+ * Deprecate `#filename_pattern` in favour of `#pattern`. (Jon Rowe)
420
+ * Deprecate `#backtrace_cleaner` in favour of `#backtrace_formatter`. (Jon Rowe)
421
+ * Deprecate mutating `RSpec::Configuration#formatters`. (Jon Rowe)
422
+ * Deprecate `stdlib` as an available expectation framework in favour of
423
+ `test_unit` and `minitest`. (Aaron Kromer)
424
+
425
+ Bug Fixes:
426
+
427
+ * Issue a warning when you set `config.deprecation_stream` too late for
428
+ it to take effect because the reporter has already been setup. (Myron Marston)
429
+ * `skip` with a block should not execute the block. (Xavier Shay)
430
+
431
+ ### 2.99.0.beta2 / 2014-02-17
432
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.beta1...v2.99.0.beta2)
433
+
434
+ Enhancements:
435
+
436
+ * Add `is_expected` for one-liners that read well with the
437
+ `expect`-based syntax. `is_expected` is simply defined as
438
+ `expect(subject)` and can be used in an expression like:
439
+ `it { is_expected.to read_well }`. (Myron Marston)
440
+ * Backport `skip` from RSpec 3, which acts like `pending` did in RSpec 2
441
+ when not given a block, since the behavior of `pending` is changing in
442
+ RSpec 3. (Xavier Shay)
443
+
444
+ Deprecations:
445
+
446
+ * Deprecate inexact `mock_with` config options. RSpec 3 will only support
447
+ the exact symbols `:rspec`, `:mocha`, `:flexmock`, `:rr` or `:nothing`
448
+ (or any module that implements the adapter interface). RSpec 2 did
449
+ fuzzy matching but this will not be supported going forward.
450
+ (Myron Marston)
451
+ * Deprecate `show_failures_in_pending_blocks` config option. To achieve
452
+ the same behavior as the option enabled, you can use a custom
453
+ formatter instead. (Xavier Shay)
454
+ * Add a deprecation warning for the fact that the behavior of `pending`
455
+ is changing in RSpec 3 -- rather than skipping the example (as it did
456
+ in 2.x when no block was provided), it will run the example and mark
457
+ it as failed if no exception is raised. Use `skip` instead to preserve
458
+ the old behavior. (Xavier Shay)
459
+ * Deprecate 's', 'n', 'spec' and 'nested' as aliases for documentation
460
+ formatter. (Jon Rowe)
461
+ * Deprecate `RSpec::Core::Reporter#abort` in favor of
462
+ `RSpec::Core::Reporter#finish`. (Jon Rowe)
463
+
464
+ Bug Fixes:
465
+
466
+ * Fix failure (undefined method `path`) in end-of-run summary
467
+ when `raise_errors_for_deprecations!` is configured. (Myron Marston)
468
+ * Fix issue were overridding spec ordering from the command line wasn't
469
+ fully recognised interally. (Jon Rowe)
470
+
471
+ ### 2.99.0.beta1 / 2013-11-07
472
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.7...v2.99.0.beta1)
473
+
474
+ Enhancements
475
+
476
+ * Block-based DSL methods that run in the context of an example
477
+ (`it`, `before(:each)`, `after(:each)`, `let` and `subject`)
478
+ now yield the example as a block argument. (David Chelimsky)
479
+ * Warn when the name of more than one example group is submitted to
480
+ `include_examples` and it's aliases. (David Chelimsky)
481
+ * Add `expose_current_running_example_as` config option for
482
+ use during the upgrade process when external gems use the
483
+ deprecated `RSpec::Core::ExampleGroup#example` and
484
+ `RSpec::Core::ExampleGroup#running_example` methods. (Myron Marston)
485
+ * Limit spamminess of deprecation messages. (Bradley Schaefer, Loren Segal)
486
+ * Add `config.raise_errors_for_deprecations!` option, which turns
487
+ deprecations warnings into errors to surface the full backtrace
488
+ of the call site. (Myron Marston)
489
+
490
+ Deprecations
491
+
492
+ * Deprecate `RSpec::Core::ExampleGroup#example` and
493
+ `RSpec::Core::ExampleGroup#running_example` methods. If you need
494
+ access to the example (e.g. to get its metadata), use a block argument
495
+ instead. (David Chelimsky)
496
+ * Deprecate use of `autotest/rspec2` in favour of `rspec-autotest`. (Jon Rowe)
497
+ * Deprecate RSpec's built-in debugger support. Use a CLI option like
498
+ `-rruby-debug` (for the ruby-debug gem) or `-rdebugger` (for the
499
+ debugger gem) instead. (Myron Marston)
500
+ * Deprecate `RSpec.configuration.treat_symbols_as_metadata_keys_with_true_values = false`.
501
+ RSpec 3 will not support having this option set to `false`. (Myron Marston)
502
+ * Deprecate accessing a `let` or `subject` declaration in
503
+ a `after(:all)` hook. (Myron Marston, Jon Rowe)
504
+ * Deprecate built-in `its` usage in favor of `rspec-its` gem due to planned
505
+ removal in RSpec 3. (Peter Alfvin)
506
+ * Deprecate `RSpec::Core::PendingExampleFixedError` in favor of
507
+ `RSpec::Core::Pending::PendingExampleFixedError`. (Myron Marston)
508
+ * Deprecate `RSpec::Core::Configuration#out` and
509
+ `RSpec::Core::Configuration#output` in favor of
510
+ `RSpec::Core::Configuration#output_stream`. (Myron Marston)
511
+ * Deprecate legacy ordering APIs.
512
+ * You should use `register_ordering(:global)` instead of these:
513
+ * `RSpec::Core::Configuration#order_examples`
514
+ * `RSpec::Core::Configuration#order_groups`
515
+ * `RSpec::Core::Configuration#order_groups_and_examples`
516
+ * These are deprecated with no replacement because in RSpec 3
517
+ ordering is a property of individual example groups rather than
518
+ just a global property of the entire test suite:
519
+ * `RSpec::Core::Configuration#order`
520
+ * `RSpec::Core::Configuration#randomize?`
521
+ * `--order default` is deprecated in favor of `--order defined`
522
+ (Myron Marston)
523
+
524
+ ### 2.14.8 / 2014-02-27
525
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.7...v2.14.8)
526
+
527
+ Bug fixes:
528
+
529
+ * Fix regression with the `textmateformatter` that prevented backtrace links
530
+ from being clickable. (Stefan Daschek)
531
+
532
+ ### 2.14.7 / 2013-10-29
533
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.6...v2.14.7)
534
+
535
+ Bug fixes:
536
+
537
+ * Fix regression in 2.14.6 that broke the Fivemat formatter.
538
+ It depended upon either
539
+ `example.execution_result[:exception].pending_fixed?` (which
540
+ was removed in 2.14.6 to fix an issue with frozen error objects)
541
+ or `RSpec::Core::PendingExampleFixedError` (which was renamed
542
+ to `RSpec::Core::Pending::PendingExampleFixedError` in 2.8.
543
+ This fix makes a constant alias for the old error name.
544
+ (Myron Marston)
545
+
546
+ ### 2.14.6 / 2013-10-15
547
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.5...v2.14.6)
548
+
549
+ Bug fixes:
550
+
551
+ * Format stringified numbers correctly when mathn library is loaded.
552
+ (Jay Hayes)
553
+ * Fix an issue that prevented the use of frozen error objects. (Lars
554
+ Gierth)
555
+
556
+ ### 2.14.5 / 2013-08-13
557
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.4...v2.14.5)
558
+
559
+ Bug fixes:
560
+
561
+ * Fix a `NoMethodError` that was being raised when there were no shared
562
+ examples or contexts declared and `RSpec.world.reset` is invoked.
563
+ (thepoho, Jon Rowe, Myron Marston)
564
+ * Fix a deprecation warning that was being incorrectly displayed when
565
+ `shared_examples` are declared at top level in a `module` scope.
566
+ (Jon Rowe)
567
+ * Fix after(:all) hooks so consecutive (same context) scopes will run even if
568
+ one raises an error. (Jon Rowe, Trejkaz)
569
+ * JsonFormatter no longer dies if `dump_profile` isn't defined (Alex / @MasterLambaster, Jon Rowe)
570
+
571
+ ### 2.14.4 / 2013-07-21
572
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.3...v2.14.4)
573
+
574
+ Bug fixes
575
+
576
+ * Fix regression in 2.14: ensure configured requires (via `-r` option)
577
+ are loaded before spec files are loaded. This allows the spec files
578
+ to programatically change the file pattern (Jon Rowe).
579
+ * Autoload `RSpec::Mocks` and `RSpec::Expectations` when referenced if
580
+ they are not already loaded (`RSpec::Matches` has been autoloaded
581
+ for a while). In the `rspec` gem, we changed it recently to stop
582
+ loading `rspec/mocks` and `rspec/expectations` by default, as some
583
+ users reported problems where they were intending to use mocha,
584
+ not rspec-mocks, but rspec-mocks was loaded and causing a conflict.
585
+ rspec-core loads mocks and expectations at the appropriate time, so
586
+ it seemed like a safe change -- but caused a problem for some authors
587
+ of libraries that integrate with RSpec. This fixes that problem.
588
+ (Myron Marston)
589
+ * Gracefully handle a command like `rspec --profile path/to/spec.rb`:
590
+ the `path/to/spec.rb` arg was being wrongly treated as the `profile`
591
+ integer arg, which got cast `0` using `to_i`, causing no profiled
592
+ examples to be printed. (Jon Rowe)
593
+
594
+ ### 2.14.3 / 2013-07-13
595
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.2...v2.14.3)
596
+
597
+ Bug fixes
598
+
599
+ * Fix deprecation notices issued from `RSpec::Core::RakeTask` so
600
+ that they work properly when all of rspec-core is not loaded.
601
+ (This was a regression in 2.14) (Jon Rowe)
602
+
603
+ ### 2.14.2 / 2013-07-09
604
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.1...v2.14.2)
605
+
606
+ Bug fixes
607
+
608
+ * Fix regression caused by 2.14.1 release: formatters that
609
+ report that they `respond_to?` a notification, but had
610
+ no corresponding method would raise an error when registered.
611
+ The new fix is to just implement `start` on the deprecation
612
+ formatter to fix the original JRuby/ruby-debug issue.
613
+ (Jon Rowe)
614
+
615
+ ### 2.14.1 / 2013-07-08
616
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.0...v2.14.1)
617
+
618
+ Bug fixes
619
+
620
+ * Address deprecation formatter failure when using `ruby-debug` on
621
+ JRuby: fix `RSpec::Core::Reporter` to not send a notification
622
+ when the formatter's implementation of the notification method
623
+ comes from `Kernel` (Alex Portnov, Jon Rowe).
624
+
625
+ ### 2.14.0 / 2013-07-06
626
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.0.rc1...v2.14.0)
627
+
628
+ Enhancements
629
+
630
+ * Apply focus to examples defined with `fit` (equivalent of
631
+ `it "description", focus: true`) (Michael de Silva)
632
+
633
+ Bug fix
634
+
635
+ * Ensure methods defined by `let` take precedence over others
636
+ when there is a name collision (e.g. from an included module).
637
+ (Jon Rowe, Andy Lindeman and Myron Marston)
638
+
639
+ ### 2.14.0.rc1 / 2013-05-27
640
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.13.1...v2.14.0.rc1)
641
+
642
+ Enhancements
643
+
644
+ * Improved Windows detection inside Git Bash, for better `--color` handling.
645
+ * Add profiling of the slowest example groups to `--profile` option.
646
+ The output is sorted by the slowest average example groups.
647
+ * Don't show slow examples if there's a failure and both `--fail-fast`
648
+ and `--profile` options are used (Paweł Gościcki).
649
+ * Rather than always adding `spec` to the load path, add the configured
650
+ `--default-path` to the load path (which defaults to `spec`). This
651
+ better supports folks who choose to put their specs in a different
652
+ directory (John Feminella).
653
+ * Add some logic to test time duration precision. Make it a
654
+ function of time, dropping precision as the time increases. (Aaron Kromer)
655
+ * Add new `backtrace_inclusion_patterns` config option. Backtrace lines
656
+ that match one of these patterns will _always_ be included in the
657
+ backtrace, even if they match an exclusion pattern, too (Sam Phippen).
658
+ * Support ERB trim mode using the `-` when parsing `.rspec` as ERB
659
+ (Gabor Garami).
660
+ * Give a better error message when let and subject are called without a block.
661
+ (Sam Phippen).
662
+ * List the precedence of `.rspec-local` in the configuration documentation
663
+ (Sam Phippen)
664
+ * Support `{a,b}` shell expansion syntax in `--pattern` option
665
+ (Konstantin Haase).
666
+ * Add cucumber documentation for --require command line option
667
+ (Bradley Schaefer)
668
+ * Expose configuration options via config:
669
+ * `config.libs` returns the libs configured to be added onto the load path
670
+ * `full_backtrace?` returns the state of the backtrace cleaner
671
+ * `debug?` returns true when the debugger is loaded
672
+ * `line_numbers` returns the line numbers we are filtering by (if any)
673
+ * `full_description` returns the RegExp used to filter descriptions
674
+ (Jon Rowe)
675
+ * Add setters for RSpec.world and RSpec.configuration (Alex Soulim)
676
+ * Configure ruby's warning behaviour with `--warnings` (Jon Rowe)
677
+ * Fix an obscure issue on old versions of `1.8.7` where `Time.dup` wouldn't
678
+ allow access to `Time.now` (Jon Rowe)
679
+ * Make `shared_examples_for` context aware, so that keys may be safely reused
680
+ in multiple contexts without colliding. (Jon Rowe)
681
+ * Add a configurable `deprecation_stream` (Jon Rowe)
682
+ * Publish deprecations through a formatter (David Chelimsky)
683
+
684
+ Bug fixes
685
+
686
+ * Make JSON formatter behave the same when it comes to `--profile` as
687
+ the text formatter (Paweł Gościcki).
688
+ * Fix named subjects so that if an inner group defines a method that
689
+ overrides the named method, `subject` still retains the originally
690
+ declared value (Myron Marston).
691
+ * Fix random ordering so that it does not cause `rand` in examples in
692
+ nested sibling contexts to return the same value (Max Shytikov).
693
+ * Use the new `backtrace_inclusion_patterns` config option to ensure
694
+ that folks who develop code in a directory matching one of the default
695
+ exclusion patterns (e.g. `gems`) still get the normal backtrace
696
+ filtering (Sam Phippen).
697
+ * Fix ordering of `before` hooks so that `before` hooks declared in
698
+ `RSpec.configure` run before `before` hooks declared in a shared
699
+ context (Michi Huber and Tejas Dinkar).
700
+ * Fix `Example#full_description` so that it gets filled in by the last
701
+ matcher description (as `Example#description` already did) when no
702
+ doc string has been provided (David Chelimsky).
703
+ * Fix the memoized methods (`let` and `subject`) leaking `define_method`
704
+ as a `public` method. (Thomas Holmes and Jon Rowe) (#873)
705
+ * Fix warnings coming from the test suite. (Pete Higgins)
706
+
707
+ Deprecations
708
+
709
+ * Deprecate `Configuration#backtrace_clean_patterns` in favor of
710
+ `Configuration#backtrace_exclusion_patterns` for greater consistency
711
+ and symmetry with new `backtrace_inclusion_patterns` config option
712
+ (Sam Phippen).
713
+ * Deprecate `Configuration#requires=` in favor of using ruby's
714
+ `require`. Requires specified by the command line can still be
715
+ accessed by the `Configuration#require` reader. (Bradley Schaefer)
716
+ * Deprecate calling `SharedExampleGroups` defined across sibling contexts
717
+ (Jon Rowe)
718
+
719
+ ### 2.13.1 / 2013-03-12
720
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.13.0...v2.13.1)
721
+
722
+ Bug fixes
723
+
724
+ * Use hook classes as proxies rather than extending hook blocks to support
725
+ lambdas for before/after/around hooks. (David Chelimsky)
726
+ * Fix regression in 2.13.0 that caused confusing behavior when overriding
727
+ a named subject with an unnamed subject in an inner group and then
728
+ referencing the outer group subject's name. The fix for this required
729
+ us to disallow using `super` in a named subject (which is confusing,
730
+ anyway -- named subjects create 2 methods, so which method on the
731
+ parent example group are you `super`ing to?) but `super` in an unnamed
732
+ subject continues to work (Myron Marston).
733
+ * Do not allow a referenced `let` or `subject` in `before(:all)` to cause
734
+ other `let` declarations to leak across examples (Myron Marston).
735
+ * Work around odd ruby 1.9 bug with `String#match` that was triggered
736
+ by passing it a regex from a `let` declaration. For more info, see
737
+ http://bugs.ruby-lang.org/issues/8059 (Aaron Kromer).
738
+ * Add missing `require 'set'` to `base_text_formatter.rb` (Tom
739
+ Anderson).
740
+
741
+ Deprecations
742
+
743
+ * Deprecate accessing `let` or `subject` declarations in `before(:all)`.
744
+ These were not intended to be called in a `before(:all)` hook, as
745
+ they exist to define state that is reset between each example, while
746
+ `before(:all)` exists to define state that is shared across examples
747
+ in an example group (Myron Marston).
748
+
749
+ ### 2.13.0 / 2013-02-23
750
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.2...v2.13.0)
751
+
752
+ Enhancements
753
+
754
+ * Allow `--profile` option to take a count argument that
755
+ determines the number of slow examples to dump
756
+ (Greggory Rothmeier).
757
+ * Add `subject!` that is the analog to `let!`. It defines an
758
+ explicit subject and sets a `before` hook that will invoke
759
+ the subject (Zubin Henner).
760
+ * Fix `let` and `subject` declaration so that `super`
761
+ and `return` can be used in them, just like in a normal
762
+ method. (Myron Marston)
763
+ * Allow output colors to be configured individually.
764
+ (Charlie Maffitt)
765
+ * Always dump slow examples when `--profile` option is given,
766
+ even when an example failed (Myron Marston).
767
+
768
+ Bug fixes
769
+
770
+ * Don't blow up when dumping error output for instances
771
+ of anonymous error classes (Myron Marston).
772
+ * Fix default backtrace filters so lines from projects
773
+ containing "gems" in the name are not filtered, but
774
+ lines from installed gems still are (Myron Marston).
775
+ * Fix autotest command so that is uses double quotes
776
+ rather than single quotes for windows compatibility
777
+ (Jonas Tingeborn).
778
+ * Fix `its` so that uses of `subject` in a `before` or `let`
779
+ declaration in the parent group continue to reference the
780
+ parent group's subject. (Olek Janiszewski)
781
+
782
+ ### 2.12.2 / 2012-12-13
783
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2)
784
+
785
+ Bug fixes
786
+
787
+ * Fix `RSpec::Core::RakeTask` so that it is compatible with rake 0.8.7
788
+ on ruby 1.8.7. We had accidentally broke it in the 2.12 release
789
+ (Myron Marston).
790
+ * Fix `RSpec::Core::RakeTask` so it is tolerant of the `Rspec` constant
791
+ for backwards compatibility (Patrick Van Stee)
792
+
793
+ ### 2.12.1 / 2012-12-01
794
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1)
795
+
796
+ Bug fixes
797
+
798
+ * Specs are run even if another at\_exit hook calls `exit`. This allows
799
+ Test::Unit and RSpec to run together. (Suraj N. Kurapati)
800
+ * Fix full doc string concatenation so that it handles the case of a
801
+ method string (e.g. "#foo") being nested under a context string
802
+ (e.g. "when it is tuesday"), so that we get "when it is tuesday #foo"
803
+ rather than "when it is tuesday#foo". (Myron Marston)
804
+ * Restore public API I unintentionally broke in 2.12.0:
805
+ `RSpec::Core::Formatters::BaseFormatter#format_backtrce(backtrace, example)`
806
+ (Myron Marston).
807
+
808
+ ### 2.12.0 / 2012-11-12
809
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...v2.12.0)
810
+
811
+ Enhancements
812
+
813
+ * Add support for custom ordering strategies for groups and examples.
814
+ (Myron Marston)
815
+ * JSON Formatter (Alex Chaffee)
816
+ * Refactor rake task internals (Sam Phippen)
817
+ * Refactor HtmlFormatter (Pete Hodgson)
818
+ * Autotest supports a path to Ruby that contains spaces (dsisnero)
819
+ * Provide a helpful warning when a shared example group is redefined.
820
+ (Mark Burns).
821
+ * `--default_path` can be specified as `--default-line`. `--line_number` can be
822
+ specified as `--line-number`. Hyphens are more idiomatic command line argument
823
+ separators (Sam Phippen).
824
+ * A more useful error message is shown when an invalid command line option is
825
+ used (Jordi Polo).
826
+ * Add `format_docstrings { |str| }` config option. It can be used to
827
+ apply formatting rules to example group and example docstrings.
828
+ (Alex Tan)
829
+ * Add support for an `.rspec-local` options file. This is intended to
830
+ allow individual developers to set options in a git-ignored file that
831
+ override the common project options in `.rspec`. (Sam Phippen)
832
+ * Support for mocha 0.13.0. (Andy Lindeman)
833
+
834
+ Bug fixes
835
+
836
+ * Remove override of `ExampleGroup#ancestors`. This is a core ruby method that
837
+ RSpec shouldn't override. Instead, define `ExampleGroup#parent_groups`. (Myron
838
+ Marston)
839
+ * Limit monkey patching of shared example/context declaration methods
840
+ (`shared_examples_for`, etc.) to just the objects that need it rather than
841
+ every object in the system (Myron Marston).
842
+ * Fix Metadata#fetch to support computed values (Sam Goldman).
843
+ * Named subject can now be referred to from within subject block in a nested
844
+ group (tomykaira).
845
+ * Fix `fail_fast` so that it properly exits when an error occurs in a
846
+ `before(:all) hook` (Bradley Schaefer).
847
+ * Make the order spec files are loaded consistent, regardless of the
848
+ order of the files returned by the OS or the order passed at
849
+ the command line (Jo Liss and Sam Phippen).
850
+ * Ensure instance variables from `before(:all)` are always exposed
851
+ from `after(:all)`, even if an error occurs in `before(:all)`
852
+ (Sam Phippen).
853
+ * `rspec --init` no longer generates an incorrect warning about `--configure`
854
+ being deprecated (Sam Phippen).
855
+ * Fix pluralization of `1 seconds` (Odin Dutton)
856
+ * Fix ANSICON url (Jarmo Pertman)
857
+ * Use dup of Time so reporting isn't clobbered by examples that modify Time
858
+ without properly restoring it. (David Chelimsky)
859
+
860
+ Deprecations
861
+
862
+ * `share_as` is no longer needed. `shared_context` and/or
863
+ `RSpec::SharedContext` provide better mechanisms (Sam Phippen).
864
+ * Deprecate `RSpec.configuration` with a block (use `RSpec.configure`).
865
+
866
+
867
+ ### 2.11.1 / 2012-07-18
868
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1)
869
+
870
+ Bug fixes
871
+
872
+ * Fix the way we autoload RSpec::Matchers so that custom matchers can be
873
+ defined before rspec-core has been configured to definitely use
874
+ rspec-expectations. (Myron Marston)
875
+ * Fix typo in --help message printed for -e option. (Jo Liss)
876
+ * Fix ruby warnings. (Myron Marston)
877
+ * Ignore mock expectation failures when the example has already failed.
878
+ Mock expectation failures have always been ignored in this situation,
879
+ but due to my changes in 27059bf1 it was printing a confusing message.
880
+ (Myron Marston).
881
+
882
+ ### 2.11.0 / 2012-07-07
883
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.10.1...v2.11.0)
884
+
885
+ Enhancements
886
+
887
+ * Support multiple `--example` options. (Daniel Doubrovkine @dblock)
888
+ * Named subject e.g. `subject(:article) { Article.new }`
889
+ * see [http://blog.davidchelimsky.net/2012/05/13/spec-smell-explicit-use-of-subject/](http://blog.davidchelimsky.net/2012/05/13/spec-smell-explicit-use-of-subject/)
890
+ for background.
891
+ * thanks to Bradley Schaefer for suggesting it and Avdi Grimm for almost
892
+ suggesting it.
893
+ * `config.mock_with` and `config.expect_with` yield custom config object to a
894
+ block if given
895
+ * aids decoupling from rspec-core's configuation
896
+ * `include_context` and `include_examples` support a block, which gets eval'd
897
+ in the current context (vs the nested context generated by `it_behaves_like`).
898
+ * Add `config.order = 'random'` to the `spec_helper.rb` generated by `rspec
899
+ --init`.
900
+ * Delay the loading of DRb (Myron Marston).
901
+ * Limit monkey patching of `describe` onto just the objects that need it rather
902
+ than every object in the system (Myron Marston).
903
+
904
+ Bug fixes
905
+
906
+ * Support alternative path separators. For example, on Windows, you can now do
907
+ this: `rspec spec\subdir`. (Jarmo Pertman @jarmo)
908
+ * When an example raises an error and an after or around hook does as
909
+ well, print out the hook error. Previously, the error was silenced and
910
+ the user got no feedback about what happened. (Myron Marston)
911
+ * `--require` and `-I` are merged among different configuration sources (Andy
912
+ Lindeman)
913
+ * Delegate to mocha methods instead of aliasing them in mocha adapter.
914
+
915
+ ### 2.10.1 / 2012-05-19
916
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.10.0...v2.10.1)
917
+
918
+ Bug fixes
919
+
920
+ * `RSpec.reset` properly reinits configuration and world
921
+ * Call `to_s` before `split` on exception messages that might not always be
922
+ Strings (slyphon)
923
+
924
+ ### 2.10.0 / 2012-05-03
925
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.9.0...v2.10.0)
926
+
927
+ Enhancements
928
+
929
+ * Add `prepend_before` and `append_after` hooks (preethiramdev)
930
+ * intended for extension libs
931
+ * restores rspec-1 behavior
932
+ * Reporting of profiled examples (moro)
933
+ * Report the total amount of time taken for the top slowest examples.
934
+ * Report what percentage the slowest examples took from the total runtime.
935
+
936
+ Bug fixes
937
+
938
+ * Properly parse `SPEC_OPTS` options.
939
+ * `example.description` returns the location of the example if there is no
940
+ explicit description or matcher-generated description.
941
+ * RDoc fixes (Grzegorz Świrski)
942
+ * Do not modify example ancestry when dumping errors (Michael Grosser)
943
+
944
+ ### 2.9.0 / 2012-03-17
945
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0...v2.9.0)
946
+
947
+ Enhancements
948
+
949
+ * Support for "X minutes X seconds" spec run duration in formatter. (uzzz)
950
+ * Strip whitespace from group and example names in doc formatter.
951
+ * Removed spork-0.9 shim. If you're using spork-0.8.x, you'll need to upgrade
952
+ to 0.9.0.
953
+
954
+ Bug fixes
955
+
956
+ * Restore `--full_backtrace` option
957
+ * Ensure that values passed to `config.filter_run` are respected when running
958
+ over DRb (using spork).
959
+ * Ensure shared example groups are reset after a run (as example groups are).
960
+ * Remove `rescue false` from calls to filters represented as Procs
961
+ * Ensure `described_class` gets the closest constant (pyromaniac)
962
+ * In "autorun", don't run the specs in the `at_exit` hook if there was an
963
+ exception (most likely due to a SyntaxError). (sunaku)
964
+ * Don't extend groups with modules already used to extend ancestor groups.
965
+ * `its` correctly memoizes nil or false values (Yamada Masaki)
966
+
967
+ ### 2.8.0 / 2012-01-04
968
+
969
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc2...v2.8.0)
970
+
971
+ Bug fixes
972
+
973
+ * For metadata filtering, restore passing the entire array to the proc, rather
974
+ than each item in the array (weidenfreak)
975
+ * Ensure each spec file is loaded only once
976
+ * Fixes a bug that caused all the examples in a file to be run when
977
+ referenced twice with line numbers in a command, e.g.
978
+ * `rspec path/to/file:37 path/to/file:42`
979
+
980
+ ### 2.8.0.rc2 / 2011-12-19
981
+
982
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc1...v2.8.0.rc2)
983
+
984
+ Enhancments
985
+
986
+ * new `--init` command (Peter Schröder)
987
+ * generates `spec/spec_helper.rb`
988
+ * deletes obsolete files (on confirmation)
989
+ * merged with and deprecates `--configure` command, which generated
990
+ `.rspec`
991
+ * use `require_relative` when available (Ian Leitch)
992
+ * `include_context` and `include_examples` accept params (Calvin Bascom)
993
+ * print the time for every example in the html formatter (Richie Vos)
994
+ * several tasty refactoring niblets (Sasha)
995
+ * `it "does something", :x => [:foo,'bar',/baz/] (Ivan Neverov)
996
+ * supports matching n command line tag values with an example or group
997
+
998
+ ### 2.8.0.rc1 / 2011-11-06
999
+
1000
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.7.1...v2.8.0.rc1)
1001
+
1002
+ Enhancements
1003
+
1004
+ * `--order` (Justin Ko)
1005
+ * run examples in random order: `--order rand`
1006
+ * specify the seed: `--order rand:123`
1007
+ * `--seed SEED`
1008
+ * equivalent of `--order rand:SEED`
1009
+ * SharedContext supports `let` (David Chelimsky)
1010
+ * Filter improvements (David Chelimsky)
1011
+ * override opposing tags from the command line
1012
+ * override RSpec.configure tags from the command line
1013
+ * `--line_number 37` overrides all other filters
1014
+ * `path/to/file.rb:37` overrides all other filters
1015
+ * refactor: consolidate filter management in a FilterManger object
1016
+ * Eliminate Ruby warnings (Matijs van Zuijlen)
1017
+ * Make reporter.report an API (David Chelimsky)
1018
+ * supports extension tools like interative_rspec
1019
+
1020
+ Changes
1021
+
1022
+ * change `config.color_enabled` (getter/setter/predicate) to `color` to align
1023
+ with `--[no]-color` CLI option.
1024
+ * `color_enabled` is still supported for now, but will likley be deprecated
1025
+ in a 2.x release so we can remove it in 3.0.
1026
+
1027
+ Bug fixes
1028
+
1029
+ * Make sure the `bar` in `--tag foo:bar` makes it to DRb (Aaron Gibralter)
1030
+ * Fix bug where full descriptions of groups nested 3 deep were repeated.
1031
+ * Restore report of time to run to start after files are loaded.
1032
+ * fixes bug where run times were cumalitive in spork
1033
+ * fixes compatibility with time-series metrics
1034
+ * Don't error out when `config.mock_with` or `expect_with` is re-specifying the
1035
+ current config (Myron Marston)
1036
+
1037
+ * Deprecations
1038
+ * :alias option on `configuration.add_setting`. Use `:alias_with` on the
1039
+ original setting declaration instead.
1040
+
1041
+ ### 2.7.1 / 2011-10-20
1042
+
1043
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.7.0...v2.7.1)
1044
+
1045
+ Bug fixes
1046
+
1047
+ * tell autotest the correct place to find the rspec executable
1048
+
1049
+ ### 2.7.0 / 2011-10-16
1050
+
1051
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.4...v2.7.0)
1052
+
1053
+ NOTE: RSpec's release policy dictates that there should not be any backward
1054
+ incompatible changes in minor releases, but we're making an exception to
1055
+ release a change to how RSpec interacts with other command line tools.
1056
+
1057
+ As of 2.7.0, you must explicity `require "rspec/autorun"` unless you use the
1058
+ `rspec` command (which already does this for you).
1059
+
1060
+ Enhancements
1061
+
1062
+ * Add `example.exception` (David Chelimsky)
1063
+ * `--default_path` command line option (Justin Ko)
1064
+ * support multiple `--line_number` options (David J. Hamilton)
1065
+ * also supports `path/to/file.rb:5:9` (runs examples on lines 5 and 9)
1066
+ * Allow classes/modules to be used as shared example group identifiers (Arthur
1067
+ Gunn)
1068
+ * Friendly error message when shared context cannot be found (Sławosz
1069
+ Sławiński)
1070
+ * Clear formatters when resetting config (John Bintz)
1071
+ * Add `xspecify` and xexample as temp-pending methods (David Chelimsky)
1072
+ * Add `--no-drb` option (Iain Hecker)
1073
+ * Provide more accurate run time by registering start time before code is
1074
+ loaded (David Chelimsky)
1075
+ * reverted in 2.8.0
1076
+ * Rake task default pattern finds specs in symlinked dirs (Kelly Felkins)
1077
+ * Rake task no longer does anything to invoke bundler since Bundler already
1078
+ handles it for us. Thanks to Andre Arko for the tip.
1079
+ * Add `--failure-exit-code` option (Chris Griego)
1080
+
1081
+ Bug fixes
1082
+
1083
+ * Include `Rake::DSL` to remove deprecation warnings in Rake > 0.8.7 (Pivotal
1084
+ Casebook)
1085
+ * Only eval `let` block once even if it returns `nil` (Adam Meehan)
1086
+ * Fix `--pattern` option (wasn't being recognized) (David Chelimsky)
1087
+ * Only implicitly `require "rspec/autorun"` with the `rspec` command (David
1088
+ Chelimsky)
1089
+ * Ensure that rspec's `at_exit` defines the exit code (Daniel Doubrovkine)
1090
+ * Show the correct snippet in the HTML and TextMate formatters (Brian Faherty)
1091
+
1092
+ ### 2.6.4 / 2011-06-06
1093
+
1094
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.3...v2.6.4)
1095
+
1096
+ NOTE: RSpec's release policy dictates that there should not be new
1097
+ functionality in patch releases, but this minor enhancement slipped in by
1098
+ accident. As it doesn't add a new API, we decided to leave it in rather than
1099
+ roll back this release.
1100
+
1101
+ Enhancements
1102
+
1103
+ * Add summary of commands to run individual failed examples.
1104
+
1105
+ Bug fixes
1106
+
1107
+ * Support exclusion filters in DRb. (Yann Lugrin)
1108
+ * Fix --example escaping when run over DRb. (Elliot Winkler)
1109
+ * Use standard ANSI codes for color formatting so colors work in a wider set of
1110
+ color schemes.
1111
+
1112
+ ### 2.6.3 / 2011-05-24
1113
+
1114
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.2...v2.6.3)
1115
+
1116
+ Bug fixes
1117
+
1118
+ * Explicitly convert exit code to integer, avoiding TypeError when return
1119
+ value of run is IO object proxied by `DRb::DRbObject` (Julian Scheid)
1120
+ * Clarify behavior of `--example` command line option
1121
+ * Build using a rubygems-1.6.2 to avoid downstream yaml parsing error
1122
+
1123
+ ### 2.6.2 / 2011-05-21
1124
+
1125
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.1...v2.6.2)
1126
+
1127
+ Bug fixes
1128
+
1129
+ * Warn rather than raise when HOME env var is not defined
1130
+ * Properly merge command-line exclusions with default :if and :unless (joshcooper)
1131
+
1132
+ ### 2.6.1 / 2011-05-19
1133
+
1134
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.0...v2.6.1)
1135
+
1136
+ Bug fixes
1137
+
1138
+ * Don't extend nil when filters are nil
1139
+ * `require 'rspec/autorun'` when running rcov.
1140
+
1141
+ ### 2.6.0 / 2011-05-12
1142
+
1143
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.5.1...v2.6.0)
1144
+
1145
+ Enhancements
1146
+
1147
+ * `shared_context` (Damian Nurzynski)
1148
+ * extend groups matching specific metadata with:
1149
+ * method definitions
1150
+ * subject declarations
1151
+ * let/let! declarations
1152
+ * etc (anything you can do in a group)
1153
+ * `its([:key])` works for any subject with #[]. (Peter Jaros)
1154
+ * `treat_symbols_as_metadata_keys_with_true_values` (Myron Marston)
1155
+ * Print a deprecation warning when you configure RSpec after defining an
1156
+ example. All configuration should happen before any examples are defined.
1157
+ (Myron Marston)
1158
+ * Pass the exit status of a DRb run to the invoking process. This causes specs
1159
+ run via DRb to not just return true or false. (Ilkka Laukkanen)
1160
+ * Refactoring of `ConfigurationOptions#parse_options` (Rodrigo Rosenfeld Rosas)
1161
+ * Report excluded filters in runner output (tip from andyl)
1162
+ * Clean up messages for filters/tags.
1163
+ * Restore --pattern/-P command line option from rspec-1
1164
+ * Support false as well as true in config.full_backtrace= (Andreas Tolf
1165
+ Tolfsen)
1166
+
1167
+ Bug fixes
1168
+
1169
+ * Don't stumble over an exception without a message (Hans Hasselberg)
1170
+ * Remove non-ascii characters from comments that were choking rcov (Geoffrey
1171
+ Byers)
1172
+ * Fixed backtrace so it doesn't include lines from before the autorun at_exit
1173
+ hook (Myron Marston)
1174
+ * Include RSpec::Matchers when first example group is defined, rather than just
1175
+ before running the examples. This works around an obscure bug in ruby 1.9
1176
+ that can cause infinite recursion. (Myron Marston)
1177
+ * Don't send `example_group_[started|finished]` to formatters for empty groups.
1178
+ * Get specs passing on jruby (Sidu Ponnappa)
1179
+ * Fix bug where mixing nested groups and outer-level examples gave
1180
+ unpredictable :line_number behavior (Artur Małecki)
1181
+ * Regexp.escape the argument to --example (tip from Elliot Winkler)
1182
+ * Correctly pass/fail pending block with message expectations
1183
+ * CommandLine returns exit status (0/1) instead of true/false
1184
+ * Create path to formatter output file if it doesn't exist (marekj).
1185
+
1186
+
1187
+ ### 2.5.1 / 2011-02-06
1188
+
1189
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.5.0...v2.5.1)
1190
+
1191
+ NOTE: this release breaks compatibility with rspec/autotest/bundler
1192
+ integration, but does so in order to greatly simplify it.
1193
+
1194
+ With this release, if you want the generated autotest command to include
1195
+ 'bundle exec', require Autotest's bundler plugin in a .autotest file in the
1196
+ project's root directory or in your home directory:
1197
+
1198
+ require "autotest/bundler"
1199
+
1200
+ Now you can just type 'autotest' on the commmand line and it will work as you expect.
1201
+
1202
+ If you don't want 'bundle exec', there is nothing you have to do.
1203
+
1204
+ ### 2.5.0 / 2011-02-05
1205
+
1206
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.4.0...v2.5.0)
1207
+
1208
+ Enhancements
1209
+
1210
+ * Autotest::Rspec2 parses command line args passed to autotest after '--'
1211
+ * --skip-bundler option for autotest command
1212
+ * Autotest regexp fixes (Jon Rowe)
1213
+ * Add filters to html and textmate formatters (Daniel Quimper)
1214
+ * Explicit passing of block (need for JRuby 1.6) (John Firebaugh)
1215
+
1216
+ Bug fixes
1217
+
1218
+ * fix dom IDs in HTML formatter (Brian Faherty)
1219
+ * fix bug with --drb + formatters when not running in drb
1220
+ * include --tag options in drb args (monocle)
1221
+ * fix regression so now SPEC_OPTS take precedence over CLI options again (Roman
1222
+ Chernyatchik)
1223
+ * only call its(:attribute) once (failing example from Brian Dunn)
1224
+ * fix bizarre bug where rspec would hang after String.alias :to_int :to_i
1225
+ (Damian Nurzynski)
1226
+
1227
+ Deprecations
1228
+
1229
+ * implicit inclusion of 'bundle exec' when Gemfile present (use autotest's
1230
+ bundler plugin instead)
1231
+
1232
+ ### 2.4.0 / 2011-01-02
1233
+
1234
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.3.1...v2.4.0)
1235
+
1236
+ Enhancements
1237
+
1238
+ * start the debugger on -d so the stack trace is visible when it stops
1239
+ (Clifford Heath)
1240
+ * apply hook filtering to examples as well as groups (Myron Marston)
1241
+ * support multiple formatters, each with their own output
1242
+ * show exception classes in failure messages unless they come from RSpec
1243
+ matchers or message expectations
1244
+ * before(:all) { pending } sets all examples to pending
1245
+
1246
+ Bug fixes
1247
+
1248
+ * fix bug due to change in behavior of reject in Ruby 1.9.3-dev (Shota
1249
+ Fukumori)
1250
+ * fix bug when running in jruby: be explicit about passing block to super (John
1251
+ Firebaugh)
1252
+ * rake task doesn't choke on paths with quotes (Janmejay Singh)
1253
+ * restore --options option from rspec-1
1254
+ * require 'ostruct' to fix bug with its([key]) (Kim Burgestrand)
1255
+ * --configure option generates .rspec file instead of autotest/discover.rb
1256
+
1257
+ ### 2.3.1 / 2010-12-16
1258
+
1259
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.3.0...v2.3.1)
1260
+
1261
+ Bug fixes
1262
+
1263
+ * send debugger warning message to $stdout if RSpec.configuration.error_stream
1264
+ has not been defined yet.
1265
+ * HTML Formatter _finally_ properly displays nested groups (Jarmo Pertman)
1266
+ * eliminate some warnings when running RSpec's own suite (Jarmo Pertman)
1267
+
1268
+ ### 2.3.0 / 2010-12-12
1269
+
1270
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.2.1...v2.3.0)
1271
+
1272
+ Enhancements
1273
+
1274
+ * tell autotest to use "rspec2" if it sees a .rspec file in the project's root
1275
+ directory
1276
+ * replaces the need for ./autotest/discover.rb, which will not work with
1277
+ all versions of ZenTest and/or autotest
1278
+ * config.expect_with
1279
+ * :rspec # => rspec/expectations
1280
+ * :stdlib # => test/unit/assertions
1281
+ * :rspec, :stdlib # => both
1282
+
1283
+ Bug fixes
1284
+
1285
+ * fix dev Gemfile to work on non-mac-os machines (Lake Denman)
1286
+ * ensure explicit subject is only eval'd once (Laszlo Bacsi)
1287
+
1288
+ ### 2.2.1 / 2010-11-28
1289
+
1290
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.2.0...v2.2.1)
1291
+
1292
+ Bug fixes
1293
+ * alias_method instead of override Kernel#method_missing (John Wilger)
1294
+ * changed --autotest to --tty in generated command (MIKAMI Yoshiyuki)
1295
+ * revert change to debugger (had introduced conflict with Rails)
1296
+ * also restored --debugger/-debug option
1297
+
1298
+ ### 2.2.0 / 2010-11-28
1299
+
1300
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.1.0...v2.2.0)
1301
+
1302
+ Deprecations/changes
1303
+
1304
+ * --debug/-d on command line is deprecated and now has no effect
1305
+ * win32console is now ignored; Windows users must use ANSICON for color support
1306
+ (Bosko Ivanisevic)
1307
+
1308
+ Enhancements
1309
+
1310
+ * When developing locally rspec-core now works with the rspec-dev setup or your
1311
+ local gems
1312
+ * Raise exception with helpful message when rspec-1 is loaded alongside rspec-2
1313
+ (Justin Ko)
1314
+ * debugger statements _just work_ as long as ruby-debug is installed
1315
+ * otherwise you get warned, but not fired
1316
+ * Expose example.metadata in around hooks
1317
+ * Performance improvments (much faster now)
1318
+
1319
+ Bug fixes
1320
+
1321
+ * Make sure --fail-fast makes it across drb
1322
+ * Pass -Ilib:spec to rcov
1323
+
1324
+ ### 2.1.0 / 2010-11-07
1325
+
1326
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.1...v2.1.0)
1327
+
1328
+ Enhancments
1329
+
1330
+ * Add skip_bundler option to rake task to tell rake task to ignore the presence
1331
+ of a Gemfile (jfelchner)
1332
+ * Add gemfile option to rake task to tell rake task what Gemfile to look for
1333
+ (defaults to 'Gemfile')
1334
+ * Allow passing caller trace into Metadata to support extensions (Glenn
1335
+ Vanderburg)
1336
+ * Add deprecation warning for Spec::Runner.configure to aid upgrade from
1337
+ RSpec-1
1338
+ * Add deprecated Spec::Rake::SpecTask to aid upgrade from RSpec-1
1339
+ * Add 'autospec' command with helpful message to aid upgrade from RSpec-1
1340
+ * Add support for filtering with tags on CLI (Lailson Bandeira)
1341
+ * Add a helpful message about RUBYOPT when require fails in bin/rspec (slyphon)
1342
+ * Add "-Ilib" to the default rcov options (Tianyi Cui)
1343
+ * Make the expectation framework configurable (default rspec, of course)
1344
+ (Justin Ko)
1345
+ * Add 'pending' to be conditional (Myron Marston)
1346
+ * Add explicit support for :if and :unless as metadata keys for conditional run
1347
+ of examples (Myron Marston)
1348
+ * Add --fail-fast command line option (Jeff Kreeftmeijer)
1349
+
1350
+ Bug fixes
1351
+
1352
+ * Eliminate stack overflow with "subject { self }"
1353
+ * Require 'rspec/core' in the Raketask (ensures it required when running rcov)
1354
+
1355
+ ### 2.0.1 / 2010-10-18
1356
+
1357
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0...v2.0.1)
1358
+
1359
+ Bug fixes
1360
+
1361
+ * Restore color when using spork + autotest
1362
+ * Pending examples without docstrings render the correct message (Josep M.
1363
+ Bach)
1364
+ * Fixed bug where a failure in a spec file ending in anything but _spec.rb
1365
+ would fail in a confusing way.
1366
+ * Support backtrace lines from erb templates in html formatter (Alex Crichton)
1367
+
1368
+ ### 2.0.0 / 2010-10-10
1369
+
1370
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.rc...v2.0.0)
1371
+
1372
+ RSpec-1 compatibility
1373
+
1374
+ * Rake task uses ENV["SPEC"] as file list if present
1375
+
1376
+ Bug fixes
1377
+
1378
+ * Bug Fix: optparse --out foo.txt (Leonardo Bessa)
1379
+ * Suppress color codes for non-tty output (except autotest)
1380
+
1381
+ ### 2.0.0.rc / 2010-10-05
1382
+
1383
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.22...v2.0.0.rc)
1384
+
1385
+ Enhancements
1386
+
1387
+ * implicitly require unknown formatters so you don't have to require the file
1388
+ explicitly on the commmand line (Michael Grosser)
1389
+ * add --out/-o option to assign output target
1390
+ * added fail_fast configuration option to abort on first failure
1391
+ * support a Hash subject (its([:key]) { should == value }) (Josep M. Bach)
1392
+
1393
+ Bug fixes
1394
+
1395
+ * Explicitly require rspec version to fix broken rdoc task (Hans de Graaff)
1396
+ * Ignore backtrace lines that come from other languages, like Java or
1397
+ Javascript (Charles Lowell)
1398
+ * Rake task now does what is expected when setting (or not setting)
1399
+ fail_on_error and verbose
1400
+ * Fix bug in which before/after(:all) hooks were running on excluded nested
1401
+ groups (Myron Marston)
1402
+ * Fix before(:all) error handling so that it fails examples in nested groups,
1403
+ too (Myron Marston)
1404
+
1405
+ ### 2.0.0.beta.22 / 2010-09-12
1406
+
1407
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.20...v2.0.0.beta.22)
1408
+
1409
+ Enhancements
1410
+
1411
+ * removed at_exit hook
1412
+ * CTRL-C stops the run (almost) immediately
1413
+ * first it cleans things up by running the appropriate after(:all) and
1414
+ after(:suite) hooks
1415
+ * then it reports on any examples that have already run
1416
+ * cleaned up rake task
1417
+ * generate correct task under variety of conditions
1418
+ * options are more consistent
1419
+ * deprecated redundant options
1420
+ * run 'bundle exec autotest' when Gemfile is present
1421
+ * support ERB in .rspec options files (Justin Ko)
1422
+ * depend on bundler for development tasks (Myron Marston)
1423
+ * add example_group_finished to formatters and reporter (Roman Chernyatchik)
1424
+
1425
+ Bug fixes
1426
+
1427
+ * support paths with spaces when using autotest (Andreas Neuhaus)
1428
+ * fix module_exec with ruby 1.8.6 (Myron Marston)
1429
+ * remove context method from top-level
1430
+ * was conflicting with irb, for example
1431
+ * errors in before(:all) are now reported correctly (Chad Humphries)
1432
+
1433
+ Removals
1434
+
1435
+ * removed -o --options-file command line option
1436
+ * use ./.rspec and ~/.rspec