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,899 @@
1
+ === 1.6.2.1 / 2014-05-13
2
+
3
+ ==== Bug fixes
4
+
5
+ * Fix statically-linked libxml2 installation when using universal builds of Ruby. #1104
6
+ * Patching `mini_portile` to address the git dependency detailed in #1102.
7
+ * Library load fix to address segfault reported on some systems. #1097
8
+
9
+
10
+ === 1.6.2 / 2014-05-12
11
+
12
+ ==== Security Note
13
+
14
+ A set of security and bugfix patches have been backported from the libxml2 and libxslt repositories onto the version of 2.8.0 packaged with Nokogiri, including these notable security fixes:
15
+
16
+ * https://git.gnome.org/browse/libxml2/commit/?id=4629ee02ac649c27f9c0cf98ba017c6b5526070f
17
+ * CVE-2013-2877 https://git.gnome.org/browse/libxml2/commit/?id=e50ba8164eee06461c73cd8abb9b46aa0be81869
18
+ * CVE-2014-0191 https://git.gnome.org/browse/libxml2/commit/?id=9cd1c3cfbd32655d60572c0a413e017260c854df
19
+
20
+ It is recommended that you upgrade from 1.6.x to this version as soon as possible.
21
+
22
+ ==== Compatibility Note
23
+
24
+ Now requires libxml >= 2.6.21 (was previously >= 2.6.17).
25
+
26
+ ==== Features
27
+
28
+ * Add cross building of fat binary gems for 64-Bit Windows (x64-mingw32) and add support for native builds on Windows. #864, #989, #1072
29
+ * (MRI) Alias CP932 to Windows-31J if iconv does not support Windows-31J.
30
+ * (MRI) Nokogiri now links packaged libraries statically. To disable static linking, pass --disable-static to extconf.rb. #923
31
+ * (MRI) Fix a library path (LIBPATH) precedence problem caused by CRuby bug #9760.
32
+ * (MRI) Nokogiri automatically deletes directories of packaged libraries only used during build. To keep them for debugging purposes, pass --disable-clean to extconf.rb. #952
33
+ * (MRI) Nokogiri now builds libxml2 properly with iconv support on platforms where libiconv is installed outside the system default directories, such as FreeBSD.
34
+ * Add support for an-b in nth selectors. #886 (Thanks, Magnus Bergmark!)
35
+ * Add support for bare and multiple :not() functions in selectors. #887 (Thanks, Magnus Bergmark!)
36
+ * (MRI) Add an extconf.rb option --use-system-libraries, alternative to setting the environment variable NOKOGIRI_USE_SYSTEM_LIBRARIES.
37
+ * (MRI) Update packaged libraries: libxslt to 1.1.28, zlib to 1.2.8, and libiconv to 1.14, respectively.
38
+ * Nokogiri::HTML::Document#title= and #meta_encoding= now always add an element if not present, trying hard to find the best place to put it.
39
+ * Nokogiri::XML::DTD#html_dtd? and #html5_dtd? are added.
40
+ * Nokogiri::XML::Node#prepend_child is added. #664
41
+ * Nokogiri::XML::SAX::ParserContext#recovery is added. #453
42
+ * Fix documentation for XML::Node#namespace. #803 #802 (Thanks, Hoylen Sue)
43
+ * Allow Nokogiri::XML::Node#parse from unparented non-element nodes. #407
44
+
45
+ ==== Bugfixes
46
+
47
+ * Ensure :only-child pseudo class works within :not pseudo class. #858 (Thanks, Yamagishi Kazutoshi!)
48
+ * Don't call pkg_config when using bundled libraries in extconf.rb #931 (Thanks, Shota Fukumori!)
49
+ * Nokogiri.parse() does not mistake a non-HTML document like a RSS document as HTML document. #932 (Thanks, Yamagishi Kazutoshi!)
50
+ * (MRI) Perform a node type check before adding a child node to another. Previously adding a text node to another as a child could cause a SEGV. #1092
51
+ * (JRuby) XSD validation crashes in Java version. #373
52
+ * (JRuby) Document already has a root node error while using Builder. #646
53
+ * (JRuby) c14n tests are all passing on JRuby. #226
54
+ * Parsing empty documents raise SyntaxError in strict mode. #1005
55
+ * (JRuby) Make xpath faster by caching the xpath context. #741
56
+ * (JRuby) XML SAX push parser leaks memory on JRuby, but not on MRI. #998
57
+ * (JRuby) Inconsistent behavior aliasing the default namespace. #940
58
+ * (JRuby) Inconsistent behavior between parsing and adding namespaces. #943
59
+ * (JRuby) Xpath returns inconsistent result set on cloned document with namespaces and attributes. #1034
60
+ * (JRuby) Java-Implementation forgets element namespaces #902
61
+ * (JRuby) JRuby-Nokogiri does not recognise attributes inside namespaces #1081
62
+ * (JRuby) JRuby-Nokogiri has different comment node name #1080
63
+ * (JRuby) JAXPExtensionsProvider / Java 7 / Secure Processing #1070
64
+
65
+ === 1.6.1 / 2013-12-14
66
+
67
+ * Bugfixes
68
+
69
+ * (JRuby) Fix out of memory bug when certain invalid documents are parsed.
70
+ * (JRuby) Fix regression of billion-laughs vulnerability. #586
71
+
72
+
73
+ === 1.6.0 / 2013-06-08
74
+
75
+ This release was based on v1.5.10 and 1.6.0.rc1, and contains changes
76
+ mentioned in both.
77
+
78
+ * Deprecations
79
+
80
+ * Remove pre 1.9 monitoring from Travis.
81
+
82
+
83
+ === 1.6.0.rc1 / 2013-04-14
84
+
85
+ This release was based on v1.5.9, and so does not contain any fixes
86
+ mentioned in the notes for v1.5.10.
87
+
88
+ * Notes
89
+
90
+ * mini_portile is now a runtime dependency
91
+ * Ruby 1.9.2 and higher now required
92
+
93
+
94
+ * Features
95
+
96
+ * (MRI) Source code for libxml 2.8.0 and libxslt 1.2.26 is packaged
97
+ with the gem. These libraries are compiled at gem install time
98
+ unless the environment variable NOKOGIRI_USE_SYSTEM_LIBRARIES is
99
+ set. VERSION_INFO (also `nokogiri -v`) exposes whether libxml was
100
+ compiled from packaged source, or the system library was used.
101
+ * (Windows) libxml upgraded to 2.8.0
102
+
103
+
104
+ * Deprecations
105
+
106
+ * Support for Ruby 1.8.7 and prior has been dropped
107
+
108
+
109
+ === 1.5.11 / 2013-12-14
110
+
111
+ * Bugfixes
112
+
113
+ * (JRuby) Fix out of memory bug when certain invalid documents are parsed.
114
+ * (JRuby) Fix regression of billion-laughs vulnerability. #586
115
+
116
+
117
+ === 1.5.10 / 2013-06-07
118
+
119
+ * Bugfixes
120
+
121
+ * (JRuby) Fix "null document" error when parsing an empty IO in jruby 1.7.3. #883
122
+ * (JRuby) Fix schema validation when XSD has DOCTYPE set to DTD. #912 (Thanks, Patrick Cheng!)
123
+ * (MRI) Fix segfault when there is no default subelement for an HTML node. #917
124
+
125
+
126
+ * Notes
127
+
128
+ * Use rb_ary_entry instead of RARRAY_PTR (you know, for Rubinius). #877 (Thanks, Dirkjan Bussink!)
129
+ * Fix TypeError when running tests. #900 (Thanks, Cédric Boutillier!)
130
+
131
+
132
+ === 1.5.9 / 2013-03-21
133
+
134
+ * Bugfixes
135
+
136
+ * Ensure that prefixed attributes are properly namespaced when reparented. #869
137
+ * Fix for inconsistent namespaced attribute access for SVG nested in HTML. #861
138
+ * (MRI) Fixed a memory leak in fragment parsing if nodes are not all subsequently reparented. #856
139
+
140
+
141
+ === 1.5.8 / 2013-03-19
142
+
143
+ * Bugfixes
144
+
145
+ * (JRuby) Fix EmptyStackException thrown by elements with xlink:href attributes and no base_uri #534, #805. (Thanks, Patrick Quinn and Brian Hoffman!)
146
+ * Fixes duplicate attributes issue introduced in 1.5.7. #865
147
+ * Allow use of a prefixed namespace on a root node using Nokogiri::XML::Builder #868
148
+
149
+
150
+ === 1.5.7 / 2013-03-18
151
+
152
+ * Features
153
+
154
+ * Windows support for Ruby 2.0.
155
+
156
+
157
+ * Bugfixes
158
+
159
+ * SAX::Parser.parse_io throw an error when used with lower case encoding. #828
160
+ * (JRuby) Java Nokogiri is finally green (passes all tests) under 1.8 and 1.9 mode. High five everyone. #798, #705
161
+ * (JRuby) Nokogiri::XML::Reader broken (as a pull parser) on jruby - reads the whole XML document. #831
162
+ * (JRuby) JRuby hangs parsing "&". #837
163
+ * (JRuby) JRuby NPE parsing an invalid XML instruction. #838
164
+ * (JRuby) Node#content= incompatibility. #839
165
+ * (JRuby) to_xhtml doesn't print the last slash for self-closing tags in JRuby. #834
166
+ * (JRuby) Adding an EntityReference after a Text node mangles the entity in JRuby. #835
167
+ * (JRuby) JRuby version inconsistency: nil for empty attributes. #818
168
+ * CSS queries for classes (e.g., ".foo") now treat all whitespace identically. #854
169
+ * Namespace behavior cleaned up and made consistent between JRuby and MRI. #846, #801 (Thanks, Michael Klein!)
170
+ * (MRI) SAX parser handles empty processing instructions. #845
171
+
172
+
173
+ === 1.5.6 / 2012-12-19
174
+
175
+ * Features
176
+
177
+ * Improved performance of XML::Document#collect_namespaces. #761 (Thanks, Juergen Mangler!)
178
+ * New callback SAX::Document#processing_instruction (Thanks, Kitaiti Makoto!)
179
+ * Node#native_content= allows setting unescaped node contant. #768
180
+ * XPath lookup with namespaces supports symbol keys. #729 (Thanks, Ben Langfeld.)
181
+ * XML::Node#[]= stringifies values. #729 (Thanks, Ben Langfeld.)
182
+ * bin/nokogiri will process a document from $stdin
183
+ * bin/nokogiri -e will execute a program from the command line
184
+ * (JRuby) bin/nokogiri --version will print the Xerces and NekoHTML versions.
185
+
186
+
187
+ * Bugfixes
188
+
189
+ * Nokogiri now detects XSLT transform errors. #731 (Thanks, Justin Fitzsimmons!)
190
+ * Don't throw an Error when trying to replace top-level text node in DocumentFragment. #775
191
+ * Raise an ArgumentError if an invalid encoding is passed to the SAX parser. #756 (Thanks, Bradley Schaefer!)
192
+ * Prefixed element inconsistency between CRuby and JRuby. #712
193
+ * (JRuby) space prior to xml preamble causes nokogiri to fail parsing. (fixed along with #748) #790
194
+ * (JRuby) Fixed the bug Nokogiri::XML::Node#content inconsistency between Java and C. #794, #797
195
+ * (JRuby) raises INVALID_CHARACTER_ERR exception when EntityReference name starts with '#'. #719
196
+ * (JRuby) doesn't coerce namespaces out of strings on a direct subclass of Node. #715
197
+ * (JRuby) Node#content now renders newlines properly. #737 (Thanks, Piotr Szmielew!)
198
+ * (JRuby) Unknown namespace are ignore when the recover option is used. #748
199
+ * (JRuby) XPath queries for namespaces should not throw exceptions when called twice in a row. #764
200
+ * (JRuby) More consistent (with libxml2) whitespace formatting when emitting XML. #771
201
+ * (JRuby) namespaced attributes broken when appending raw xml to builder. #770
202
+ * (JRuby) Nokogiri::XML::Document#wrap raises undefined method `length' for nil:NilClass when trying to << to a node. #781
203
+ * (JRuby) Fixed "bad file descriptor" bug when closing open file descriptors. #495
204
+ * (JRuby) JRuby/CRuby incompatibility for attribute decorators. #785
205
+ * (JRuby) Issues parsing valid XML with no internal subset in the DTD. #547, #811
206
+ * (JRuby) Issues parsing valid node content when it contains colons. #728
207
+ * (JRuby) Correctly parse the doc type of html documents. #733
208
+ * (JRuby) Include dtd in the xml output when a builder is used with create_internal_subset. #751
209
+ * (JRuby) builder requires textwrappers for valid utf8 in jruby, not in mri. #784
210
+
211
+
212
+ === 1.5.5 / 2012-06-24
213
+
214
+ * Features
215
+
216
+ * Much-improved support for JRuby in 1.9 mode! Yay!
217
+
218
+ * Bugfixes
219
+
220
+ * Regression in JRuby Nokogiri add_previous_sibling (1.5.0 -> 1.5.1) #691 (Thanks, John Shahid!)
221
+ * JRuby unable to create HTML doc if URL arg provided #674 (Thanks, John Shahid!)
222
+ * JRuby raises NullPointerException when given HTML document is nil or empty string. #699
223
+ * JRuby 1.9 error, uncaught throw 'encoding_found', has been fixed. #673
224
+ * Invalid encoding returned in JRuby with US-ASCII. #583
225
+ * XmlSaxPushParser raises IndexOutOfBoundsException when over 512 characters are given. #567, #615
226
+ * When xpath evaluation returns empty NodeSet, decorating NodeSet's base document raises exception. #514
227
+ * JRuby raises exception when xpath with namespace is specified. pull request #681 (Thanks, Piotr Szmielew)
228
+ * JRuby renders nodes without their namespace when subclassing Node. #695
229
+ * JRuby raises NAMESPACE_ERR (org.w3c.dom.DOMException) while instantiating RDF::RDFXML::Writer. #683
230
+ * JRuby is not able to use namespaces in xpath. #493
231
+ * JRuby's Entity resolving should be consistent with C-Nokogiri #704, #647, #703
232
+
233
+
234
+ === 1.5.4 / 2012-06-12
235
+
236
+ * Features
237
+
238
+ * The "nokogiri" script now has more verbose output when passed the `--rng` option. #675 (Thanks, Dan Radez!)
239
+ * Build support on hardened Debian systems that use `-Werror=format-security`. #680.
240
+ * Better build support for systems with pkg-config. #584
241
+ * Better build support for systems with multiple iconv installations.
242
+
243
+ * Bugfixes
244
+
245
+ * Segmentation fault when creating a comment node for a DocumentFragment. #677, #678.
246
+ * Treat '.' as xpath in at() and search(). #690
247
+
248
+ * (MRI, Security) Default parse options for XML documents were
249
+ changed to not make network connections during document parsing,
250
+ to avoid XXE vulnerability. #693
251
+
252
+ To re-enable this behavior, the configuration method `nononet` may
253
+ be called, like this:
254
+
255
+ Nokogiri::XML::Document.parse(xml) { |config| config.nononet }
256
+
257
+ Insert your own joke about double-negatives here.
258
+
259
+
260
+ === 1.5.3 / 2012-06-01
261
+
262
+ * Features
263
+
264
+ * Support for "prefixless" CSS selectors ~, > and + like jQuery
265
+ supports. #621, #623. (Thanks, David Lee!)
266
+ * Attempting to improve installation on homebrew 0.9 (with regards
267
+ to iconv). Isn't package management convenient?
268
+
269
+ * Bugfixes
270
+
271
+ * Custom xpath functions with empty nodeset arguments cause a
272
+ segfault. #634.
273
+ * Nokogiri::XML::Node#css now works for XML documents with default
274
+ namespaces when the rule contains attribute selector without
275
+ namespace.
276
+ * Fixed marshalling bugs around how arguments are passed to (and
277
+ returned from) XSLT custom xpath functions. #640.
278
+ * Nokogiri::XML::Reader#outer_xml is broken in JRuby #617
279
+ * Nokogiri::XML::Attribute on JRuby returns a nil namespace #647
280
+ * Nokogiri::XML::Node#namespace= cannot set a namespace without a
281
+ prefix on JRuby #648
282
+ * (JRuby) 1.9 mode causes dead lock while running rake #571
283
+ * HTML::Document#meta_encoding does not raise exception on docs with
284
+ malformed content-type. #655
285
+ * Fixing segfault related to unsupported encodings in in-context
286
+ parsing on 1.8.7. #643
287
+ * (JRuby) Concurrency issue in XPath parsing. #682
288
+
289
+
290
+ === 1.5.2 / 2012-03-09
291
+
292
+ Repackaging of 1.5.1 with a gemspec that is compatible with older Rubies. #631, #632.
293
+
294
+
295
+ === 1.5.1 / 2012-03-09
296
+
297
+ * Features
298
+
299
+ * XML::Builder#comment allows creation of comment nodes.
300
+ * CSS searches now support namespaced attributes. #593
301
+ * Java integration feature is added. Now, XML::Document.wrap
302
+ and XML::Document#to_java methods are available.
303
+ * RelaxNG validator support in the `nokogiri` cli utility. #591 (thanks, Dan Radez!)
304
+
305
+ * Bugfixes
306
+
307
+ * Fix many memory leaks and segfault opportunities. Thanks, Tim Elliott!
308
+ * extconf searches homebrew paths if homebrew is installed.
309
+ * Inconsistent behavior of Nokogiri 1.5.0 Java #620
310
+ * Inheriting from Nokogiri::XML::Node on JRuby (1.6.4/5) fails #560
311
+ * XML::Attr nodes are not allowed to be added as node children, so an
312
+ exception is raised. #558
313
+ * No longer defensively "pickle" adjacent text nodes on
314
+ Node#add_next_sibling and Node#add_previous_sibling calls. #595.
315
+ * Java version inconsistency: it returns nil for empty attributes #589
316
+ * to_xhtml incorrectly generates <p /></p> when tag is empty #557
317
+ * Document#add_child now accepts a Node, NodeSet, DocumentFragment,
318
+ or String. #546.
319
+ * Document#create_element now recognizes namespaces containing
320
+ non-word characters (like "SOAP-ENV"). This is mostly relevant to
321
+ users of Builder, which calls Document#create_element for nearly
322
+ everything. #531.
323
+ * File encoding broken in 1.5.0 / jruby / windows #529
324
+ * Java version does not return namespace defs as attrs for ::HTML #542
325
+ * Bad file descriptor with Nokogiri 1.5.0 #495
326
+ * remove_namespace! doesn't work in pure java version #492
327
+ * The Nokogiri Java native build throws a null pointer exception
328
+ when ActiveSupport's .blank? method is called directly on a parsed
329
+ object. #489
330
+ * 1.5.0 Not using correct character encoding #488
331
+ * Raw XML string in XML Builder broken on JRuby #486
332
+ * Nokogiri 1.5.0 XML generation broken on JRuby #484
333
+ * Do not allow multiple root nodes. #550
334
+ * Fixes for custom XPath functions. #605, #606 (thanks, Juan Wajnerman!)
335
+ * Node#to_xml does not override :save_with if it is provided. #505
336
+ * Node#set is a private method (JRuby). #564 (thanks, Nick Sieger!)
337
+ * C14n cleanup and Node#canonicalize (thanks, Ivan Pirlik!) #563
338
+
339
+
340
+ === 1.5.0 / 2011-07-01
341
+
342
+ * Notes
343
+
344
+ * See changelog from 1.4.7
345
+
346
+ * Features
347
+
348
+ * extracted sets of Node::SaveOptions into Node::SaveOptions::DEFAULT_{X,H,XH}TML (refactor)
349
+
350
+ * Bugfixes
351
+
352
+ * default output of XML on JRuby is no longer formatted due to
353
+ inconsistent whitespace handling. #415
354
+ * (JRuby) making empty NodeSets with null `nodes` member safe to operate on. #443
355
+ * Fix a bug in advanced encoding detection that leads to partially
356
+ duplicated document when parsing an HTML file with unknown
357
+ encoding.
358
+ * Add support for <meta charset="...">.
359
+
360
+
361
+ === 1.5.0 beta3 / 2010/12/02
362
+
363
+ * Notes
364
+
365
+ * JRuby performance tuning
366
+ * See changelog from 1.4.4
367
+
368
+ * Bugfixes
369
+
370
+ * Node#inner_text no longer returns nil. (JRuby) #264
371
+
372
+
373
+ === 1.5.0 beta2 / 2010/07/30
374
+
375
+ * Notes
376
+
377
+ * See changelog from 1.4.3
378
+
379
+
380
+ === 1.5.0 beta1 / 2010/05/22
381
+
382
+ * Notes
383
+
384
+ * JRuby support is provided by a new pure-java backend.
385
+
386
+ * Deprecations
387
+
388
+ * Ruby 1.8.6 is deprecated. Nokogiri will install, but official support is ended.
389
+ * LibXML 2.6.16 and earlier are deprecated. Nokogiri will refuse to install.
390
+ * FFI support is removed.
391
+
392
+
393
+ === 1.4.7 / 2011-07-01
394
+
395
+ * Bugfixes
396
+
397
+ * Fix a bug in advanced encoding detection that leads to partially
398
+ duplicated document when parsing an HTML file with unknown
399
+ encoding. Thanks, Timothy Elliott (@ender672)! #478
400
+
401
+
402
+ === 1.4.6 / 2011-06-19
403
+
404
+ * Notes
405
+
406
+ * This version is functionally identical to 1.4.5.
407
+ * Ruby 1.8.6 support has been restored.
408
+
409
+
410
+ === 1.4.5 / 2011-05-19
411
+
412
+ * New Features
413
+
414
+ * Nokogiri::HTML::Document#title accessor gets and sets the document title.
415
+ * extracted sets of Node::SaveOptions into Node::SaveOptions::DEFAULT_{X,H,XH}TML (refactor)
416
+ * Raise an exception if a string is passed to Nokogiri::XML::Schema#validate. #406
417
+
418
+ * Bugfixes
419
+
420
+ * Node#serialize-and-friends now accepts a SaveOption object as the, erm, save object.
421
+ * Nokogiri::CSS::Parser has-a Nokogiri::CSS::Tokenizer
422
+ * (JRUBY+FFI only) Weak references are now threadsafe. #355
423
+ * Make direct start_element() callback (currently used for
424
+ HTML::SAX::Parser) pass attributes in assoc array, just as
425
+ emulated start_element() callback does. rel. #356
426
+ * HTML::SAX::Parser should call back a block given to parse*() if any, just as XML::SAX::Parser does.
427
+ * Add further encoding detection to HTML parser that libxml2 does not do.
428
+ * Document#remove_namespaces! now handles attributes with namespaces. #396
429
+ * XSLT::Stylesheet#transform no longer segfaults when handed a non-XML::Document. #452
430
+ * XML::Reader no longer segfaults when under GC pressure. #439
431
+
432
+
433
+ === 1.4.4 / 2010-11-15
434
+
435
+ * New Features
436
+
437
+ * XML::Node#children= sets the node's inner html (much like #inner_html=), but returns the reparent node(s).
438
+ * XSLT supports function extensions. #336
439
+ * XPath bind parameter substitution. #329
440
+ * XML::Reader node type constants. #369
441
+ * SAX Parser context provides line and column information
442
+
443
+ * Bugfixes
444
+
445
+ * XML::DTD#attributes returns an empty hash instead of nil when there are no attributes.
446
+ * XML::DTD#{keys,each} now work as expected. #324
447
+ * {XML,HTML}::DocumentFragment.{new,parse} no longer strip leading and trailing whitespace. #319
448
+ * XML::Node#{add_child,add_previous_sibling,add_next_sibling,replace} return a NodeSet when passed a string.
449
+ * Unclosed tags parsed more robustly in fragments. #315
450
+ * XML::Node#{replace,add_previous_sibling,add_next_sibling} edge cases fixed related to libxml's text node merging. #308
451
+ * Fixed a segfault when GC occurs during xpath handler argument marshalling. #345
452
+ * Added hack to Slop decorator to work with previously defined methods. #330
453
+ * Fix a memory leak when duplicating child nodes. #353
454
+ * Fixed off-by-one bug with nth-last-{child,of-type} CSS selectors when NOT using an+b notation. #354
455
+ * Fixed passing of non-namespace attributes to SAX::Document#start_element. #356
456
+ * Workaround for libxml2 in-context parsing bug. #362
457
+ * Fixed NodeSet#wrap on nodes within a fragment. #331
458
+
459
+
460
+ === 1.4.3 / 2010/07/28
461
+
462
+ * New Features
463
+
464
+ * XML::Reader#empty_element? returns true for empty elements. #262
465
+ * Node#remove_namespaces! now removes namespace *declarations* as well. #294
466
+ * NodeSet#at_xpath, NodeSet#at_css and NodeSet#> do what the corresponding
467
+ methods of Node do.
468
+
469
+ * Bugfixes
470
+
471
+ * XML::NodeSet#{include?,delete,push} accept an XML::Namespace
472
+ * XML::Document#parse added for parsing in the context of a document
473
+ * XML::DocumentFragment#inner_html= works with contextual parsing! #298, #281
474
+ * lib/nokogiri/css/parser.y Combined CSS functions + pseudo selectors fixed
475
+ * Reparenting text nodes is safe, even when the operation frees adjacent merged nodes. #283
476
+ * Fixed libxml2 versionitis issue with xmlFirstElementChild et al. #303
477
+ * XML::Attr#add_namespace now works as expected. #252
478
+ * HTML::DocumentFragment uses the string's encoding. #305
479
+ * Fix the CSS3 selector translation rule for the general sibling combinator
480
+ (a.k.a. preceding selector) that incorrectly converted "E ~ F G" to
481
+ "//F//G[preceding-sibling::E]".
482
+
483
+
484
+ === 1.4.2 / 2010/05/22
485
+
486
+ * New Features
487
+
488
+ * XML::Node#parse will parse XML or HTML fragments with respect to the
489
+ context node.
490
+ * XML::Node#namespaces returns all namespaces defined in the node and all
491
+ ancestor nodes
492
+ (previously did not return ancestors' namespace definitions).
493
+ * Added Enumerable to XML::Node
494
+ * Nokogiri::XML::Schema#validate now uses xmlSchemaValidateFile if a
495
+ filename is passed, which is faster and more memory-efficient. GH #219
496
+ * XML::Document#create_entity will create new EntityDecl objects. GH #174
497
+ * JRuby FFI implementation no longer uses ObjectSpace._id2ref,
498
+ instead using Charles Nutter's rocking Weakling gem.
499
+ * Nokogiri::XML::Node#first_element_child fetch the first child node that is
500
+ an ELEMENT node.
501
+ * Nokogiri::XML::Node#last_element_child fetch the last child node that is
502
+ an ELEMENT node.
503
+ * Nokogiri::XML::Node#elements fetch all children nodes that are ELEMENT
504
+ nodes.
505
+ * Nokogiri::XML::Node#add_child, #add_previous_sibling, #before,
506
+ #add_next_sibling, #after, #inner_html, #swap and #replace all now
507
+ accept a Node, DocumentFragment, NodeSet, or a string containing
508
+ markup.
509
+ * Node#fragment? indicates whether a node is a DocumentFragment.
510
+
511
+ * Bugfixes
512
+
513
+ * XML::NodeSet is now always decorated (if the document has decorators).
514
+ GH #198
515
+ * XML::NodeSet#slice gracefully handles offset+length larger than the set
516
+ length. GH #200
517
+ * XML::Node#content= safely unlinks previous content. GH #203
518
+ * XML::Node#namespace= takes nil as a parameter
519
+ * XML::Node#xpath returns things other than NodeSet objects. GH #208
520
+ * XSLT::StyleSheet#transform accepts hashes for parameters. GH #223
521
+ * Psuedo selectors inside not() work. GH #205
522
+ * XML::Builder doesn't break when nodes are unlinked.
523
+ Thanks to vihai! GH #228
524
+ * Encoding can be forced on the SAX parser. Thanks Eugene Pimenov! GH #204
525
+ * XML::DocumentFragment uses XML::Node#parse to determine children.
526
+ * Fixed a memory leak in xml reader. Thanks sdor! GH #244
527
+ * Node#replace returns the new child node as claimed in the
528
+ RDoc. Previously returned +self+.
529
+
530
+ * Notes
531
+
532
+ * The Windows gems now bundle DLLs for libxml 2.7.6 and libxslt
533
+ 1.1.26. Prior to this release, libxml 2.7.3 and libxslt 1.1.24
534
+ were bundled.
535
+
536
+
537
+ === 1.4.1 / 2009/12/10
538
+
539
+ * New Features
540
+
541
+ * Added Nokogiri::LIBXML_ICONV_ENABLED
542
+ * Alias Node#[] to Node#attr
543
+ * XML::Node#next_element added
544
+ * XML::Node#> added for searching a nodes immediate children
545
+ * XML::NodeSet#reverse added
546
+ * Added fragment support to Node#add_child, Node#add_next_sibling,
547
+ Node#add_previous_sibling, and Node#replace.
548
+ * XML::Node#previous_element implemented
549
+ * Rubinius support
550
+ * Ths CSS selector engine now supports :has()
551
+ * XML::NodeSet#filter() was added
552
+ * XML::Node.next= and .previous= are aliases for add_next_sibling and add_previous_sibling. GH #183
553
+
554
+ * Bugfixes
555
+
556
+ * XML fragments with namespaces do not raise an exception (regression in 1.4.0)
557
+ * Node#matches? works in nodes contained by a DocumentFragment. GH #158
558
+ * Document should not define add_namespace() method. GH #169
559
+ * XPath queries returning namespace declarations do not segfault.
560
+ * Node#replace works with nodes from different documents. GH #162
561
+ * Adding XML::Document#collect_namespaces
562
+ * Fixed bugs in the SOAP4R adapter
563
+ * Fixed bug in XML::Node#next_element for certain edge cases
564
+ * Fixed load path issue with JRuby under Windows. GH #160.
565
+ * XSLT#apply_to will honor the "output method". Thanks richardlehane!
566
+ * Fragments containing leading text nodes with newlines now parse properly. GH #178.
567
+
568
+
569
+ === 1.4.0 / 2009/10/30
570
+
571
+ * Happy Birthday!
572
+
573
+ * New Features
574
+
575
+ * Node#at_xpath returns the first element of the NodeSet matching the XPath
576
+ expression.
577
+ * Node#at_css returns the first element of the NodeSet matching the CSS
578
+ selector.
579
+ * NodeSet#| for unions GH #119 (Thanks Serabe!)
580
+ * NodeSet#inspect makes prettier output
581
+ * Node#inspect implemented for more rubyish document inspecting
582
+ * Added XML::DTD#external_id
583
+ * Added XML::DTD#system_id
584
+ * Added XML::ElementContent for DTD Element content validity
585
+ * Better namespace declaration support in Nokogiri::XML::Builder
586
+ * Added XML::Node#external_subset
587
+ * Added XML::Node#create_external_subset
588
+ * Added XML::Node#create_internal_subset
589
+ * XML Builder can append raw strings (GH #141, patch from dudleyf)
590
+ * XML::SAX::ParserContext added
591
+ * XML::Document#remove_namespaces! for the namespace-impaired
592
+
593
+ * Bugfixes
594
+
595
+ * returns nil when HTML documents do not declare a meta encoding tag. GH #115
596
+ * Uses RbConfig::CONFIG['host_os'] to adjust ENV['PATH'] GH #113
597
+ * NodeSet#search is more efficient GH #119 (Thanks Serabe!)
598
+ * NodeSet#xpath handles custom xpath functions
599
+ * Fixing a SEGV when XML::Reader gets attributes for current node
600
+ * Node#inner_html takes the same arguments as Node#to_html GH #117
601
+ * DocumentFragment#css delegates to it's child nodes GH #123
602
+ * NodeSet#[] works with slices larger than NodeSet#length GH #131
603
+ * Reparented nodes maintain their namespace. GH #134
604
+ * Fixed SEGV when adding an XML::Document to NodeSet
605
+ * XML::SyntaxError can be duplicated. GH #148
606
+
607
+ * Deprecations
608
+
609
+ * Hpricot compatibility layer removed
610
+
611
+
612
+ === 1.3.3 / 2009/07/26
613
+
614
+ * New Features
615
+
616
+ * NodeSet#children returns all children of all nodes
617
+
618
+ * Bugfixes
619
+
620
+ * Override libxml-ruby's global error handler
621
+ * ParseOption#strict fixed
622
+ * Fixed a segfault when sending an empty string to Node#inner_html= GH #88
623
+ * String encoding is now set to UTF-8 in Ruby 1.9
624
+ * Fixed a segfault when moving root nodes between documents. GH #91
625
+ * Fixed an O(n) penalty on node creation. GH #101
626
+ * Allowing XML documents to be output as HTML documents
627
+
628
+ * Deprecations
629
+
630
+ * Hpricot compatibility layer will be removed in 1.4.0
631
+
632
+
633
+ === 1.3.2 / 2009-06-22
634
+
635
+ * New Features
636
+
637
+ * Nokogiri::XML::DTD#validate will validate your document
638
+
639
+ * Bugfixes
640
+
641
+ * Nokogiri::XML::NodeSet#search will search top level nodes. GH #73
642
+ * Removed namespace related methods from Nokogiri::XML::Document
643
+ * Fixed a segfault when a namespace was added twice
644
+ * Made nokogiri work with Snow Leopard GH #79
645
+ * Mailing list has moved to: http://groups.google.com/group/nokogiri-talk
646
+ * HTML fragments now correctly handle comments and CDATA blocks. GH #78
647
+ * Nokogiri::XML::Document#clone is now an alias of dup
648
+
649
+ * Deprecations
650
+
651
+ * Nokogiri::XML::SAX::Document#start_element_ns is deprecated, please switch
652
+ to Nokogiri::XML::SAX::Document#start_element_namespace
653
+ * Nokogiri::XML::SAX::Document#end_element_ns is deprecated, please switch
654
+ to Nokogiri::XML::SAX::Document#end_element_namespace
655
+
656
+
657
+ === 1.3.1 / 2009-06-07
658
+
659
+ * Bugfixes
660
+
661
+ * extconf.rb checks for optional RelaxNG and Schema functions
662
+ * Namespace nodes are added to the Document node cache
663
+
664
+
665
+ === 1.3.0 / 2009-05-30
666
+
667
+ * New Features
668
+
669
+ * Builder changes scope based on block arity
670
+ * Builder supports methods ending in underscore similar to tagz
671
+ * Nokogiri::XML::Node#<=> compares nodes based on Document position
672
+ * Nokogiri::XML::Node#matches? returns true if Node can be found with
673
+ given selector.
674
+ * Nokogiri::XML::Node#ancestors now returns an Nokogiri::XML::NodeSet
675
+ * Nokogiri::XML::Node#ancestors will match parents against optional selector
676
+ * Nokogiri::HTML::Document#meta_encoding for getting the meta encoding
677
+ * Nokogiri::HTML::Document#meta_encoding= for setting the meta encoding
678
+ * Nokogiri::XML::Document#encoding= to set the document encoding
679
+ * Nokogiri::XML::Schema for validating documents against XSD schema
680
+ * Nokogiri::XML::RelaxNG for validating documents against RelaxNG schema
681
+ * Nokogiri::HTML::ElementDescription for fetching HTML element descriptions
682
+ * Nokogiri::XML::Node#description to fetch the node description
683
+ * Nokogiri::XML::Node#accept implements Visitor pattern
684
+ * bin/nokogiri for easily examining documents (Thanks Yutaka HARA!)
685
+ * Nokogiri::XML::NodeSet now supports more Array and Enumerable operators:
686
+ index, delete, slice, - (difference), + (concatenation), & (intersection),
687
+ push, pop, shift, ==
688
+ * Nokogiri.XML, Nokogiri.HTML take blocks that receive
689
+ Nokogiri::XML::ParseOptions objects
690
+ * Nokogiri::XML::Node#namespace returns a Nokogiri::XML::Namespace
691
+ * Nokogiri::XML::Node#namespace= for setting a node's namespace
692
+ * Nokogiri::XML::DocumentFragment and Nokogiri::HTML::DocumentFragment
693
+ have a sensible API and a more robust implementation.
694
+ * JRuby 1.3.0 support via FFI.
695
+
696
+ * Bugfixes
697
+
698
+ * Fixed a problem with nil passed to CDATA constructor
699
+ * Fragment method deals with regular expression characters
700
+ (Thanks Joel!) LH #73
701
+ * Fixing builder scope issues LH #61, LH #74, LH #70
702
+ * Fixed a problem when adding a child could remove the child namespace LH#78
703
+ * Fixed bug with unlinking a node then reparenting it. (GH#22)
704
+ * Fixed failure to catch errors during XSLT parsing (GH#32)
705
+ * Fixed a bug with attribute conditions in CSS selectors (GH#36)
706
+ * Fixed intolerance of HTML attributes without values in Node#before/after/inner_html=. (GH#35)
707
+
708
+
709
+ === 1.2.3 / 2009-03-22
710
+
711
+ * Bugfixes
712
+
713
+ * Fixing bug where a node is passed in to Node#new
714
+ * Namespace should be assigned on DocumentFragment creation. LH #66
715
+ * Nokogiri::XML::NodeSet#dup works GH #10
716
+ * Nokogiri::HTML returns an empty Document when given a blank string GH#11
717
+ * Adding a child will remove duplicate namespace declarations LH #67
718
+ * Builder methods take a hash as a second argument
719
+
720
+
721
+ === 1.2.2 / 2009-03-14
722
+
723
+ * New features
724
+
725
+ * Nokogiri may be used with soap4r. See XSD::XMLParser::Nokogiri
726
+ * Nokogiri::XML::Node#inner_html= to set the inner html for a node
727
+ * Nokogiri builder interface improvements
728
+ * Nokogiri::XML::Node#swap swaps html for current node (LH #50)
729
+
730
+ * Bugfixes
731
+
732
+ * Fixed a tag nesting problem in the Builder API (LH #41)
733
+ * Nokogiri::HTML.fragment will properly handle text only nodes (LH #43)
734
+ * Nokogiri::XML::Node#before will prepend text nodes (LH #44)
735
+ * Nokogiri::XML::Node#after will append text nodes
736
+ * Nokogiri::XML::Node#search automatically registers root namespaces (LH #42)
737
+ * Nokogiri::XML::NodeSet#search automatically registers namespaces
738
+ * Nokogiri::HTML::NamedCharacters delegates to libxml2
739
+ * Nokogiri::XML::Node#[] can take a symbol (LH #48)
740
+ * vasprintf for windows updated. Thanks Geoffroy Couprie!
741
+ * Nokogiri::XML::Node#[]= should not encode entities (LH #55)
742
+ * Namespaces should be copied to reparented nodes (LH #56)
743
+ * Nokogiri uses encoding set on the string for default in Ruby 1.9
744
+ * Document#dup should create a new document of the same type (LH #59)
745
+ * Document should not have a parent method (LH #64)
746
+
747
+
748
+ === 1.2.1 / 2009-02-23
749
+
750
+ * Bugfixes
751
+
752
+ * Fixed a CSS selector space bug
753
+ * Fixed Ruby 1.9 String Encoding (Thanks 角谷さん!)
754
+
755
+
756
+ === 1.2.0 / 2009-02-22
757
+
758
+ * New features
759
+
760
+ * CSS search now supports CSS3 namespace queries
761
+ * Namespaces on the root node are automatically registered
762
+ * CSS queries use the default namespace
763
+ * Nokogiri::XML::Document#encoding get encoding used for this document
764
+ * Nokogiri::XML::Document#url get the document url
765
+ * Nokogiri::XML::Node#add_namespace add a namespace to the node LH#38
766
+ * Nokogiri::XML::Node#each iterate over attribute name, value pairs
767
+ * Nokogiri::XML::Node#keys get all attribute names
768
+ * Nokogiri::XML::Node#line get the line number for a node (Thanks Dirkjan Bussink!)
769
+ * Nokogiri::XML::Node#serialize now takes an optional encoding parameter
770
+ * Nokogiri::XML::Node#to_html, to_xml, and to_xhtml take an optional encoding
771
+ * Nokogiri::XML::Node#to_str
772
+ * Nokogiri::XML::Node#to_xhtml to produce XHTML documents
773
+ * Nokogiri::XML::Node#values get all attribute values
774
+ * Nokogiri::XML::Node#write_to writes the node to an IO object with optional encoding
775
+ * Nokogiri::XML::ProcessingInstrunction.new
776
+ * Nokogiri::XML::SAX::PushParser for all your push parsing needs.
777
+
778
+ * Bugfixes
779
+
780
+ * Fixed Nokogiri::XML::Document#dup
781
+ * Fixed header detection. Thanks rubikitch!
782
+ * Fixed a problem where invalid CSS would cause the parser to hang
783
+
784
+ * Deprecations
785
+
786
+ * Nokogiri::XML::Node.new_from_str will be deprecated in 1.3.0
787
+
788
+ * API Changes
789
+
790
+ * Nokogiri::HTML.fragment now returns an XML::DocumentFragment (LH #32)
791
+
792
+
793
+ === 1.1.1
794
+
795
+ * New features
796
+
797
+ * Added XML::Node#elem?
798
+ * Added XML::Node#attribute_nodes
799
+ * Added XML::Attr
800
+ * XML::Node#delete added.
801
+ * XML::NodeSet#inner_html added.
802
+
803
+ * Bugfixes
804
+
805
+ * Not including an HTML entity for \r for HTML nodes.
806
+ * Removed CSS::SelectorHandler and XML::XPathHandler
807
+ * XML::Node#attributes returns an Attr node for the value.
808
+ * XML::NodeSet implements to_xml
809
+
810
+
811
+ === 1.1.0
812
+
813
+ * New Features
814
+
815
+ * Custom XPath functions are now supported. See Nokogiri::XML::Node#xpath
816
+ * Custom CSS pseudo classes are now supported. See Nokogiri::XML::Node#css
817
+ * Nokogiri::XML::Node#<< will add a child to the current node
818
+
819
+ * Bugfixes
820
+
821
+ * Mutex lock on CSS cache access
822
+ * Fixed build problems with GCC 3.3.5
823
+ * XML::Node#to_xml now takes an indentation argument
824
+ * XML::Node#dup takes an optional depth argument
825
+ * XML::Node#add_previous_sibling returns new sibling node.
826
+
827
+
828
+ === 1.0.7
829
+
830
+ * Bugfixes
831
+
832
+ * Fixed memory leak when using Dike
833
+ * SAX parser now parses IO streams
834
+ * Comment nodes have their own class
835
+ * Nokogiri() should delegate to Nokogiri.parse()
836
+ * Prepending rather than appending to ENV['PATH'] on windows
837
+ * Fixed a bug in complex CSS negation selectors
838
+
839
+
840
+ === 1.0.6
841
+
842
+ * 5 Bugfixes
843
+
844
+ * XPath Parser raises a SyntaxError on parse failure
845
+ * CSS Parser raises a SyntaxError on parse failure
846
+ * filter() and not() hpricot compatibility added
847
+ * CSS searches via Node#search are now always relative
848
+ * CSS to XPath conversion is now cached
849
+
850
+
851
+ === 1.0.5
852
+
853
+ * Bugfixes
854
+
855
+ * Added mailing list and ticket tracking information to the README.txt
856
+ * Sets ENV['PATH'] on windows if it doesn't exist
857
+ * Caching results of NodeSet#[] on Document
858
+
859
+
860
+ === 1.0.4
861
+
862
+ * Bugfixes
863
+
864
+ * Changed memory management from weak refs to document refs
865
+ * Plugged some memory leaks
866
+ * Builder blocks can call methods from surrounding contexts
867
+
868
+
869
+ === 1.0.3
870
+
871
+ * 5 Bugfixes
872
+
873
+ * NodeSet now implements to_ary
874
+ * XML::Document should not implement parent
875
+ * More GC Bugs fixed. (Mike is AWESOME!)
876
+ * Removed RARRAY_LEN for 1.8.5 compatibility. Thanks Shane Hanna.
877
+ * inner_html fixed. (Thanks Yehuda!)
878
+
879
+
880
+ === 1.0.2
881
+
882
+ * 1 Bugfix
883
+
884
+ * extconf.rb should not check for frex and racc
885
+
886
+
887
+ === 1.0.1
888
+
889
+ * 1 Bugfix
890
+
891
+ * Made sure extconf.rb searched libdir and prefix so that ports libxml/ruby
892
+ will link properly. Thanks lucsky!
893
+
894
+
895
+ === 1.0.0 / 2008-07-13
896
+
897
+ * 1 major enhancement
898
+
899
+ * Birthday!