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,921 @@
1
+ require 'rspec/support'
2
+ RSpec::Support.define_optimized_require_for_rspec(:matchers) { |f| require_relative(f) }
3
+
4
+ %w[
5
+ pretty
6
+ composable
7
+ built_in
8
+ generated_descriptions
9
+ dsl
10
+ matcher_delegator
11
+ aliased_matcher
12
+ ].each { |file| RSpec::Support.require_rspec_matchers(file) }
13
+
14
+ # RSpec's top level namespace. All of rspec-expectations is contained
15
+ # in the `RSpec::Expectations` and `RSpec::Matchers` namespaces.
16
+ module RSpec
17
+ # RSpec::Matchers provides a number of useful matchers we use to define
18
+ # expectations. A matcher is any object that responds to the following:
19
+ #
20
+ # matches?(actual)
21
+ # failure_message
22
+ #
23
+ # These methods are also part of the matcher protocol, but are optional:
24
+ #
25
+ # does_not_match?(actual)
26
+ # failure_message_when_negated
27
+ # description
28
+ # supports_block_expectations?
29
+ #
30
+ # ## Predicates
31
+ #
32
+ # In addition to matchers that are defined explicitly, RSpec will create
33
+ # custom matchers on the fly for any arbitrary predicate, giving your specs a
34
+ # much more natural language feel.
35
+ #
36
+ # A Ruby predicate is a method that ends with a "?" and returns true or false.
37
+ # Common examples are `empty?`, `nil?`, and `instance_of?`.
38
+ #
39
+ # All you need to do is write `expect(..).to be_` followed by the predicate
40
+ # without the question mark, and RSpec will figure it out from there.
41
+ # For example:
42
+ #
43
+ # expect([]).to be_empty # => [].empty?() | passes
44
+ # expect([]).not_to be_empty # => [].empty?() | fails
45
+ #
46
+ # In addtion to prefixing the predicate matchers with "be_", you can also use "be_a_"
47
+ # and "be_an_", making your specs read much more naturally:
48
+ #
49
+ # expect("a string").to be_an_instance_of(String) # =>"a string".instance_of?(String) # passes
50
+ #
51
+ # expect(3).to be_a_kind_of(Fixnum) # => 3.kind_of?(Numeric) | passes
52
+ # expect(3).to be_a_kind_of(Numeric) # => 3.kind_of?(Numeric) | passes
53
+ # expect(3).to be_an_instance_of(Fixnum) # => 3.instance_of?(Fixnum) | passes
54
+ # expect(3).not_to be_an_instance_of(Numeric) # => 3.instance_of?(Numeric) | fails
55
+ #
56
+ # RSpec will also create custom matchers for predicates like `has_key?`. To
57
+ # use this feature, just state that the object should have_key(:key) and RSpec will
58
+ # call has_key?(:key) on the target. For example:
59
+ #
60
+ # expect(:a => "A").to have_key(:a)
61
+ # expect(:a => "A").to have_key(:b) # fails
62
+ #
63
+ # You can use this feature to invoke any predicate that begins with "has_", whether it is
64
+ # part of the Ruby libraries (like `Hash#has_key?`) or a method you wrote on your own class.
65
+ #
66
+ # Note that RSpec does not provide composable aliases for these dynamic predicate
67
+ # matchers. You can easily define your own aliases, though:
68
+ #
69
+ # RSpec::Matchers.alias_matcher :a_user_who_is_an_admin, :be_an_admin
70
+ # expect(user_list).to include(a_user_who_is_an_admin)
71
+ #
72
+ # ## Custom Matchers
73
+ #
74
+ # When you find that none of the stock matchers provide a natural feeling
75
+ # expectation, you can very easily write your own using RSpec's matcher DSL
76
+ # or writing one from scratch.
77
+ #
78
+ # ### Matcher DSL
79
+ #
80
+ # Imagine that you are writing a game in which players can be in various
81
+ # zones on a virtual board. To specify that bob should be in zone 4, you
82
+ # could say:
83
+ #
84
+ # expect(bob.current_zone).to eql(Zone.new("4"))
85
+ #
86
+ # But you might find it more expressive to say:
87
+ #
88
+ # expect(bob).to be_in_zone("4")
89
+ #
90
+ # and/or
91
+ #
92
+ # expect(bob).not_to be_in_zone("3")
93
+ #
94
+ # You can create such a matcher like so:
95
+ #
96
+ # RSpec::Matchers.define :be_in_zone do |zone|
97
+ # match do |player|
98
+ # player.in_zone?(zone)
99
+ # end
100
+ # end
101
+ #
102
+ # This will generate a <tt>be_in_zone</tt> method that returns a matcher
103
+ # with logical default messages for failures. You can override the failure
104
+ # messages and the generated description as follows:
105
+ #
106
+ # RSpec::Matchers.define :be_in_zone do |zone|
107
+ # match do |player|
108
+ # player.in_zone?(zone)
109
+ # end
110
+ #
111
+ # failure_message do |player|
112
+ # # generate and return the appropriate string.
113
+ # end
114
+ #
115
+ # failure_message_when_negated do |player|
116
+ # # generate and return the appropriate string.
117
+ # end
118
+ #
119
+ # description do
120
+ # # generate and return the appropriate string.
121
+ # end
122
+ # end
123
+ #
124
+ # Each of the message-generation methods has access to the block arguments
125
+ # passed to the <tt>create</tt> method (in this case, <tt>zone</tt>). The
126
+ # failure message methods (<tt>failure_message</tt> and
127
+ # <tt>failure_message_when_negated</tt>) are passed the actual value (the
128
+ # receiver of <tt>expect(..)</tt> or <tt>expect(..).not_to</tt>).
129
+ #
130
+ # ### Custom Matcher from scratch
131
+ #
132
+ # You could also write a custom matcher from scratch, as follows:
133
+ #
134
+ # class BeInZone
135
+ # def initialize(expected)
136
+ # @expected = expected
137
+ # end
138
+ #
139
+ # def matches?(target)
140
+ # @target = target
141
+ # @target.current_zone.eql?(Zone.new(@expected))
142
+ # end
143
+ #
144
+ # def failure_message
145
+ # "expected #{@target.inspect} to be in Zone #{@expected}"
146
+ # end
147
+ #
148
+ # def failure_message_when_negated
149
+ # "expected #{@target.inspect} not to be in Zone #{@expected}"
150
+ # end
151
+ # end
152
+ #
153
+ # ... and a method like this:
154
+ #
155
+ # def be_in_zone(expected)
156
+ # BeInZone.new(expected)
157
+ # end
158
+ #
159
+ # And then expose the method to your specs. This is normally done
160
+ # by including the method and the class in a module, which is then
161
+ # included in your spec:
162
+ #
163
+ # module CustomGameMatchers
164
+ # class BeInZone
165
+ # # ...
166
+ # end
167
+ #
168
+ # def be_in_zone(expected)
169
+ # # ...
170
+ # end
171
+ # end
172
+ #
173
+ # describe "Player behaviour" do
174
+ # include CustomGameMatchers
175
+ # # ...
176
+ # end
177
+ #
178
+ # or you can include in globally in a spec_helper.rb file <tt>require</tt>d
179
+ # from your spec file(s):
180
+ #
181
+ # RSpec::configure do |config|
182
+ # config.include(CustomGameMatchers)
183
+ # end
184
+ #
185
+ # ### Making custom matchers composable
186
+ #
187
+ # RSpec's built-in matchers are designed to be composed, in expressions like:
188
+ #
189
+ # expect(["barn", 2.45]).to contain_exactly(
190
+ # a_value_within(0.1).of(2.5),
191
+ # a_string_starting_with("bar")
192
+ # )
193
+ #
194
+ # Custom matchers can easily participate in composed matcher expressions like these.
195
+ # Include {RSpec::Matchers::Composable} in your custom matcher to make it support
196
+ # being composed (matchers defined using the DSL have this included automatically).
197
+ # Within your matcher's `matches?` method (or the `match` block, if using the DSL),
198
+ # use `values_match?(expected, actual)` rather than `expected == actual`.
199
+ # Under the covers, `values_match?` is able to match arbitrary
200
+ # nested data structures containing a mix of both matchers and non-matcher objects.
201
+ # It uses `===` and `==` to perform the matching, considering the values to
202
+ # match if either returns `true`. The `Composable` mixin also provides some helper
203
+ # methods for surfacing the matcher descriptions within your matcher's description
204
+ # or failure messages.
205
+ #
206
+ # RSpec's built-in matchers each have a number of aliases that rephrase the matcher
207
+ # from a verb phrase (such as `be_within`) to a noun phrase (such as `a_value_within`),
208
+ # which reads better when the matcher is passed as an argument in a composed matcher
209
+ # expressions, and also uses the noun-phrase wording in the matcher's `description`,
210
+ # for readable failure messages. You can alias your custom matchers in similar fashion
211
+ # using {RSpec::Matchers.alias_matcher}.
212
+ module Matchers
213
+ # @method expect
214
+ # Supports `expect(actual).to matcher` syntax by wrapping `actual` in an
215
+ # `ExpectationTarget`.
216
+ # @example
217
+ # expect(actual).to eq(expected)
218
+ # expect(actual).not_to eq(expected)
219
+ # @return [ExpectationTarget]
220
+ # @see ExpectationTarget#to
221
+ # @see ExpectationTarget#not_to
222
+
223
+ # Defines a matcher alias. The returned matcher's `description` will be overriden
224
+ # to reflect the phrasing of the new name, which will be used in failure messages
225
+ # when passed as an argument to another matcher in a composed matcher expression.
226
+ #
227
+ # @param new_name [Symbol] the new name for the matcher
228
+ # @param old_name [Symbol] the original name for the matcher
229
+ # @yield [String] optional block that, when given is used to define the overriden
230
+ # description. The yielded arg is the original description. If no block is
231
+ # provided, a default description override is used based on the old and
232
+ # new names.
233
+ #
234
+ # @example
235
+ #
236
+ # RSpec::Matchers.alias_matcher :a_list_that_sums_to, :sum_to
237
+ # sum_to(3).description # => "sum to 3"
238
+ # a_list_that_sums_to(3).description # => "a list that sums to 3"
239
+ #
240
+ # @example
241
+ #
242
+ # RSpec::Matchers.alias_matcher :a_list_sorted_by, :be_sorted_by do |description|
243
+ # description.sub("be sorted by", "a list sorted by")
244
+ # end
245
+ #
246
+ # be_sorted_by(:age).description # => "be sorted by age"
247
+ # a_list_sorted_by(:age).description # => "a list sorted by age"
248
+ #
249
+ # @!macro [attach] alias_matcher
250
+ # @!parse
251
+ # alias $1 $2
252
+ def self.alias_matcher(new_name, old_name, &description_override)
253
+ description_override ||= lambda do |old_desc|
254
+ old_desc.gsub(Pretty.split_words(old_name), Pretty.split_words(new_name))
255
+ end
256
+
257
+ define_method(new_name) do |*args, &block|
258
+ matcher = __send__(old_name, *args, &block)
259
+ AliasedMatcher.new(matcher, description_override)
260
+ end
261
+ end
262
+
263
+ # Passes if actual is truthy (anything but false or nil)
264
+ def be_truthy
265
+ BuiltIn::BeTruthy.new
266
+ end
267
+ alias_matcher :a_truthy_value, :be_truthy
268
+
269
+ # Passes if actual is falsey (false or nil)
270
+ def be_falsey
271
+ BuiltIn::BeFalsey.new
272
+ end
273
+ alias_matcher :be_falsy, :be_falsey
274
+ alias_matcher :a_falsey_value, :be_falsey
275
+ alias_matcher :a_falsy_value, :be_falsey
276
+
277
+ # Passes if actual is nil
278
+ def be_nil
279
+ BuiltIn::BeNil.new
280
+ end
281
+ alias_matcher :a_nil_value, :be_nil
282
+
283
+ # @example
284
+ # expect(actual).to be_truthy
285
+ # expect(actual).to be_falsey
286
+ # expect(actual).to be_nil
287
+ # expect(actual).to be_[arbitrary_predicate](*args)
288
+ # expect(actual).not_to be_nil
289
+ # expect(actual).not_to be_[arbitrary_predicate](*args)
290
+ #
291
+ # Given true, false, or nil, will pass if actual value is true, false or
292
+ # nil (respectively). Given no args means the caller should satisfy an if
293
+ # condition (to be or not to be).
294
+ #
295
+ # Predicates are any Ruby method that ends in a "?" and returns true or
296
+ # false. Given be_ followed by arbitrary_predicate (without the "?"),
297
+ # RSpec will match convert that into a query against the target object.
298
+ #
299
+ # The arbitrary_predicate feature will handle any predicate prefixed with
300
+ # "be_an_" (e.g. be_an_instance_of), "be_a_" (e.g. be_a_kind_of) or "be_"
301
+ # (e.g. be_empty), letting you choose the prefix that best suits the
302
+ # predicate.
303
+ def be(*args)
304
+ args.empty? ? Matchers::BuiltIn::Be.new : equal(*args)
305
+ end
306
+ alias_matcher :a_value, :be
307
+
308
+ # passes if target.kind_of?(klass)
309
+ def be_a(klass)
310
+ be_a_kind_of(klass)
311
+ end
312
+ alias_method :be_an, :be_a
313
+
314
+ # Passes if actual.instance_of?(expected)
315
+ #
316
+ # @example
317
+ #
318
+ # expect(5).to be_an_instance_of(Fixnum)
319
+ # expect(5).not_to be_an_instance_of(Numeric)
320
+ # expect(5).not_to be_an_instance_of(Float)
321
+ def be_an_instance_of(expected)
322
+ BuiltIn::BeAnInstanceOf.new(expected)
323
+ end
324
+ alias_method :be_instance_of, :be_an_instance_of
325
+ alias_matcher :an_instance_of, :be_an_instance_of
326
+
327
+ # Passes if actual.kind_of?(expected)
328
+ #
329
+ # @example
330
+ #
331
+ # expect(5).to be_a_kind_of(Fixnum)
332
+ # expect(5).to be_a_kind_of(Numeric)
333
+ # expect(5).not_to be_a_kind_of(Float)
334
+ def be_a_kind_of(expected)
335
+ BuiltIn::BeAKindOf.new(expected)
336
+ end
337
+ alias_method :be_kind_of, :be_a_kind_of
338
+ alias_matcher :a_kind_of, :be_a_kind_of
339
+
340
+ # Passes if actual.between?(min, max). Works with any Comparable object,
341
+ # including String, Symbol, Time, or Numeric (Fixnum, Bignum, Integer,
342
+ # Float, Complex, and Rational).
343
+ #
344
+ # By default, `be_between` is inclusive (i.e. passes when given either the max or min value),
345
+ # but you can make it `exclusive` by chaining that off the matcher.
346
+ #
347
+ # @example
348
+ #
349
+ # expect(5).to be_between(1, 10)
350
+ # expect(11).not_to be_between(1, 10)
351
+ # expect(10).not_to be_between(1, 10).exclusive
352
+ def be_between(min, max)
353
+ BuiltIn::BeBetween.new(min, max)
354
+ end
355
+ alias_matcher :a_value_between, :be_between
356
+
357
+ # Passes if actual == expected +/- delta
358
+ #
359
+ # @example
360
+ #
361
+ # expect(result).to be_within(0.5).of(3.0)
362
+ # expect(result).not_to be_within(0.5).of(3.0)
363
+ def be_within(delta)
364
+ BuiltIn::BeWithin.new(delta)
365
+ end
366
+ alias_matcher :a_value_within, :be_within
367
+ alias_matcher :within, :be_within
368
+
369
+ # Applied to a proc, specifies that its execution will cause some value to
370
+ # change.
371
+ #
372
+ # @param [Object] receiver
373
+ # @param [Symbol] message the message to send the receiver
374
+ #
375
+ # You can either pass <tt>receiver</tt> and <tt>message</tt>, or a block,
376
+ # but not both.
377
+ #
378
+ # When passing a block, it must use the `{ ... }` format, not
379
+ # do/end, as `{ ... }` binds to the `change` method, whereas do/end
380
+ # would errantly bind to the `expect(..).to` or `expect(...).not_to` method.
381
+ #
382
+ # You can chain any of the following off of the end to specify details
383
+ # about the change:
384
+ #
385
+ # * `by`
386
+ # * `by_at_least`
387
+ # * `by_at_most`
388
+ # * `from`
389
+ # * `to`
390
+ #
391
+ # @example
392
+ #
393
+ # expect {
394
+ # team.add_player(player)
395
+ # }.to change(roster, :count)
396
+ #
397
+ # expect {
398
+ # team.add_player(player)
399
+ # }.to change(roster, :count).by(1)
400
+ #
401
+ # expect {
402
+ # team.add_player(player)
403
+ # }.to change(roster, :count).by_at_least(1)
404
+ #
405
+ # expect {
406
+ # team.add_player(player)
407
+ # }.to change(roster, :count).by_at_most(1)
408
+ #
409
+ # string = "string"
410
+ # expect {
411
+ # string.reverse!
412
+ # }.to change { string }.from("string").to("gnirts")
413
+ #
414
+ # string = "string"
415
+ # expect {
416
+ # string
417
+ # }.not_to change { string }.from("string")
418
+ #
419
+ # expect {
420
+ # person.happy_birthday
421
+ # }.to change(person, :birthday).from(32).to(33)
422
+ #
423
+ # expect {
424
+ # employee.develop_great_new_social_networking_app
425
+ # }.to change(employee, :title).from("Mail Clerk").to("CEO")
426
+ #
427
+ # expect {
428
+ # doctor.leave_office
429
+ # }.to change(doctor, :sign).from(/is in/).to(/is out/)
430
+ #
431
+ # user = User.new(:type => "admin")
432
+ # expect {
433
+ # user.symbolize_type
434
+ # }.to change(user, :type).from(String).to(Symbol)
435
+ #
436
+ # == Notes
437
+ #
438
+ # Evaluates `receiver.message` or `block` before and after it
439
+ # evaluates the block passed to `expect`.
440
+ #
441
+ # `expect( ... ).not_to change` supports the form that specifies `from`
442
+ # (which specifies what you expect the starting, unchanged value to be)
443
+ # but does not support forms with subsequent calls to `by`, `by_at_least`,
444
+ # `by_at_most` or `to`.
445
+ def change(receiver=nil, message=nil, &block)
446
+ BuiltIn::Change.new(receiver, message, &block)
447
+ end
448
+ alias_matcher :a_block_changing, :change
449
+ alias_matcher :changing, :change
450
+
451
+ # Passes if actual contains all of the expected regardless of order.
452
+ # This works for collections. Pass in multiple args and it will only
453
+ # pass if all args are found in collection.
454
+ #
455
+ # @note This is also available using the `=~` operator with `should`,
456
+ # but `=~` is not supported with `expect`.
457
+ #
458
+ # @note This matcher only supports positive expectations.
459
+ # `expect(...).not_to contain_exactly(other_array)` is not supported.
460
+ #
461
+ # @example
462
+ #
463
+ # expect([1, 2, 3]).to contain_exactly(1, 2, 3)
464
+ # expect([1, 2, 3]).to contain_exactly(1, 3, 2)
465
+ #
466
+ # @see #match_array
467
+ def contain_exactly(*items)
468
+ BuiltIn::ContainExactly.new(items)
469
+ end
470
+ alias_matcher :a_collection_containing_exactly, :contain_exactly
471
+ alias_matcher :containing_exactly, :contain_exactly
472
+
473
+ # Passes if actual covers expected. This works for
474
+ # Ranges. You can also pass in multiple args
475
+ # and it will only pass if all args are found in Range.
476
+ #
477
+ # @example
478
+ # expect(1..10).to cover(5)
479
+ # expect(1..10).to cover(4, 6)
480
+ # expect(1..10).to cover(4, 6, 11) # fails
481
+ # expect(1..10).not_to cover(11)
482
+ # expect(1..10).not_to cover(5) # fails
483
+ #
484
+ # ### Warning:: Ruby >= 1.9 only
485
+ def cover(*values)
486
+ BuiltIn::Cover.new(*values)
487
+ end
488
+ alias_matcher :a_range_covering, :cover
489
+ alias_matcher :covering, :cover
490
+
491
+ # Matches if the actual value ends with the expected value(s). In the case
492
+ # of a string, matches against the last `expected.length` characters of the
493
+ # actual string. In the case of an array, matches against the last
494
+ # `expected.length` elements of the actual array.
495
+ #
496
+ # @example
497
+ #
498
+ # expect("this string").to end_with "string"
499
+ # expect([0, 1, 2, 3, 4]).to end_with 4
500
+ # expect([0, 2, 3, 4, 4]).to end_with 3, 4
501
+ def end_with(*expected)
502
+ BuiltIn::EndWith.new(*expected)
503
+ end
504
+ alias_matcher :a_collection_ending_with, :end_with
505
+ alias_matcher :a_string_ending_with, :end_with
506
+ alias_matcher :ending_with, :end_with
507
+
508
+ # Passes if <tt>actual == expected</tt>.
509
+ #
510
+ # See http://www.ruby-doc.org/core/classes/Object.html#M001057 for more
511
+ # information about equality in Ruby.
512
+ #
513
+ # @example
514
+ #
515
+ # expect(5).to eq(5)
516
+ # expect(5).not_to eq(3)
517
+ def eq(expected)
518
+ BuiltIn::Eq.new(expected)
519
+ end
520
+ alias_matcher :an_object_eq_to, :eq
521
+ alias_matcher :eq_to, :eq
522
+
523
+ # Passes if `actual.eql?(expected)`
524
+ #
525
+ # See http://www.ruby-doc.org/core/classes/Object.html#M001057 for more
526
+ # information about equality in Ruby.
527
+ #
528
+ # @example
529
+ #
530
+ # expect(5).to eql(5)
531
+ # expect(5).not_to eql(3)
532
+ def eql(expected)
533
+ BuiltIn::Eql.new(expected)
534
+ end
535
+ alias_matcher :an_object_eql_to, :eql
536
+ alias_matcher :eql_to, :eql
537
+
538
+ # Passes if <tt>actual.equal?(expected)</tt> (object identity).
539
+ #
540
+ # See http://www.ruby-doc.org/core/classes/Object.html#M001057 for more
541
+ # information about equality in Ruby.
542
+ #
543
+ # @example
544
+ #
545
+ # expect(5).to equal(5) # Fixnums are equal
546
+ # expect("5").not_to equal("5") # Strings that look the same are not the same object
547
+ def equal(expected)
548
+ BuiltIn::Equal.new(expected)
549
+ end
550
+ alias_matcher :an_object_equal_to, :equal
551
+ alias_matcher :equal_to, :equal
552
+
553
+ # Passes if `actual.exist?` or `actual.exists?`
554
+ #
555
+ # @example
556
+ # expect(File).to exist("path/to/file")
557
+ def exist(*args)
558
+ BuiltIn::Exist.new(*args)
559
+ end
560
+ alias_matcher :an_object_existing, :exist
561
+ alias_matcher :existing, :exist
562
+
563
+ # Passes if actual includes expected. This works for
564
+ # collections and Strings. You can also pass in multiple args
565
+ # and it will only pass if all args are found in collection.
566
+ #
567
+ # @example
568
+ #
569
+ # expect([1,2,3]).to include(3)
570
+ # expect([1,2,3]).to include(2,3)
571
+ # expect([1,2,3]).to include(2,3,4) # fails
572
+ # expect([1,2,3]).not_to include(4)
573
+ # expect("spread").to include("read")
574
+ # expect("spread").not_to include("red")
575
+ def include(*expected)
576
+ BuiltIn::Include.new(*expected)
577
+ end
578
+ alias_matcher :a_collection_including, :include
579
+ alias_matcher :a_string_including, :include
580
+ alias_matcher :a_hash_including, :include
581
+ alias_matcher :including, :include
582
+
583
+ # Passes if actual all expected objects pass. This works for
584
+ # any enumerable object.
585
+ #
586
+ # @example
587
+ #
588
+ # expect([1, 3, 5]).to all be_odd
589
+ # expect([1, 3, 6]).to all be_odd # fails
590
+ #
591
+ # @note The negative form `not_to all` is not supported. Instead
592
+ # use `not_to include` or pass a negative form of a matcher
593
+ # as the argument (e.g. `all exclude(:foo)`).
594
+ #
595
+ # @note You can also use this with compound matchers as well.
596
+ #
597
+ # @example
598
+ # expect([1, 3, 5]).to all( be_odd.and be_an(Integer) )
599
+ def all(expected)
600
+ BuiltIn::All.new(expected)
601
+ end
602
+
603
+ # Given a `Regexp` or `String`, passes if `actual.match(pattern)`
604
+ # Given an arbitrary nested data structure (e.g. arrays and hashes),
605
+ # matches if `expected === actual` || `actual == expected` for each
606
+ # pair of elements.
607
+ #
608
+ # @example
609
+ #
610
+ # expect(email).to match(/^([^\s]+)((?:[-a-z0-9]+\.)+[a-z]{2,})$/i)
611
+ # expect(email).to match("@example.com")
612
+ #
613
+ # @example
614
+ #
615
+ # hash = {
616
+ # :a => {
617
+ # :b => ["foo", 5],
618
+ # :c => { :d => 2.05 }
619
+ # }
620
+ # }
621
+ #
622
+ # expect(hash).to match(
623
+ # :a => {
624
+ # :b => a_collection_containing_exactly(
625
+ # a_string_starting_with("f"),
626
+ # an_instance_of(Fixnum)
627
+ # ),
628
+ # :c => { :d => (a_value < 3) }
629
+ # }
630
+ # )
631
+ #
632
+ # @note The `match_regex` alias is deprecated and is not recommended for use.
633
+ # It was added in 2.12.1 to facilitate its use from within custom
634
+ # matchers (due to how the custom matcher DSL was evaluated in 2.x,
635
+ # `match` could not be used there), but is no longer needed in 3.x.
636
+ def match(expected)
637
+ BuiltIn::Match.new(expected)
638
+ end
639
+ alias_matcher :match_regex, :match
640
+ alias_matcher :an_object_matching, :match
641
+ alias_matcher :a_string_matching, :match
642
+ alias_matcher :matching, :match
643
+
644
+ # An alternate form of `contain_exactly` that accepts
645
+ # the expected contents as a single array arg rather
646
+ # that splatted out as individual items.
647
+ #
648
+ # @example
649
+ #
650
+ # expect(results).to contain_exactly(1, 2)
651
+ # # is identical to:
652
+ # expect(results).to match_array([1, 2])
653
+ #
654
+ # @see #contain_exactly
655
+ def match_array(items)
656
+ contain_exactly(*items)
657
+ end
658
+
659
+ # With no arg, passes if the block outputs `to_stdout` or `to_stderr`.
660
+ # With a string, passes if the blocks outputs that specific string `to_stdout` or `to_stderr`.
661
+ # With a regexp or matcher, passes if the blocks outputs a string `to_stdout` or `to_stderr` that matches.
662
+ #
663
+ # @example
664
+ #
665
+ # expect { print 'foo' }.to output.to_stdout
666
+ # expect { print 'foo' }.to output('foo').to_stdout
667
+ # expect { print 'foo' }.to output(/foo/).to_stdout
668
+ #
669
+ # expect { do_something }.to_not output.to_stdout
670
+ #
671
+ # expect { warn('foo') }.to output.to_stderr
672
+ # expect { warn('foo') }.to output('foo').to_stderr
673
+ # expect { warn('foo') }.to output(/foo/).to_stderr
674
+ #
675
+ # expect { do_something }.to_not output.to_stderr
676
+ #
677
+ # @note This matcher works by temporarily replacing `$stdout` or `$stderr`,
678
+ # so it's not able to intercept stream output that explicitly uses `STDOUT`/`STDERR`
679
+ # or that uses a reference to `$stdout`/`$stderr` that was stored before the
680
+ # matcher is used.
681
+ def output(expected=nil)
682
+ BuiltIn::Output.new(expected)
683
+ end
684
+ alias_matcher :a_block_outputting, :output
685
+
686
+ # With no args, matches if any error is raised.
687
+ # With a named error, matches only if that specific error is raised.
688
+ # With a named error and messsage specified as a String, matches only if both match.
689
+ # With a named error and messsage specified as a Regexp, matches only if both match.
690
+ # Pass an optional block to perform extra verifications on the exception matched
691
+ #
692
+ # @example
693
+ #
694
+ # expect { do_something_risky }.to raise_error
695
+ # expect { do_something_risky }.to raise_error(PoorRiskDecisionError)
696
+ # expect { do_something_risky }.to raise_error(PoorRiskDecisionError) { |error| expect(error.data).to eq 42 }
697
+ # expect { do_something_risky }.to raise_error(PoorRiskDecisionError, "that was too risky")
698
+ # expect { do_something_risky }.to raise_error(PoorRiskDecisionError, /oo ri/)
699
+ #
700
+ # expect { do_something_risky }.not_to raise_error
701
+ def raise_error(error=Exception, message=nil, &block)
702
+ BuiltIn::RaiseError.new(error, message, &block)
703
+ end
704
+ alias_method :raise_exception, :raise_error
705
+
706
+ alias_matcher :a_block_raising, :raise_error do |desc|
707
+ desc.sub("raise", "a block raising")
708
+ end
709
+
710
+ alias_matcher :raising, :raise_error do |desc|
711
+ desc.sub("raise", "raising")
712
+ end
713
+
714
+ # Matches if the target object responds to all of the names
715
+ # provided. Names can be Strings or Symbols.
716
+ #
717
+ # @example
718
+ #
719
+ # expect("string").to respond_to(:length)
720
+ #
721
+ def respond_to(*names)
722
+ BuiltIn::RespondTo.new(*names)
723
+ end
724
+ alias_matcher :an_object_responding_to, :respond_to
725
+ alias_matcher :responding_to, :respond_to
726
+
727
+ # Passes if the submitted block returns true. Yields target to the
728
+ # block.
729
+ #
730
+ # Generally speaking, this should be thought of as a last resort when
731
+ # you can't find any other way to specify the behaviour you wish to
732
+ # specify.
733
+ #
734
+ # If you do find yourself in such a situation, you could always write
735
+ # a custom matcher, which would likely make your specs more expressive.
736
+ #
737
+ # @example
738
+ #
739
+ # expect(5).to satisfy { |n| n > 3 }
740
+ def satisfy(&block)
741
+ BuiltIn::Satisfy.new(&block)
742
+ end
743
+ alias_matcher :an_object_satisfying, :satisfy
744
+ alias_matcher :satisfying, :satisfy
745
+
746
+ # Matches if the actual value starts with the expected value(s). In the
747
+ # case of a string, matches against the first `expected.length` characters
748
+ # of the actual string. In the case of an array, matches against the first
749
+ # `expected.length` elements of the actual array.
750
+ #
751
+ # @example
752
+ #
753
+ # expect("this string").to start_with "this s"
754
+ # expect([0, 1, 2, 3, 4]).to start_with 0
755
+ # expect([0, 2, 3, 4, 4]).to start_with 0, 1
756
+ def start_with(*expected)
757
+ BuiltIn::StartWith.new(*expected)
758
+ end
759
+ alias_matcher :a_collection_starting_with, :start_with
760
+ alias_matcher :a_string_starting_with, :start_with
761
+ alias_matcher :starting_with, :start_with
762
+
763
+ # Given no argument, matches if a proc throws any Symbol.
764
+ #
765
+ # Given a Symbol, matches if the given proc throws the specified Symbol.
766
+ #
767
+ # Given a Symbol and an arg, matches if the given proc throws the
768
+ # specified Symbol with the specified arg.
769
+ #
770
+ # @example
771
+ #
772
+ # expect { do_something_risky }.to throw_symbol
773
+ # expect { do_something_risky }.to throw_symbol(:that_was_risky)
774
+ # expect { do_something_risky }.to throw_symbol(:that_was_risky, 'culprit')
775
+ #
776
+ # expect { do_something_risky }.not_to throw_symbol
777
+ # expect { do_something_risky }.not_to throw_symbol(:that_was_risky)
778
+ # expect { do_something_risky }.not_to throw_symbol(:that_was_risky, 'culprit')
779
+ def throw_symbol(expected_symbol=nil, expected_arg=nil)
780
+ BuiltIn::ThrowSymbol.new(expected_symbol, expected_arg)
781
+ end
782
+
783
+ alias_matcher :a_block_throwing, :throw_symbol do |desc|
784
+ desc.sub("throw", "a block throwing")
785
+ end
786
+
787
+ alias_matcher :throwing, :throw_symbol do |desc|
788
+ desc.sub("throw", "throwing")
789
+ end
790
+
791
+ # Passes if the method called in the expect block yields, regardless
792
+ # of whether or not arguments are yielded.
793
+ #
794
+ # @example
795
+ #
796
+ # expect { |b| 5.tap(&b) }.to yield_control
797
+ # expect { |b| "a".to_sym(&b) }.not_to yield_control
798
+ #
799
+ # @note Your expect block must accept a parameter and pass it on to
800
+ # the method-under-test as a block.
801
+ # @note This matcher is not designed for use with methods that yield
802
+ # multiple times.
803
+ def yield_control
804
+ BuiltIn::YieldControl.new
805
+ end
806
+ alias_matcher :a_block_yielding_control, :yield_control
807
+ alias_matcher :yielding_control, :yield_control
808
+
809
+ # Passes if the method called in the expect block yields with
810
+ # no arguments. Fails if it does not yield, or yields with arguments.
811
+ #
812
+ # @example
813
+ #
814
+ # expect { |b| User.transaction(&b) }.to yield_with_no_args
815
+ # expect { |b| 5.tap(&b) }.not_to yield_with_no_args # because it yields with `5`
816
+ # expect { |b| "a".to_sym(&b) }.not_to yield_with_no_args # because it does not yield
817
+ #
818
+ # @note Your expect block must accept a parameter and pass it on to
819
+ # the method-under-test as a block.
820
+ # @note This matcher is not designed for use with methods that yield
821
+ # multiple times.
822
+ def yield_with_no_args
823
+ BuiltIn::YieldWithNoArgs.new
824
+ end
825
+ alias_matcher :a_block_yielding_with_no_args, :yield_with_no_args
826
+ alias_matcher :yielding_with_no_args, :yield_with_no_args
827
+
828
+ # Given no arguments, matches if the method called in the expect
829
+ # block yields with arguments (regardless of what they are or how
830
+ # many there are).
831
+ #
832
+ # Given arguments, matches if the method called in the expect block
833
+ # yields with arguments that match the given arguments.
834
+ #
835
+ # Argument matching is done using `===` (the case match operator)
836
+ # and `==`. If the expected and actual arguments match with either
837
+ # operator, the matcher will pass.
838
+ #
839
+ # @example
840
+ #
841
+ # expect { |b| 5.tap(&b) }.to yield_with_args # because #tap yields an arg
842
+ # expect { |b| 5.tap(&b) }.to yield_with_args(5) # because 5 == 5
843
+ # expect { |b| 5.tap(&b) }.to yield_with_args(Fixnum) # because Fixnum === 5
844
+ # expect { |b| File.open("f.txt", &b) }.to yield_with_args(/txt/) # because /txt/ === "f.txt"
845
+ #
846
+ # expect { |b| User.transaction(&b) }.not_to yield_with_args # because it yields no args
847
+ # expect { |b| 5.tap(&b) }.not_to yield_with_args(1, 2, 3)
848
+ #
849
+ # @note Your expect block must accept a parameter and pass it on to
850
+ # the method-under-test as a block.
851
+ # @note This matcher is not designed for use with methods that yield
852
+ # multiple times.
853
+ def yield_with_args(*args)
854
+ BuiltIn::YieldWithArgs.new(*args)
855
+ end
856
+ alias_matcher :a_block_yielding_with_args, :yield_with_args
857
+ alias_matcher :yielding_with_args, :yield_with_args
858
+
859
+ # Designed for use with methods that repeatedly yield (such as
860
+ # iterators). Passes if the method called in the expect block yields
861
+ # multiple times with arguments matching those given.
862
+ #
863
+ # Argument matching is done using `===` (the case match operator)
864
+ # and `==`. If the expected and actual arguments match with either
865
+ # operator, the matcher will pass.
866
+ #
867
+ # @example
868
+ #
869
+ # expect { |b| [1, 2, 3].each(&b) }.to yield_successive_args(1, 2, 3)
870
+ # expect { |b| { :a => 1, :b => 2 }.each(&b) }.to yield_successive_args([:a, 1], [:b, 2])
871
+ # expect { |b| [1, 2, 3].each(&b) }.not_to yield_successive_args(1, 2)
872
+ #
873
+ # @note Your expect block must accept a parameter and pass it on to
874
+ # the method-under-test as a block.
875
+ def yield_successive_args(*args)
876
+ BuiltIn::YieldSuccessiveArgs.new(*args)
877
+ end
878
+ alias_matcher :a_block_yielding_successive_args, :yield_successive_args
879
+ alias_matcher :yielding_successive_args, :yield_successive_args
880
+
881
+ # Delegates to {RSpec::Expectations.configuration}.
882
+ # This is here because rspec-core's `expect_with` option
883
+ # looks for a `configuration` method on the mixin
884
+ # (`RSpec::Matchers`) to yield to a block.
885
+ # @return [RSpec::Expectations::Configuration] the configuration object
886
+ def self.configuration
887
+ Expectations.configuration
888
+ end
889
+
890
+ private
891
+
892
+ BE_PREDICATE_REGEX = /^(be_(?:an?_)?)(.*)/
893
+ HAS_REGEX = /^(?:have_)(.*)/
894
+
895
+ def method_missing(method, *args, &block)
896
+ case method.to_s
897
+ when BE_PREDICATE_REGEX
898
+ BuiltIn::BePredicate.new(method, *args, &block)
899
+ when HAS_REGEX
900
+ BuiltIn::Has.new(method, *args, &block)
901
+ else
902
+ super
903
+ end
904
+ end
905
+
906
+ # @api private
907
+ def self.is_a_matcher?(obj)
908
+ return true if ::RSpec::Matchers::BuiltIn::BaseMatcher === obj
909
+ return false if obj.respond_to?(:i_respond_to_everything_so_im_not_really_a_matcher)
910
+ return false unless obj.respond_to?(:matches?)
911
+
912
+ obj.respond_to?(:failure_message) ||
913
+ obj.respond_to?(:failure_message_for_should) # support legacy matchers
914
+ end
915
+
916
+ # @api private
917
+ def self.is_a_describable_matcher?(obj)
918
+ is_a_matcher?(obj) && obj.respond_to?(:description)
919
+ end
920
+ end
921
+ end