simplenet-client 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1323) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +4 -0
  3. data/Gemfile.lock +41 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +42 -0
  6. data/Rakefile +1 -0
  7. data/lib/simplenet/client.rb +20 -0
  8. data/lib/simplenet/client/anycast.rb +15 -0
  9. data/lib/simplenet/client/anycastip.rb +15 -0
  10. data/lib/simplenet/client/base.rb +79 -0
  11. data/lib/simplenet/client/connection.rb +58 -0
  12. data/lib/simplenet/client/datacenter.rb +15 -0
  13. data/lib/simplenet/client/firewall.rb +40 -0
  14. data/lib/simplenet/client/interface.rb +50 -0
  15. data/lib/simplenet/client/ip.rb +15 -0
  16. data/lib/simplenet/client/policy.rb +37 -0
  17. data/lib/simplenet/client/subnet.rb +15 -0
  18. data/lib/simplenet/client/switch.rb +20 -0
  19. data/lib/simplenet/client/version.rb +5 -0
  20. data/lib/simplenet/client/vlan.rb +20 -0
  21. data/lib/simplenet/client/zone.rb +18 -0
  22. data/lib/simplenet/exception.rb +25 -0
  23. data/simplenet-client.gemspec +26 -0
  24. data/spec/simplenet/client/anycast_spec.rb +44 -0
  25. data/spec/simplenet/client/anycastip_spec.rb +46 -0
  26. data/spec/simplenet/client/connection_spec.rb +49 -0
  27. data/spec/simplenet/client/datacenter_spec.rb +44 -0
  28. data/spec/simplenet/client/firewall_spec.rb +92 -0
  29. data/spec/simplenet/client/interface_spec.rb +135 -0
  30. data/spec/simplenet/client/ip_spec.rb +59 -0
  31. data/spec/simplenet/client/policy_spec.rb +73 -0
  32. data/spec/simplenet/client/subnet_spec.rb +50 -0
  33. data/spec/simplenet/client/switch_spec.rb +46 -0
  34. data/spec/simplenet/client/vlan_spec.rb +46 -0
  35. data/spec/simplenet/client/zone_spec.rb +48 -0
  36. data/spec/spec_helper.rb +22 -0
  37. data/vendor/bundle/ruby/1.9.1/bin/htmldiff +25 -0
  38. data/vendor/bundle/ruby/1.9.1/bin/httparty +23 -0
  39. data/vendor/bundle/ruby/1.9.1/bin/ldiff +25 -0
  40. data/vendor/bundle/ruby/1.9.1/bin/rake +23 -0
  41. data/vendor/bundle/ruby/1.9.1/bin/rspec +23 -0
  42. data/vendor/bundle/ruby/1.9.1/cache/diff-lcs-1.2.5.gem +0 -0
  43. data/vendor/bundle/ruby/1.9.1/cache/httparty-0.13.7.gem +0 -0
  44. data/vendor/bundle/ruby/1.9.1/cache/json-1.8.3.gem +0 -0
  45. data/vendor/bundle/ruby/1.9.1/cache/multi_xml-0.5.5.gem +0 -0
  46. data/vendor/bundle/ruby/1.9.1/cache/rake-10.5.0.gem +0 -0
  47. data/vendor/bundle/ruby/1.9.1/cache/rspec-3.4.0.gem +0 -0
  48. data/vendor/bundle/ruby/1.9.1/cache/rspec-core-3.4.2.gem +0 -0
  49. data/vendor/bundle/ruby/1.9.1/cache/rspec-expectations-3.4.0.gem +0 -0
  50. data/vendor/bundle/ruby/1.9.1/cache/rspec-mocks-3.4.1.gem +0 -0
  51. data/vendor/bundle/ruby/1.9.1/cache/rspec-support-3.4.1.gem +0 -0
  52. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/Contributing.rdoc +64 -0
  53. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/Gemfile +20 -0
  54. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/History.rdoc +152 -0
  55. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/License.rdoc +39 -0
  56. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/Manifest.txt +38 -0
  57. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/README.rdoc +85 -0
  58. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/Rakefile +41 -0
  59. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/autotest/discover.rb +1 -0
  60. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/bin/htmldiff +32 -0
  61. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/bin/ldiff +6 -0
  62. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/docs/COPYING.txt +339 -0
  63. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/docs/artistic.txt +127 -0
  64. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/lib/diff-lcs.rb +3 -0
  65. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/lib/diff/lcs.rb +805 -0
  66. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/lib/diff/lcs/array.rb +7 -0
  67. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/lib/diff/lcs/block.rb +37 -0
  68. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/lib/diff/lcs/callbacks.rb +322 -0
  69. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/lib/diff/lcs/change.rb +177 -0
  70. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/lib/diff/lcs/htmldiff.rb +149 -0
  71. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/lib/diff/lcs/hunk.rb +276 -0
  72. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/lib/diff/lcs/internals.rb +301 -0
  73. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/lib/diff/lcs/ldiff.rb +195 -0
  74. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/lib/diff/lcs/string.rb +5 -0
  75. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/spec/change_spec.rb +65 -0
  76. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/spec/diff_spec.rb +47 -0
  77. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/spec/hunk_spec.rb +72 -0
  78. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/spec/issues_spec.rb +24 -0
  79. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/spec/lcs_spec.rb +54 -0
  80. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/spec/patch_spec.rb +414 -0
  81. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/spec/sdiff_spec.rb +214 -0
  82. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/spec/spec_helper.rb +290 -0
  83. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/spec/traverse_balanced_spec.rb +310 -0
  84. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.5/spec/traverse_sequences_spec.rb +139 -0
  85. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/CONTRIBUTING.md +23 -0
  86. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/Gemfile +19 -0
  87. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/Guardfile +16 -0
  88. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/History +390 -0
  89. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/MIT-LICENSE +20 -0
  90. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/README.md +78 -0
  91. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/Rakefile +10 -0
  92. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/bin/httparty +121 -0
  93. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/cucumber.yml +1 -0
  94. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/README.md +67 -0
  95. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/aaws.rb +32 -0
  96. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/basic.rb +28 -0
  97. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/crack.rb +19 -0
  98. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/custom_parsers.rb +64 -0
  99. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/delicious.rb +37 -0
  100. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/google.rb +16 -0
  101. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/headers_and_user_agents.rb +6 -0
  102. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/logging.rb +36 -0
  103. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/nokogiri_html_parser.rb +19 -0
  104. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/rescue_json.rb +17 -0
  105. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/rubyurl.rb +14 -0
  106. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/stackexchange.rb +24 -0
  107. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/tripit_sign_in.rb +33 -0
  108. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/twitter.rb +31 -0
  109. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/examples/whoismyrep.rb +10 -0
  110. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/features/basic_authentication.feature +20 -0
  111. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/features/command_line.feature +95 -0
  112. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/features/deals_with_http_error_codes.feature +26 -0
  113. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/features/digest_authentication.feature +30 -0
  114. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/features/handles_compressed_responses.feature +27 -0
  115. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/features/handles_multiple_formats.feature +57 -0
  116. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/features/steps/env.rb +27 -0
  117. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/features/steps/httparty_response_steps.rb +52 -0
  118. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/features/steps/httparty_steps.rb +43 -0
  119. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/features/steps/mongrel_helper.rb +127 -0
  120. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/features/steps/remote_service_steps.rb +90 -0
  121. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/features/supports_read_timeout_option.feature +13 -0
  122. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/features/supports_redirection.feature +22 -0
  123. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/features/supports_timeout_option.feature +13 -0
  124. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/httparty.gemspec +28 -0
  125. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/lib/httparty.rb +623 -0
  126. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/lib/httparty/connection_adapter.rb +190 -0
  127. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/lib/httparty/cookie_hash.rb +21 -0
  128. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/lib/httparty/exceptions.rb +29 -0
  129. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/lib/httparty/hash_conversions.rb +49 -0
  130. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/lib/httparty/logger/apache_formatter.rb +22 -0
  131. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/lib/httparty/logger/curl_formatter.rb +48 -0
  132. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/lib/httparty/logger/logger.rb +26 -0
  133. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/lib/httparty/module_inheritable_attributes.rb +56 -0
  134. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/lib/httparty/net_digest_auth.rb +133 -0
  135. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/lib/httparty/parser.rb +143 -0
  136. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/lib/httparty/request.rb +364 -0
  137. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/lib/httparty/response.rb +77 -0
  138. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/lib/httparty/response/headers.rb +31 -0
  139. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/lib/httparty/version.rb +3 -0
  140. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/script/release +42 -0
  141. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/delicious.xml +23 -0
  142. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/empty.xml +0 -0
  143. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/google.html +3 -0
  144. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/ssl/generate.sh +29 -0
  145. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/ssl/generated/1fe462c2.0 +16 -0
  146. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/ssl/generated/bogushost.crt +13 -0
  147. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/ssl/generated/ca.crt +16 -0
  148. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/ssl/generated/ca.key +15 -0
  149. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/ssl/generated/selfsigned.crt +14 -0
  150. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/ssl/generated/server.crt +13 -0
  151. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/ssl/generated/server.key +15 -0
  152. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/ssl/openssl-exts.cnf +9 -0
  153. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/twitter.csv +2 -0
  154. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/twitter.json +1 -0
  155. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/twitter.xml +403 -0
  156. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/fixtures/undefined_method_add_node_for_nil.xml +2 -0
  157. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/httparty/connection_adapter_spec.rb +468 -0
  158. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/httparty/cookie_hash_spec.rb +83 -0
  159. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/httparty/exception_spec.rb +38 -0
  160. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/httparty/hash_conversions_spec.rb +41 -0
  161. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/httparty/logger/apache_formatter_spec.rb +41 -0
  162. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/httparty/logger/curl_formatter_spec.rb +18 -0
  163. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/httparty/logger/logger_spec.rb +38 -0
  164. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/httparty/net_digest_auth_spec.rb +230 -0
  165. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/httparty/parser_spec.rb +173 -0
  166. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/httparty/request_spec.rb +1073 -0
  167. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/httparty/response_spec.rb +241 -0
  168. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/httparty/ssl_spec.rb +74 -0
  169. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/httparty_spec.rb +850 -0
  170. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/spec_helper.rb +59 -0
  171. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/support/ssl_test_helper.rb +47 -0
  172. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/support/ssl_test_server.rb +80 -0
  173. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/spec/support/stub_response.rb +49 -0
  174. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/website/css/common.css +47 -0
  175. data/vendor/bundle/ruby/1.9.1/gems/httparty-0.13.7/website/index.html +73 -0
  176. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/CHANGES +295 -0
  177. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/COPYING +58 -0
  178. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/COPYING-json-jruby +57 -0
  179. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/GPL +340 -0
  180. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/Gemfile +10 -0
  181. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/README-json-jruby.markdown +33 -0
  182. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/README.rdoc +358 -0
  183. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/Rakefile +412 -0
  184. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/TODO +1 -0
  185. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/VERSION +1 -0
  186. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/data/example.json +1 -0
  187. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/data/index.html +38 -0
  188. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/data/prototype.js +4184 -0
  189. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/Makefile +174 -0
  190. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/fbuffer/fbuffer.h +190 -0
  191. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/generator/Makefile +222 -0
  192. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/generator/depend +1 -0
  193. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/generator/extconf.rb +4 -0
  194. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/generator/generator.bundle +0 -0
  195. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/generator/generator.c +1458 -0
  196. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/generator/generator.h +166 -0
  197. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/generator/generator.o +0 -0
  198. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/parser/Makefile +222 -0
  199. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/parser/depend +1 -0
  200. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/parser/extconf.rb +3 -0
  201. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/parser/parser.bundle +0 -0
  202. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/parser/parser.c +2216 -0
  203. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/parser/parser.h +92 -0
  204. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/parser/parser.o +0 -0
  205. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/ext/parser/parser.rl +939 -0
  206. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/ext/json/extconf.rb +3 -0
  207. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/install.rb +23 -0
  208. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/java/src/json/ext/ByteListTranscoder.java +167 -0
  209. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/java/src/json/ext/Generator.java +444 -0
  210. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/java/src/json/ext/GeneratorMethods.java +232 -0
  211. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/java/src/json/ext/GeneratorService.java +43 -0
  212. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/java/src/json/ext/GeneratorState.java +543 -0
  213. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/java/src/json/ext/OptionsReader.java +114 -0
  214. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/java/src/json/ext/Parser.java +2645 -0
  215. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/java/src/json/ext/Parser.rl +969 -0
  216. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/java/src/json/ext/ParserService.java +35 -0
  217. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/java/src/json/ext/RuntimeInfo.java +121 -0
  218. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/java/src/json/ext/StringDecoder.java +167 -0
  219. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/java/src/json/ext/StringEncoder.java +106 -0
  220. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/java/src/json/ext/Utils.java +89 -0
  221. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/json-java.gemspec +23 -0
  222. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/json.gemspec +0 -0
  223. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/json_pure.gemspec +40 -0
  224. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json.rb +62 -0
  225. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/add/bigdecimal.rb +28 -0
  226. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/add/complex.rb +28 -0
  227. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/add/core.rb +11 -0
  228. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/add/date.rb +34 -0
  229. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/add/date_time.rb +50 -0
  230. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/add/exception.rb +31 -0
  231. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/add/ostruct.rb +31 -0
  232. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/add/range.rb +29 -0
  233. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/add/rational.rb +27 -0
  234. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/add/regexp.rb +30 -0
  235. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/add/struct.rb +30 -0
  236. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/add/symbol.rb +25 -0
  237. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/add/time.rb +38 -0
  238. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/common.rb +484 -0
  239. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/ext.rb +21 -0
  240. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/ext/generator.bundle +0 -0
  241. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/ext/parser.bundle +0 -0
  242. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/generic_object.rb +70 -0
  243. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/pure.rb +21 -0
  244. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/pure/generator.rb +522 -0
  245. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/pure/parser.rb +359 -0
  246. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/lib/json/version.rb +8 -0
  247. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail1.json +1 -0
  248. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail10.json +1 -0
  249. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail11.json +1 -0
  250. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail12.json +1 -0
  251. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail13.json +1 -0
  252. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail14.json +1 -0
  253. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail18.json +1 -0
  254. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail19.json +1 -0
  255. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail2.json +1 -0
  256. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail20.json +1 -0
  257. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail21.json +1 -0
  258. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail22.json +1 -0
  259. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail23.json +1 -0
  260. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail24.json +1 -0
  261. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail25.json +1 -0
  262. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail27.json +2 -0
  263. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail28.json +2 -0
  264. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail3.json +1 -0
  265. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail4.json +1 -0
  266. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail5.json +1 -0
  267. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail6.json +1 -0
  268. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail7.json +1 -0
  269. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail8.json +1 -0
  270. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/fail9.json +1 -0
  271. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/pass1.json +56 -0
  272. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/pass15.json +1 -0
  273. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/pass16.json +1 -0
  274. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/pass17.json +1 -0
  275. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/pass2.json +1 -0
  276. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/pass26.json +1 -0
  277. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/fixtures/pass3.json +6 -0
  278. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/setup_variant.rb +11 -0
  279. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/test_json.rb +553 -0
  280. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/test_json_addition.rb +196 -0
  281. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/test_json_encoding.rb +65 -0
  282. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/test_json_fixtures.rb +35 -0
  283. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/test_json_generate.rb +337 -0
  284. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/test_json_generic_object.rb +75 -0
  285. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/test_json_string_matching.rb +39 -0
  286. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tests/test_json_unicode.rb +72 -0
  287. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tools/fuzz.rb +139 -0
  288. data/vendor/bundle/ruby/1.9.1/gems/json-1.8.3/tools/server.rb +62 -0
  289. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/CHANGELOG.md +93 -0
  290. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/CONTRIBUTING.md +49 -0
  291. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/LICENSE.md +20 -0
  292. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/README.md +97 -0
  293. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/Rakefile +21 -0
  294. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/lib/multi_xml.rb +296 -0
  295. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/lib/multi_xml/parsers/libxml.rb +30 -0
  296. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/lib/multi_xml/parsers/libxml2_parser.rb +74 -0
  297. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/lib/multi_xml/parsers/nokogiri.rb +32 -0
  298. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/lib/multi_xml/parsers/ox.rb +97 -0
  299. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/lib/multi_xml/parsers/rexml.rb +113 -0
  300. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/lib/multi_xml/version.rb +3 -0
  301. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/multi_xml.gemspec +24 -0
  302. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/spec/helper.rb +17 -0
  303. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/spec/multi_xml_spec.rb +43 -0
  304. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/spec/parser_shared_example.rb +694 -0
  305. data/vendor/bundle/ruby/1.9.1/gems/multi_xml-0.5.5/spec/speed.rb +63 -0
  306. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/CONTRIBUTING.rdoc +38 -0
  307. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/History.rdoc +659 -0
  308. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/MIT-LICENSE +21 -0
  309. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/Manifest.txt +166 -0
  310. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/README.rdoc +139 -0
  311. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/Rakefile +81 -0
  312. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/bin/rake +33 -0
  313. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/command_line_usage.rdoc +158 -0
  314. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/example/Rakefile1 +38 -0
  315. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/example/Rakefile2 +35 -0
  316. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/example/a.c +6 -0
  317. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/example/b.c +6 -0
  318. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/example/main.c +11 -0
  319. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/glossary.rdoc +42 -0
  320. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/jamis.rb +591 -0
  321. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/proto_rake.rdoc +127 -0
  322. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/rake.1 +141 -0
  323. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/rakefile.rdoc +624 -0
  324. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/rational.rdoc +151 -0
  325. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.4.14.rdoc +23 -0
  326. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.4.15.rdoc +35 -0
  327. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.5.0.rdoc +53 -0
  328. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.5.3.rdoc +78 -0
  329. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.5.4.rdoc +46 -0
  330. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.6.0.rdoc +141 -0
  331. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.7.0.rdoc +119 -0
  332. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.7.1.rdoc +59 -0
  333. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.7.2.rdoc +121 -0
  334. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.7.3.rdoc +47 -0
  335. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.8.0.rdoc +114 -0
  336. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.8.2.rdoc +165 -0
  337. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.8.3.rdoc +112 -0
  338. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.8.4.rdoc +147 -0
  339. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.8.5.rdoc +53 -0
  340. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.8.6.rdoc +37 -0
  341. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.8.7.rdoc +55 -0
  342. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.9.0.rdoc +112 -0
  343. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.9.1.rdoc +52 -0
  344. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.9.2.2.rdoc +55 -0
  345. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.9.2.rdoc +49 -0
  346. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.9.3.rdoc +102 -0
  347. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.9.4.rdoc +60 -0
  348. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.9.5.rdoc +55 -0
  349. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-0.9.6.rdoc +64 -0
  350. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-10.0.0.rdoc +178 -0
  351. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-10.0.1.rdoc +58 -0
  352. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-10.0.2.rdoc +53 -0
  353. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-10.0.3.rdoc +191 -0
  354. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/doc/release_notes/rake-10.1.0.rdoc +61 -0
  355. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake.rb +79 -0
  356. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/alt_system.rb +110 -0
  357. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/application.rb +790 -0
  358. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/backtrace.rb +23 -0
  359. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/clean.rb +76 -0
  360. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/cloneable.rb +16 -0
  361. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/contrib/compositepublisher.rb +21 -0
  362. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/contrib/ftptools.rb +137 -0
  363. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/contrib/publisher.rb +81 -0
  364. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/contrib/rubyforgepublisher.rb +18 -0
  365. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/contrib/sshpublisher.rb +61 -0
  366. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/contrib/sys.rb +4 -0
  367. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/cpu_counter.rb +125 -0
  368. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/default_loader.rb +14 -0
  369. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/dsl_definition.rb +201 -0
  370. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/early_time.rb +21 -0
  371. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/ext/core.rb +25 -0
  372. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/ext/module.rb +2 -0
  373. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/ext/pathname.rb +25 -0
  374. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/ext/string.rb +175 -0
  375. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/ext/time.rb +18 -0
  376. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/file_creation_task.rb +24 -0
  377. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/file_list.rb +428 -0
  378. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/file_task.rb +46 -0
  379. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/file_utils.rb +128 -0
  380. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/file_utils_ext.rb +144 -0
  381. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/gempackagetask.rb +4 -0
  382. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/invocation_chain.rb +56 -0
  383. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/invocation_exception_mixin.rb +16 -0
  384. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/late_time.rb +17 -0
  385. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/linked_list.rb +103 -0
  386. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/loaders/makefile.rb +53 -0
  387. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/multi_task.rb +13 -0
  388. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/name_space.rb +38 -0
  389. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/packagetask.rb +199 -0
  390. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/pathmap.rb +3 -0
  391. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/phony.rb +15 -0
  392. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/private_reader.rb +20 -0
  393. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/promise.rb +99 -0
  394. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/pseudo_status.rb +29 -0
  395. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/rake_module.rb +38 -0
  396. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/rake_test_loader.rb +22 -0
  397. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/rdoctask.rb +4 -0
  398. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/ruby182_test_unit_fix.rb +29 -0
  399. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/rule_recursion_overflow_error.rb +20 -0
  400. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/runtest.rb +27 -0
  401. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/scope.rb +42 -0
  402. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/task.rb +383 -0
  403. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/task_argument_error.rb +7 -0
  404. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/task_arguments.rb +98 -0
  405. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/task_manager.rb +307 -0
  406. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/tasklib.rb +24 -0
  407. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/testtask.rb +213 -0
  408. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/thread_history_display.rb +48 -0
  409. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/thread_pool.rb +164 -0
  410. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/trace_output.rb +22 -0
  411. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/version.rb +7 -0
  412. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/lib/rake/win32.rb +56 -0
  413. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/rakelib/publish.rake +20 -0
  414. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/rakelib/test_times.rake +25 -0
  415. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/file_creation.rb +34 -0
  416. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/helper.rb +129 -0
  417. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/support/rakefile_definitions.rb +478 -0
  418. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/support/ruby_runner.rb +34 -0
  419. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_private_reader.rb +42 -0
  420. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake.rb +40 -0
  421. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_application.rb +643 -0
  422. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_application_options.rb +468 -0
  423. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_backtrace.rb +119 -0
  424. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_clean.rb +61 -0
  425. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_cpu_counter.rb +68 -0
  426. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_definitions.rb +84 -0
  427. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_directory_task.rb +76 -0
  428. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_dsl.rb +40 -0
  429. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_early_time.rb +31 -0
  430. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_extension.rb +59 -0
  431. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_file_creation_task.rb +56 -0
  432. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_file_list.rb +670 -0
  433. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_file_list_path_map.rb +8 -0
  434. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_file_task.rb +197 -0
  435. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_file_utils.rb +314 -0
  436. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_ftp_file.rb +74 -0
  437. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_functional.rb +482 -0
  438. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_invocation_chain.rb +64 -0
  439. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_late_time.rb +18 -0
  440. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_linked_list.rb +84 -0
  441. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_makefile_loader.rb +46 -0
  442. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_multi_task.rb +64 -0
  443. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_name_space.rb +57 -0
  444. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_package_task.rb +79 -0
  445. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_path_map.rb +168 -0
  446. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_path_map_explode.rb +34 -0
  447. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_path_map_partial.rb +18 -0
  448. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_pathname_extensions.rb +15 -0
  449. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_pseudo_status.rb +21 -0
  450. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_rake_test_loader.rb +20 -0
  451. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_reduce_compat.rb +26 -0
  452. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_require.rb +40 -0
  453. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_rules.rb +388 -0
  454. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_scope.rb +44 -0
  455. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_task.rb +393 -0
  456. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_task_argument_parsing.rb +119 -0
  457. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_task_arguments.rb +127 -0
  458. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_task_lib.rb +9 -0
  459. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_task_manager.rb +178 -0
  460. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_task_manager_argument_resolution.rb +19 -0
  461. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_task_with_arguments.rb +172 -0
  462. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_test_task.rb +146 -0
  463. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_thread_pool.rb +145 -0
  464. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_top_level_functions.rb +71 -0
  465. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_rake_win32.rb +72 -0
  466. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_thread_history_display.rb +101 -0
  467. data/vendor/bundle/ruby/1.9.1/gems/rake-10.5.0/test/test_trace_output.rb +52 -0
  468. data/vendor/bundle/ruby/1.9.1/gems/rspec-3.4.0/LICENSE.md +27 -0
  469. data/vendor/bundle/ruby/1.9.1/gems/rspec-3.4.0/README.md +39 -0
  470. data/vendor/bundle/ruby/1.9.1/gems/rspec-3.4.0/lib/rspec.rb +3 -0
  471. data/vendor/bundle/ruby/1.9.1/gems/rspec-3.4.0/lib/rspec/version.rb +5 -0
  472. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/Changelog.md +1947 -0
  473. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/LICENSE.md +26 -0
  474. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/README.md +384 -0
  475. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/exe/rspec +4 -0
  476. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/autorun.rb +3 -0
  477. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core.rb +181 -0
  478. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/backtrace_formatter.rb +65 -0
  479. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/bisect/coordinator.rb +66 -0
  480. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/bisect/example_minimizer.rb +169 -0
  481. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/bisect/runner.rb +139 -0
  482. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/bisect/server.rb +61 -0
  483. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/configuration.rb +1869 -0
  484. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/configuration_options.rb +191 -0
  485. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/drb.rb +111 -0
  486. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/dsl.rb +96 -0
  487. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/example.rb +631 -0
  488. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/example_group.rb +816 -0
  489. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/example_status_persister.rb +235 -0
  490. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/filter_manager.rb +231 -0
  491. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/flat_map.rb +20 -0
  492. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters.rb +255 -0
  493. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/base_formatter.rb +70 -0
  494. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/base_text_formatter.rb +77 -0
  495. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/bisect_formatter.rb +68 -0
  496. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/bisect_progress_formatter.rb +144 -0
  497. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/console_codes.rb +65 -0
  498. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
  499. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/documentation_formatter.rb +70 -0
  500. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/exception_presenter.rb +480 -0
  501. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
  502. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/helpers.rb +109 -0
  503. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/html_formatter.rb +151 -0
  504. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/html_printer.rb +414 -0
  505. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/html_snippet_extractor.rb +116 -0
  506. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/json_formatter.rb +96 -0
  507. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/profile_formatter.rb +68 -0
  508. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/progress_formatter.rb +28 -0
  509. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/protocol.rb +181 -0
  510. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/formatters/snippet_extractor.rb +143 -0
  511. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/hooks.rb +638 -0
  512. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/memoized_helpers.rb +532 -0
  513. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/metadata.rb +493 -0
  514. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/metadata_filter.rb +240 -0
  515. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
  516. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
  517. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
  518. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/mocking_adapters/null.rb +14 -0
  519. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/mocking_adapters/rr.rb +31 -0
  520. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
  521. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/notifications.rb +499 -0
  522. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/option_parser.rb +319 -0
  523. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/ordering.rb +158 -0
  524. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/pending.rb +165 -0
  525. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/profiler.rb +32 -0
  526. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/project_initializer.rb +48 -0
  527. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/project_initializer/spec/spec_helper.rb +96 -0
  528. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/rake_task.rb +167 -0
  529. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/reporter.rb +236 -0
  530. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/ruby_project.rb +53 -0
  531. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/runner.rb +183 -0
  532. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/sandbox.rb +37 -0
  533. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/set.rb +49 -0
  534. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/shared_context.rb +55 -0
  535. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/shared_example_group.rb +212 -0
  536. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/shell_escape.rb +49 -0
  537. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/source.rb +76 -0
  538. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/source/location.rb +13 -0
  539. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/source/node.rb +93 -0
  540. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/source/syntax_highlighter.rb +71 -0
  541. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/source/token.rb +43 -0
  542. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
  543. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/version.rb +9 -0
  544. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/warnings.rb +40 -0
  545. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-3.4.2/lib/rspec/core/world.rb +197 -0
  546. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/Changelog.md +979 -0
  547. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/LICENSE.md +25 -0
  548. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/README.md +303 -0
  549. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/expectations.rb +81 -0
  550. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/expectations/configuration.rb +164 -0
  551. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/expectations/expectation_target.rb +113 -0
  552. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/expectations/fail_with.rb +31 -0
  553. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/expectations/failure_aggregator.rb +194 -0
  554. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/expectations/handler.rb +170 -0
  555. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/expectations/minitest_integration.rb +31 -0
  556. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/expectations/syntax.rb +132 -0
  557. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/expectations/version.rb +8 -0
  558. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers.rb +1037 -0
  559. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/aliased_matcher.rb +116 -0
  560. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in.rb +52 -0
  561. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/all.rb +85 -0
  562. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/base_matcher.rb +181 -0
  563. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/be.rb +285 -0
  564. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/be_between.rb +77 -0
  565. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/be_instance_of.rb +22 -0
  566. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/be_kind_of.rb +16 -0
  567. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/be_within.rb +72 -0
  568. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/change.rb +354 -0
  569. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/compound.rb +272 -0
  570. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/contain_exactly.rb +286 -0
  571. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/cover.rb +24 -0
  572. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/eq.rb +40 -0
  573. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/eql.rb +34 -0
  574. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/equal.rb +81 -0
  575. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/exist.rb +86 -0
  576. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/has.rb +103 -0
  577. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
  578. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/include.rb +130 -0
  579. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/match.rb +106 -0
  580. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/operators.rb +128 -0
  581. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/output.rb +200 -0
  582. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/raise_error.rb +228 -0
  583. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/respond_to.rb +90 -0
  584. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/satisfy.rb +37 -0
  585. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
  586. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
  587. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/yield.rb +419 -0
  588. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/composable.rb +185 -0
  589. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/dsl.rb +453 -0
  590. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/english_phrasing.rb +42 -0
  591. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +73 -0
  592. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/fail_matchers.rb +42 -0
  593. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/generated_descriptions.rb +42 -0
  594. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/matcher_delegator.rb +35 -0
  595. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-3.4.0/lib/rspec/matchers/matcher_protocol.rb +99 -0
  596. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/Changelog.md +991 -0
  597. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/LICENSE.md +25 -0
  598. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/README.md +445 -0
  599. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks.rb +126 -0
  600. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance.rb +11 -0
  601. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/chain.rb +110 -0
  602. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
  603. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/expect_chain_chain.rb +35 -0
  604. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/expectation_chain.rb +48 -0
  605. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
  606. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/proxy.rb +116 -0
  607. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/recorder.rb +268 -0
  608. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/stub_chain.rb +46 -0
  609. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/stub_chain_chain.rb +27 -0
  610. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/argument_list_matcher.rb +100 -0
  611. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/argument_matchers.rb +320 -0
  612. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/configuration.rb +205 -0
  613. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/error_generator.rb +367 -0
  614. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/example_methods.rb +422 -0
  615. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/instance_method_stasher.rb +135 -0
  616. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/marshal_extension.rb +41 -0
  617. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
  618. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/matchers/have_received.rb +128 -0
  619. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/matchers/receive.rb +130 -0
  620. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/matchers/receive_message_chain.rb +80 -0
  621. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/matchers/receive_messages.rb +75 -0
  622. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/message_chain.rb +87 -0
  623. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/message_expectation.rb +717 -0
  624. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/method_double.rb +287 -0
  625. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/method_reference.rb +192 -0
  626. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/mutate_const.rb +335 -0
  627. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/object_reference.rb +149 -0
  628. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/order_group.rb +81 -0
  629. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/proxy.rb +484 -0
  630. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/space.rb +238 -0
  631. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/standalone.rb +3 -0
  632. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/syntax.rb +325 -0
  633. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/targets.rb +97 -0
  634. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/test_double.rb +170 -0
  635. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/verifying_double.rb +129 -0
  636. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/verifying_message_expectation.rb +54 -0
  637. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/verifying_proxy.rb +213 -0
  638. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-3.4.1/lib/rspec/mocks/version.rb +9 -0
  639. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/Changelog.md +151 -0
  640. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/LICENSE.md +23 -0
  641. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/README.md +40 -0
  642. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support.rb +139 -0
  643. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/caller_filter.rb +83 -0
  644. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/comparable_version.rb +46 -0
  645. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/differ.rb +215 -0
  646. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/directory_maker.rb +63 -0
  647. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/encoded_string.rb +155 -0
  648. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/fuzzy_matcher.rb +48 -0
  649. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/hunk_generator.rb +47 -0
  650. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/matcher_definition.rb +42 -0
  651. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/method_signature_verifier.rb +290 -0
  652. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/mutex.rb +73 -0
  653. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/object_formatter.rb +108 -0
  654. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/recursive_const_methods.rb +76 -0
  655. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/reentrant_mutex.rb +53 -0
  656. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/ruby_features.rb +149 -0
  657. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/spec.rb +81 -0
  658. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
  659. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/spec/formatting_support.rb +9 -0
  660. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/spec/in_sub_process.rb +52 -0
  661. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/spec/library_wide_checks.rb +152 -0
  662. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/spec/shell_out.rb +71 -0
  663. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/spec/stderr_splitter.rb +63 -0
  664. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/spec/string_matcher.rb +46 -0
  665. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/spec/with_isolated_directory.rb +9 -0
  666. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
  667. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/version.rb +7 -0
  668. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/version_checker.rb +53 -0
  669. data/vendor/bundle/ruby/1.9.1/gems/rspec-support-3.4.1/lib/rspec/support/warnings.rb +39 -0
  670. data/vendor/bundle/ruby/1.9.1/specifications/diff-lcs-1.2.5.gemspec +65 -0
  671. data/vendor/bundle/ruby/1.9.1/specifications/httparty-0.13.7.gemspec +36 -0
  672. data/vendor/bundle/ruby/1.9.1/specifications/json-1.8.3.gemspec +36 -0
  673. data/vendor/bundle/ruby/1.9.1/specifications/multi_xml-0.5.5.gemspec +30 -0
  674. data/vendor/bundle/ruby/1.9.1/specifications/rake-10.5.0.gemspec +40 -0
  675. data/vendor/bundle/ruby/1.9.1/specifications/rspec-3.4.0.gemspec +39 -0
  676. data/vendor/bundle/ruby/1.9.1/specifications/rspec-core-3.4.2.gemspec +62 -0
  677. data/vendor/bundle/ruby/1.9.1/specifications/rspec-expectations-3.4.0.gemspec +47 -0
  678. data/vendor/bundle/ruby/1.9.1/specifications/rspec-mocks-3.4.1.gemspec +47 -0
  679. data/vendor/bundle/ruby/1.9.1/specifications/rspec-support-3.4.1.gemspec +38 -0
  680. data/vendor/bundle/ruby/2.0.0/bin/htmldiff +25 -0
  681. data/vendor/bundle/ruby/2.0.0/bin/httparty +23 -0
  682. data/vendor/bundle/ruby/2.0.0/bin/ldiff +25 -0
  683. data/vendor/bundle/ruby/2.0.0/bin/rake +23 -0
  684. data/vendor/bundle/ruby/2.0.0/bin/rspec +23 -0
  685. data/vendor/bundle/ruby/2.0.0/cache/diff-lcs-1.2.5.gem +0 -0
  686. data/vendor/bundle/ruby/2.0.0/cache/httparty-0.13.7.gem +0 -0
  687. data/vendor/bundle/ruby/2.0.0/cache/json-1.8.3.gem +0 -0
  688. data/vendor/bundle/ruby/2.0.0/cache/multi_xml-0.5.5.gem +0 -0
  689. data/vendor/bundle/ruby/2.0.0/cache/rake-10.5.0.gem +0 -0
  690. data/vendor/bundle/ruby/2.0.0/cache/rspec-3.4.0.gem +0 -0
  691. data/vendor/bundle/ruby/2.0.0/cache/rspec-core-3.4.2.gem +0 -0
  692. data/vendor/bundle/ruby/2.0.0/cache/rspec-expectations-3.4.0.gem +0 -0
  693. data/vendor/bundle/ruby/2.0.0/cache/rspec-mocks-3.4.1.gem +0 -0
  694. data/vendor/bundle/ruby/2.0.0/cache/rspec-support-3.4.1.gem +0 -0
  695. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Contributing.rdoc +64 -0
  696. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Gemfile +20 -0
  697. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/History.rdoc +152 -0
  698. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/License.rdoc +39 -0
  699. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Manifest.txt +38 -0
  700. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/README.rdoc +85 -0
  701. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Rakefile +41 -0
  702. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/autotest/discover.rb +1 -0
  703. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/bin/htmldiff +32 -0
  704. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/bin/ldiff +6 -0
  705. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/docs/COPYING.txt +339 -0
  706. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/docs/artistic.txt +127 -0
  707. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff-lcs.rb +3 -0
  708. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs.rb +805 -0
  709. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/array.rb +7 -0
  710. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/block.rb +37 -0
  711. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/callbacks.rb +322 -0
  712. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/change.rb +177 -0
  713. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/htmldiff.rb +149 -0
  714. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/hunk.rb +276 -0
  715. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/internals.rb +301 -0
  716. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/ldiff.rb +195 -0
  717. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/string.rb +5 -0
  718. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/change_spec.rb +65 -0
  719. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb +47 -0
  720. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/hunk_spec.rb +72 -0
  721. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/issues_spec.rb +24 -0
  722. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/lcs_spec.rb +54 -0
  723. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/patch_spec.rb +414 -0
  724. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/sdiff_spec.rb +214 -0
  725. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/spec_helper.rb +290 -0
  726. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/traverse_balanced_spec.rb +310 -0
  727. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/traverse_sequences_spec.rb +139 -0
  728. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/CONTRIBUTING.md +23 -0
  729. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/Gemfile +19 -0
  730. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/Guardfile +16 -0
  731. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/History +390 -0
  732. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/MIT-LICENSE +20 -0
  733. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/README.md +78 -0
  734. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/Rakefile +10 -0
  735. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/bin/httparty +121 -0
  736. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/cucumber.yml +1 -0
  737. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/README.md +67 -0
  738. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/aaws.rb +32 -0
  739. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/basic.rb +28 -0
  740. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/crack.rb +19 -0
  741. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/custom_parsers.rb +64 -0
  742. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/delicious.rb +37 -0
  743. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/google.rb +16 -0
  744. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/headers_and_user_agents.rb +6 -0
  745. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/logging.rb +36 -0
  746. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/nokogiri_html_parser.rb +19 -0
  747. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/rescue_json.rb +17 -0
  748. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/rubyurl.rb +14 -0
  749. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/stackexchange.rb +24 -0
  750. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/tripit_sign_in.rb +33 -0
  751. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/twitter.rb +31 -0
  752. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/examples/whoismyrep.rb +10 -0
  753. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/features/basic_authentication.feature +20 -0
  754. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/features/command_line.feature +95 -0
  755. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/features/deals_with_http_error_codes.feature +26 -0
  756. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/features/digest_authentication.feature +30 -0
  757. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/features/handles_compressed_responses.feature +27 -0
  758. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/features/handles_multiple_formats.feature +57 -0
  759. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/features/steps/env.rb +27 -0
  760. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/features/steps/httparty_response_steps.rb +52 -0
  761. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/features/steps/httparty_steps.rb +43 -0
  762. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/features/steps/mongrel_helper.rb +127 -0
  763. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/features/steps/remote_service_steps.rb +90 -0
  764. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/features/supports_read_timeout_option.feature +13 -0
  765. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/features/supports_redirection.feature +22 -0
  766. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/features/supports_timeout_option.feature +13 -0
  767. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/httparty.gemspec +28 -0
  768. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/lib/httparty.rb +623 -0
  769. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/lib/httparty/connection_adapter.rb +190 -0
  770. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/lib/httparty/cookie_hash.rb +21 -0
  771. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/lib/httparty/exceptions.rb +29 -0
  772. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/lib/httparty/hash_conversions.rb +49 -0
  773. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/lib/httparty/logger/apache_formatter.rb +22 -0
  774. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/lib/httparty/logger/curl_formatter.rb +48 -0
  775. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/lib/httparty/logger/logger.rb +26 -0
  776. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/lib/httparty/module_inheritable_attributes.rb +56 -0
  777. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/lib/httparty/net_digest_auth.rb +133 -0
  778. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/lib/httparty/parser.rb +143 -0
  779. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/lib/httparty/request.rb +364 -0
  780. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/lib/httparty/response.rb +77 -0
  781. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/lib/httparty/response/headers.rb +31 -0
  782. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/lib/httparty/version.rb +3 -0
  783. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/script/release +42 -0
  784. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/delicious.xml +23 -0
  785. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/empty.xml +0 -0
  786. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/google.html +3 -0
  787. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/ssl/generate.sh +29 -0
  788. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/ssl/generated/1fe462c2.0 +16 -0
  789. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/ssl/generated/bogushost.crt +13 -0
  790. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/ssl/generated/ca.crt +16 -0
  791. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/ssl/generated/ca.key +15 -0
  792. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/ssl/generated/selfsigned.crt +14 -0
  793. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/ssl/generated/server.crt +13 -0
  794. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/ssl/generated/server.key +15 -0
  795. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/ssl/openssl-exts.cnf +9 -0
  796. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/twitter.csv +2 -0
  797. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/twitter.json +1 -0
  798. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/twitter.xml +403 -0
  799. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/fixtures/undefined_method_add_node_for_nil.xml +2 -0
  800. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/httparty/connection_adapter_spec.rb +468 -0
  801. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/httparty/cookie_hash_spec.rb +83 -0
  802. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/httparty/exception_spec.rb +38 -0
  803. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/httparty/hash_conversions_spec.rb +41 -0
  804. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/httparty/logger/apache_formatter_spec.rb +41 -0
  805. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/httparty/logger/curl_formatter_spec.rb +18 -0
  806. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/httparty/logger/logger_spec.rb +38 -0
  807. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/httparty/net_digest_auth_spec.rb +230 -0
  808. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/httparty/parser_spec.rb +173 -0
  809. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/httparty/request_spec.rb +1073 -0
  810. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/httparty/response_spec.rb +241 -0
  811. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/httparty/ssl_spec.rb +74 -0
  812. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/httparty_spec.rb +850 -0
  813. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/spec_helper.rb +59 -0
  814. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/support/ssl_test_helper.rb +47 -0
  815. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/support/ssl_test_server.rb +80 -0
  816. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/spec/support/stub_response.rb +49 -0
  817. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/website/css/common.css +47 -0
  818. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.13.7/website/index.html +73 -0
  819. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/CHANGES +295 -0
  820. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/COPYING +58 -0
  821. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/COPYING-json-jruby +57 -0
  822. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/GPL +340 -0
  823. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/Gemfile +10 -0
  824. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/README-json-jruby.markdown +33 -0
  825. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/README.rdoc +358 -0
  826. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/Rakefile +412 -0
  827. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/TODO +1 -0
  828. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/VERSION +1 -0
  829. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/data/example.json +1 -0
  830. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/data/index.html +38 -0
  831. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/data/prototype.js +4184 -0
  832. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/Makefile +193 -0
  833. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/fbuffer/fbuffer.h +190 -0
  834. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/generator/Makefile +239 -0
  835. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/generator/depend +1 -0
  836. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/generator/extconf.rb +4 -0
  837. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/generator/generator.bundle +0 -0
  838. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/generator/generator.c +1458 -0
  839. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/generator/generator.h +166 -0
  840. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/generator/generator.o +0 -0
  841. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/parser/Makefile +239 -0
  842. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/parser/depend +1 -0
  843. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/parser/extconf.rb +3 -0
  844. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/parser/parser.bundle +0 -0
  845. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/parser/parser.c +2216 -0
  846. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/parser/parser.h +92 -0
  847. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/parser/parser.o +0 -0
  848. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/parser/parser.rl +939 -0
  849. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/extconf.rb +3 -0
  850. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/install.rb +23 -0
  851. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/ByteListTranscoder.java +167 -0
  852. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/Generator.java +444 -0
  853. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/GeneratorMethods.java +232 -0
  854. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/GeneratorService.java +43 -0
  855. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/GeneratorState.java +543 -0
  856. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/OptionsReader.java +114 -0
  857. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/Parser.java +2645 -0
  858. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/Parser.rl +969 -0
  859. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/ParserService.java +35 -0
  860. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/RuntimeInfo.java +121 -0
  861. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/StringDecoder.java +167 -0
  862. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/StringEncoder.java +106 -0
  863. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/Utils.java +89 -0
  864. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/json-java.gemspec +23 -0
  865. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/json.gemspec +0 -0
  866. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/json_pure.gemspec +40 -0
  867. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json.rb +62 -0
  868. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/bigdecimal.rb +28 -0
  869. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/complex.rb +28 -0
  870. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/core.rb +11 -0
  871. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/date.rb +34 -0
  872. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/date_time.rb +50 -0
  873. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/exception.rb +31 -0
  874. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/ostruct.rb +31 -0
  875. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/range.rb +29 -0
  876. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/rational.rb +27 -0
  877. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/regexp.rb +30 -0
  878. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/struct.rb +30 -0
  879. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/symbol.rb +25 -0
  880. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/time.rb +38 -0
  881. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/common.rb +484 -0
  882. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/ext.rb +21 -0
  883. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/ext/generator.bundle +0 -0
  884. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/ext/parser.bundle +0 -0
  885. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/generic_object.rb +70 -0
  886. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/pure.rb +21 -0
  887. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/pure/generator.rb +522 -0
  888. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/pure/parser.rb +359 -0
  889. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/version.rb +8 -0
  890. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail1.json +1 -0
  891. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail10.json +1 -0
  892. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail11.json +1 -0
  893. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail12.json +1 -0
  894. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail13.json +1 -0
  895. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail14.json +1 -0
  896. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail18.json +1 -0
  897. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail19.json +1 -0
  898. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail2.json +1 -0
  899. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail20.json +1 -0
  900. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail21.json +1 -0
  901. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail22.json +1 -0
  902. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail23.json +1 -0
  903. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail24.json +1 -0
  904. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail25.json +1 -0
  905. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail27.json +2 -0
  906. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail28.json +2 -0
  907. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail3.json +1 -0
  908. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail4.json +1 -0
  909. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail5.json +1 -0
  910. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail6.json +1 -0
  911. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail7.json +1 -0
  912. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail8.json +1 -0
  913. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail9.json +1 -0
  914. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/pass1.json +56 -0
  915. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/pass15.json +1 -0
  916. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/pass16.json +1 -0
  917. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/pass17.json +1 -0
  918. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/pass2.json +1 -0
  919. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/pass26.json +1 -0
  920. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/pass3.json +6 -0
  921. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/setup_variant.rb +11 -0
  922. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json.rb +553 -0
  923. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json_addition.rb +196 -0
  924. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json_encoding.rb +65 -0
  925. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json_fixtures.rb +35 -0
  926. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json_generate.rb +337 -0
  927. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json_generic_object.rb +75 -0
  928. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json_string_matching.rb +39 -0
  929. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json_unicode.rb +72 -0
  930. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tools/fuzz.rb +139 -0
  931. data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tools/server.rb +62 -0
  932. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/CHANGELOG.md +93 -0
  933. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/CONTRIBUTING.md +49 -0
  934. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/LICENSE.md +20 -0
  935. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/README.md +97 -0
  936. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/Rakefile +21 -0
  937. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/lib/multi_xml.rb +296 -0
  938. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/lib/multi_xml/parsers/libxml.rb +30 -0
  939. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/lib/multi_xml/parsers/libxml2_parser.rb +74 -0
  940. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/lib/multi_xml/parsers/nokogiri.rb +32 -0
  941. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/lib/multi_xml/parsers/ox.rb +97 -0
  942. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/lib/multi_xml/parsers/rexml.rb +113 -0
  943. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/lib/multi_xml/version.rb +3 -0
  944. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/multi_xml.gemspec +24 -0
  945. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/spec/helper.rb +17 -0
  946. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/spec/multi_xml_spec.rb +43 -0
  947. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/spec/parser_shared_example.rb +694 -0
  948. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/spec/speed.rb +63 -0
  949. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/CONTRIBUTING.rdoc +38 -0
  950. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/History.rdoc +659 -0
  951. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/MIT-LICENSE +21 -0
  952. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/Manifest.txt +166 -0
  953. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/README.rdoc +139 -0
  954. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/Rakefile +81 -0
  955. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/bin/rake +33 -0
  956. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/command_line_usage.rdoc +158 -0
  957. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/example/Rakefile1 +38 -0
  958. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/example/Rakefile2 +35 -0
  959. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/example/a.c +6 -0
  960. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/example/b.c +6 -0
  961. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/example/main.c +11 -0
  962. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/glossary.rdoc +42 -0
  963. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/jamis.rb +591 -0
  964. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/proto_rake.rdoc +127 -0
  965. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/rake.1 +141 -0
  966. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/rakefile.rdoc +624 -0
  967. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/rational.rdoc +151 -0
  968. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.4.14.rdoc +23 -0
  969. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.4.15.rdoc +35 -0
  970. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.5.0.rdoc +53 -0
  971. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.5.3.rdoc +78 -0
  972. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.5.4.rdoc +46 -0
  973. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.6.0.rdoc +141 -0
  974. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.7.0.rdoc +119 -0
  975. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.7.1.rdoc +59 -0
  976. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.7.2.rdoc +121 -0
  977. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.7.3.rdoc +47 -0
  978. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.8.0.rdoc +114 -0
  979. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.8.2.rdoc +165 -0
  980. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.8.3.rdoc +112 -0
  981. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.8.4.rdoc +147 -0
  982. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.8.5.rdoc +53 -0
  983. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.8.6.rdoc +37 -0
  984. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.8.7.rdoc +55 -0
  985. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.0.rdoc +112 -0
  986. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.1.rdoc +52 -0
  987. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.2.2.rdoc +55 -0
  988. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.2.rdoc +49 -0
  989. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.3.rdoc +102 -0
  990. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.4.rdoc +60 -0
  991. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.5.rdoc +55 -0
  992. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-0.9.6.rdoc +64 -0
  993. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-10.0.0.rdoc +178 -0
  994. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-10.0.1.rdoc +58 -0
  995. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-10.0.2.rdoc +53 -0
  996. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-10.0.3.rdoc +191 -0
  997. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/doc/release_notes/rake-10.1.0.rdoc +61 -0
  998. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake.rb +79 -0
  999. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/alt_system.rb +110 -0
  1000. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/application.rb +790 -0
  1001. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/backtrace.rb +23 -0
  1002. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/clean.rb +76 -0
  1003. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/cloneable.rb +16 -0
  1004. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/contrib/compositepublisher.rb +21 -0
  1005. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/contrib/ftptools.rb +137 -0
  1006. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/contrib/publisher.rb +81 -0
  1007. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/contrib/rubyforgepublisher.rb +18 -0
  1008. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/contrib/sshpublisher.rb +61 -0
  1009. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/contrib/sys.rb +4 -0
  1010. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/cpu_counter.rb +125 -0
  1011. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/default_loader.rb +14 -0
  1012. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/dsl_definition.rb +201 -0
  1013. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/early_time.rb +21 -0
  1014. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/ext/core.rb +25 -0
  1015. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/ext/module.rb +2 -0
  1016. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/ext/pathname.rb +25 -0
  1017. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/ext/string.rb +175 -0
  1018. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/ext/time.rb +18 -0
  1019. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/file_creation_task.rb +24 -0
  1020. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/file_list.rb +428 -0
  1021. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/file_task.rb +46 -0
  1022. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/file_utils.rb +128 -0
  1023. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/file_utils_ext.rb +144 -0
  1024. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/gempackagetask.rb +4 -0
  1025. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/invocation_chain.rb +56 -0
  1026. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/invocation_exception_mixin.rb +16 -0
  1027. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/late_time.rb +17 -0
  1028. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/linked_list.rb +103 -0
  1029. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/loaders/makefile.rb +53 -0
  1030. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/multi_task.rb +13 -0
  1031. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/name_space.rb +38 -0
  1032. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/packagetask.rb +199 -0
  1033. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/pathmap.rb +3 -0
  1034. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/phony.rb +15 -0
  1035. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/private_reader.rb +20 -0
  1036. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/promise.rb +99 -0
  1037. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/pseudo_status.rb +29 -0
  1038. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/rake_module.rb +38 -0
  1039. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/rake_test_loader.rb +22 -0
  1040. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/rdoctask.rb +4 -0
  1041. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/ruby182_test_unit_fix.rb +29 -0
  1042. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/rule_recursion_overflow_error.rb +20 -0
  1043. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/runtest.rb +27 -0
  1044. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/scope.rb +42 -0
  1045. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/task.rb +383 -0
  1046. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/task_argument_error.rb +7 -0
  1047. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/task_arguments.rb +98 -0
  1048. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/task_manager.rb +307 -0
  1049. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/tasklib.rb +24 -0
  1050. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/testtask.rb +213 -0
  1051. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/thread_history_display.rb +48 -0
  1052. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/thread_pool.rb +164 -0
  1053. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/trace_output.rb +22 -0
  1054. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/version.rb +7 -0
  1055. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/lib/rake/win32.rb +56 -0
  1056. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/rakelib/publish.rake +20 -0
  1057. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/rakelib/test_times.rake +25 -0
  1058. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/file_creation.rb +34 -0
  1059. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/helper.rb +129 -0
  1060. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/support/rakefile_definitions.rb +478 -0
  1061. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/support/ruby_runner.rb +34 -0
  1062. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_private_reader.rb +42 -0
  1063. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake.rb +40 -0
  1064. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_application.rb +643 -0
  1065. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_application_options.rb +468 -0
  1066. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_backtrace.rb +119 -0
  1067. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_clean.rb +61 -0
  1068. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_cpu_counter.rb +68 -0
  1069. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_definitions.rb +84 -0
  1070. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_directory_task.rb +76 -0
  1071. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_dsl.rb +40 -0
  1072. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_early_time.rb +31 -0
  1073. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_extension.rb +59 -0
  1074. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_file_creation_task.rb +56 -0
  1075. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_file_list.rb +670 -0
  1076. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_file_list_path_map.rb +8 -0
  1077. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_file_task.rb +197 -0
  1078. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_file_utils.rb +314 -0
  1079. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_ftp_file.rb +74 -0
  1080. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_functional.rb +482 -0
  1081. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_invocation_chain.rb +64 -0
  1082. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_late_time.rb +18 -0
  1083. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_linked_list.rb +84 -0
  1084. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_makefile_loader.rb +46 -0
  1085. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_multi_task.rb +64 -0
  1086. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_name_space.rb +57 -0
  1087. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_package_task.rb +79 -0
  1088. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_path_map.rb +168 -0
  1089. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_path_map_explode.rb +34 -0
  1090. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_path_map_partial.rb +18 -0
  1091. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_pathname_extensions.rb +15 -0
  1092. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_pseudo_status.rb +21 -0
  1093. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_rake_test_loader.rb +20 -0
  1094. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_reduce_compat.rb +26 -0
  1095. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_require.rb +40 -0
  1096. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_rules.rb +388 -0
  1097. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_scope.rb +44 -0
  1098. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_task.rb +393 -0
  1099. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_task_argument_parsing.rb +119 -0
  1100. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_task_arguments.rb +127 -0
  1101. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_task_lib.rb +9 -0
  1102. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_task_manager.rb +178 -0
  1103. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_task_manager_argument_resolution.rb +19 -0
  1104. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_task_with_arguments.rb +172 -0
  1105. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_test_task.rb +146 -0
  1106. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_thread_pool.rb +145 -0
  1107. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_top_level_functions.rb +71 -0
  1108. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_rake_win32.rb +72 -0
  1109. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_thread_history_display.rb +101 -0
  1110. data/vendor/bundle/ruby/2.0.0/gems/rake-10.5.0/test/test_trace_output.rb +52 -0
  1111. data/vendor/bundle/ruby/2.0.0/gems/rspec-3.4.0/LICENSE.md +27 -0
  1112. data/vendor/bundle/ruby/2.0.0/gems/rspec-3.4.0/README.md +39 -0
  1113. data/vendor/bundle/ruby/2.0.0/gems/rspec-3.4.0/lib/rspec.rb +3 -0
  1114. data/vendor/bundle/ruby/2.0.0/gems/rspec-3.4.0/lib/rspec/version.rb +5 -0
  1115. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/Changelog.md +1947 -0
  1116. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/LICENSE.md +26 -0
  1117. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/README.md +384 -0
  1118. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/exe/rspec +4 -0
  1119. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/autorun.rb +3 -0
  1120. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core.rb +181 -0
  1121. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/backtrace_formatter.rb +65 -0
  1122. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/bisect/coordinator.rb +66 -0
  1123. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/bisect/example_minimizer.rb +169 -0
  1124. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/bisect/runner.rb +139 -0
  1125. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/bisect/server.rb +61 -0
  1126. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/configuration.rb +1869 -0
  1127. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/configuration_options.rb +191 -0
  1128. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/drb.rb +111 -0
  1129. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/dsl.rb +96 -0
  1130. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/example.rb +631 -0
  1131. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/example_group.rb +816 -0
  1132. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/example_status_persister.rb +235 -0
  1133. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/filter_manager.rb +231 -0
  1134. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/flat_map.rb +20 -0
  1135. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters.rb +255 -0
  1136. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/base_formatter.rb +70 -0
  1137. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/base_text_formatter.rb +77 -0
  1138. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/bisect_formatter.rb +68 -0
  1139. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/bisect_progress_formatter.rb +144 -0
  1140. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/console_codes.rb +65 -0
  1141. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
  1142. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/documentation_formatter.rb +70 -0
  1143. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/exception_presenter.rb +480 -0
  1144. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
  1145. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/helpers.rb +109 -0
  1146. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/html_formatter.rb +151 -0
  1147. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/html_printer.rb +414 -0
  1148. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/html_snippet_extractor.rb +116 -0
  1149. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/json_formatter.rb +96 -0
  1150. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/profile_formatter.rb +68 -0
  1151. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/progress_formatter.rb +28 -0
  1152. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/protocol.rb +181 -0
  1153. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/formatters/snippet_extractor.rb +143 -0
  1154. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/hooks.rb +638 -0
  1155. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/memoized_helpers.rb +532 -0
  1156. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/metadata.rb +493 -0
  1157. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/metadata_filter.rb +240 -0
  1158. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
  1159. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
  1160. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
  1161. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/mocking_adapters/null.rb +14 -0
  1162. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/mocking_adapters/rr.rb +31 -0
  1163. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
  1164. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/notifications.rb +499 -0
  1165. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/option_parser.rb +319 -0
  1166. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/ordering.rb +158 -0
  1167. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/pending.rb +165 -0
  1168. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/profiler.rb +32 -0
  1169. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/project_initializer.rb +48 -0
  1170. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/project_initializer/spec/spec_helper.rb +96 -0
  1171. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/rake_task.rb +167 -0
  1172. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/reporter.rb +236 -0
  1173. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/ruby_project.rb +53 -0
  1174. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/runner.rb +183 -0
  1175. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/sandbox.rb +37 -0
  1176. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/set.rb +49 -0
  1177. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/shared_context.rb +55 -0
  1178. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/shared_example_group.rb +212 -0
  1179. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/shell_escape.rb +49 -0
  1180. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/source.rb +76 -0
  1181. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/source/location.rb +13 -0
  1182. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/source/node.rb +93 -0
  1183. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/source/syntax_highlighter.rb +71 -0
  1184. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/source/token.rb +43 -0
  1185. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
  1186. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/version.rb +9 -0
  1187. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/warnings.rb +40 -0
  1188. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.4.2/lib/rspec/core/world.rb +197 -0
  1189. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/Changelog.md +979 -0
  1190. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/LICENSE.md +25 -0
  1191. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/README.md +303 -0
  1192. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/expectations.rb +81 -0
  1193. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/expectations/configuration.rb +164 -0
  1194. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/expectations/expectation_target.rb +113 -0
  1195. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/expectations/fail_with.rb +31 -0
  1196. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/expectations/failure_aggregator.rb +194 -0
  1197. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/expectations/handler.rb +170 -0
  1198. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/expectations/minitest_integration.rb +31 -0
  1199. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/expectations/syntax.rb +132 -0
  1200. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/expectations/version.rb +8 -0
  1201. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers.rb +1037 -0
  1202. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/aliased_matcher.rb +116 -0
  1203. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in.rb +52 -0
  1204. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/all.rb +85 -0
  1205. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/base_matcher.rb +181 -0
  1206. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/be.rb +285 -0
  1207. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/be_between.rb +77 -0
  1208. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/be_instance_of.rb +22 -0
  1209. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/be_kind_of.rb +16 -0
  1210. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/be_within.rb +72 -0
  1211. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/change.rb +354 -0
  1212. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/compound.rb +272 -0
  1213. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/contain_exactly.rb +286 -0
  1214. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/cover.rb +24 -0
  1215. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/eq.rb +40 -0
  1216. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/eql.rb +34 -0
  1217. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/equal.rb +81 -0
  1218. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/exist.rb +86 -0
  1219. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/has.rb +103 -0
  1220. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
  1221. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/include.rb +130 -0
  1222. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/match.rb +106 -0
  1223. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/operators.rb +128 -0
  1224. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/output.rb +200 -0
  1225. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/raise_error.rb +228 -0
  1226. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/respond_to.rb +90 -0
  1227. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/satisfy.rb +37 -0
  1228. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
  1229. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
  1230. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/yield.rb +419 -0
  1231. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/composable.rb +185 -0
  1232. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/dsl.rb +453 -0
  1233. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/english_phrasing.rb +42 -0
  1234. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +73 -0
  1235. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/fail_matchers.rb +42 -0
  1236. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/generated_descriptions.rb +42 -0
  1237. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/matcher_delegator.rb +35 -0
  1238. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.4.0/lib/rspec/matchers/matcher_protocol.rb +99 -0
  1239. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/Changelog.md +991 -0
  1240. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/LICENSE.md +25 -0
  1241. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/README.md +445 -0
  1242. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks.rb +126 -0
  1243. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance.rb +11 -0
  1244. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/chain.rb +110 -0
  1245. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
  1246. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/expect_chain_chain.rb +35 -0
  1247. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/expectation_chain.rb +48 -0
  1248. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
  1249. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/proxy.rb +116 -0
  1250. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/recorder.rb +268 -0
  1251. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/stub_chain.rb +46 -0
  1252. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/stub_chain_chain.rb +27 -0
  1253. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/argument_list_matcher.rb +100 -0
  1254. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/argument_matchers.rb +320 -0
  1255. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/configuration.rb +205 -0
  1256. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/error_generator.rb +367 -0
  1257. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/example_methods.rb +422 -0
  1258. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/instance_method_stasher.rb +135 -0
  1259. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/marshal_extension.rb +41 -0
  1260. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
  1261. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/matchers/have_received.rb +128 -0
  1262. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/matchers/receive.rb +130 -0
  1263. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/matchers/receive_message_chain.rb +80 -0
  1264. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/matchers/receive_messages.rb +75 -0
  1265. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/message_chain.rb +87 -0
  1266. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/message_expectation.rb +717 -0
  1267. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/method_double.rb +287 -0
  1268. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/method_reference.rb +192 -0
  1269. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/mutate_const.rb +335 -0
  1270. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/object_reference.rb +149 -0
  1271. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/order_group.rb +81 -0
  1272. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/proxy.rb +484 -0
  1273. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/space.rb +238 -0
  1274. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/standalone.rb +3 -0
  1275. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/syntax.rb +325 -0
  1276. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/targets.rb +97 -0
  1277. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/test_double.rb +170 -0
  1278. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/verifying_double.rb +129 -0
  1279. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/verifying_message_expectation.rb +54 -0
  1280. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/verifying_proxy.rb +213 -0
  1281. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.4.1/lib/rspec/mocks/version.rb +9 -0
  1282. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/Changelog.md +151 -0
  1283. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/LICENSE.md +23 -0
  1284. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/README.md +40 -0
  1285. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support.rb +139 -0
  1286. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/caller_filter.rb +83 -0
  1287. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/comparable_version.rb +46 -0
  1288. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/differ.rb +215 -0
  1289. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/directory_maker.rb +63 -0
  1290. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/encoded_string.rb +155 -0
  1291. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/fuzzy_matcher.rb +48 -0
  1292. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/hunk_generator.rb +47 -0
  1293. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/matcher_definition.rb +42 -0
  1294. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/method_signature_verifier.rb +290 -0
  1295. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/mutex.rb +73 -0
  1296. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/object_formatter.rb +108 -0
  1297. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/recursive_const_methods.rb +76 -0
  1298. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/reentrant_mutex.rb +53 -0
  1299. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/ruby_features.rb +149 -0
  1300. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/spec.rb +81 -0
  1301. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
  1302. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/spec/formatting_support.rb +9 -0
  1303. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/spec/in_sub_process.rb +52 -0
  1304. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/spec/library_wide_checks.rb +152 -0
  1305. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/spec/shell_out.rb +71 -0
  1306. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/spec/stderr_splitter.rb +63 -0
  1307. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/spec/string_matcher.rb +46 -0
  1308. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/spec/with_isolated_directory.rb +9 -0
  1309. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
  1310. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/version.rb +7 -0
  1311. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/version_checker.rb +53 -0
  1312. data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.4.1/lib/rspec/support/warnings.rb +39 -0
  1313. data/vendor/bundle/ruby/2.0.0/specifications/diff-lcs-1.2.5.gemspec +65 -0
  1314. data/vendor/bundle/ruby/2.0.0/specifications/httparty-0.13.7.gemspec +36 -0
  1315. data/vendor/bundle/ruby/2.0.0/specifications/json-1.8.3.gemspec +36 -0
  1316. data/vendor/bundle/ruby/2.0.0/specifications/multi_xml-0.5.5.gemspec +30 -0
  1317. data/vendor/bundle/ruby/2.0.0/specifications/rake-10.5.0.gemspec +40 -0
  1318. data/vendor/bundle/ruby/2.0.0/specifications/rspec-3.4.0.gemspec +39 -0
  1319. data/vendor/bundle/ruby/2.0.0/specifications/rspec-core-3.4.2.gemspec +62 -0
  1320. data/vendor/bundle/ruby/2.0.0/specifications/rspec-expectations-3.4.0.gemspec +47 -0
  1321. data/vendor/bundle/ruby/2.0.0/specifications/rspec-mocks-3.4.1.gemspec +47 -0
  1322. data/vendor/bundle/ruby/2.0.0/specifications/rspec-support-3.4.1.gemspec +38 -0
  1323. metadata +1422 -0
@@ -0,0 +1,191 @@
1
+ require 'erb'
2
+ require 'shellwords'
3
+
4
+ module RSpec
5
+ module Core
6
+ # Responsible for utilizing externally provided configuration options,
7
+ # whether via the command line, `.rspec`, `~/.rspec`, `.rspec-local`
8
+ # or a custom options file.
9
+ class ConfigurationOptions
10
+ # @param args [Array<String>] command line arguments
11
+ def initialize(args)
12
+ @args = args.dup
13
+ organize_options
14
+ end
15
+
16
+ # Updates the provided {Configuration} instance based on the provided
17
+ # external configuration options.
18
+ #
19
+ # @param config [Configuration] the configuration instance to update
20
+ def configure(config)
21
+ process_options_into config
22
+ configure_filter_manager config.filter_manager
23
+ load_formatters_into config
24
+ end
25
+
26
+ # @api private
27
+ # Updates the provided {FilterManager} based on the filter options.
28
+ # @param filter_manager [FilterManager] instance to update
29
+ def configure_filter_manager(filter_manager)
30
+ @filter_manager_options.each do |command, value|
31
+ filter_manager.__send__ command, value
32
+ end
33
+ end
34
+
35
+ # @return [Hash] the final merged options, drawn from all external sources
36
+ attr_reader :options
37
+
38
+ private
39
+
40
+ def organize_options
41
+ @filter_manager_options = []
42
+
43
+ @options = (file_options << command_line_options << env_options).each do |opts|
44
+ @filter_manager_options << [:include, opts.delete(:inclusion_filter)] if opts.key?(:inclusion_filter)
45
+ @filter_manager_options << [:exclude, opts.delete(:exclusion_filter)] if opts.key?(:exclusion_filter)
46
+ end
47
+
48
+ @options = @options.inject(:libs => [], :requires => []) do |hash, opts|
49
+ hash.merge(opts) do |key, oldval, newval|
50
+ [:libs, :requires].include?(key) ? oldval + newval : newval
51
+ end
52
+ end
53
+ end
54
+
55
+ UNFORCED_OPTIONS = Set.new([
56
+ :requires, :profile, :drb, :libs, :files_or_directories_to_run,
57
+ :full_description, :full_backtrace, :tty
58
+ ])
59
+
60
+ UNPROCESSABLE_OPTIONS = Set.new([:formatters])
61
+
62
+ def force?(key)
63
+ !UNFORCED_OPTIONS.include?(key)
64
+ end
65
+
66
+ def order(keys)
67
+ OPTIONS_ORDER.reverse_each do |key|
68
+ keys.unshift(key) if keys.delete(key)
69
+ end
70
+ keys
71
+ end
72
+
73
+ OPTIONS_ORDER = [
74
+ # It's important to set this before anything that might issue a
75
+ # deprecation (or otherwise access the reporter).
76
+ :deprecation_stream,
77
+
78
+ # load paths depend on nothing, but must be set before `requires`
79
+ # to support load-path-relative requires.
80
+ :libs,
81
+
82
+ # `files_or_directories_to_run` uses `default_path` so it must be
83
+ # set before it.
84
+ :default_path, :only_failures,
85
+
86
+ # These must be set before `requires` to support checking
87
+ # `config.files_to_run` from within `spec_helper.rb` when a
88
+ # `-rspec_helper` option is used.
89
+ :files_or_directories_to_run, :pattern, :exclude_pattern,
90
+
91
+ # Necessary so that the `--seed` option is applied before requires,
92
+ # in case required files do something with the provided seed.
93
+ # (such as seed global randomization with it).
94
+ :order,
95
+
96
+ # In general, we want to require the specified files as early as
97
+ # possible. The `--require` option is specifically intended to allow
98
+ # early requires. For later requires, they can just put the require in
99
+ # their spec files, but `--require` provides a unique opportunity for
100
+ # users to instruct RSpec to load an extension file early for maximum
101
+ # flexibility.
102
+ :requires
103
+ ]
104
+
105
+ def process_options_into(config)
106
+ opts = options.reject { |k, _| UNPROCESSABLE_OPTIONS.include? k }
107
+
108
+ order(opts.keys).each do |key|
109
+ force?(key) ? config.force(key => opts[key]) : config.__send__("#{key}=", opts[key])
110
+ end
111
+ end
112
+
113
+ def load_formatters_into(config)
114
+ options[:formatters].each { |pair| config.add_formatter(*pair) } if options[:formatters]
115
+ end
116
+
117
+ def file_options
118
+ custom_options_file ? [custom_options] : [global_options, project_options, local_options]
119
+ end
120
+
121
+ def env_options
122
+ return {} unless ENV['SPEC_OPTS']
123
+
124
+ parse_args_ignoring_files_or_dirs_to_run(
125
+ Shellwords.split(ENV["SPEC_OPTS"]),
126
+ "ENV['SPEC_OPTS']"
127
+ )
128
+ end
129
+
130
+ def command_line_options
131
+ @command_line_options ||= Parser.parse(@args)
132
+ end
133
+
134
+ def custom_options
135
+ options_from(custom_options_file)
136
+ end
137
+
138
+ def local_options
139
+ @local_options ||= options_from(local_options_file)
140
+ end
141
+
142
+ def project_options
143
+ @project_options ||= options_from(project_options_file)
144
+ end
145
+
146
+ def global_options
147
+ @global_options ||= options_from(global_options_file)
148
+ end
149
+
150
+ def options_from(path)
151
+ args = args_from_options_file(path)
152
+ parse_args_ignoring_files_or_dirs_to_run(args, path)
153
+ end
154
+
155
+ def parse_args_ignoring_files_or_dirs_to_run(args, source)
156
+ options = Parser.parse(args, source)
157
+ options.delete(:files_or_directories_to_run)
158
+ options
159
+ end
160
+
161
+ def args_from_options_file(path)
162
+ return [] unless path && File.exist?(path)
163
+ config_string = options_file_as_erb_string(path)
164
+ FlatMap.flat_map(config_string.split(/\n+/), &:shellsplit)
165
+ end
166
+
167
+ def options_file_as_erb_string(path)
168
+ ERB.new(File.read(path), nil, '-').result(binding)
169
+ end
170
+
171
+ def custom_options_file
172
+ command_line_options[:custom_options_file]
173
+ end
174
+
175
+ def project_options_file
176
+ "./.rspec"
177
+ end
178
+
179
+ def local_options_file
180
+ "./.rspec-local"
181
+ end
182
+
183
+ def global_options_file
184
+ File.join(File.expand_path("~"), ".rspec")
185
+ rescue ArgumentError
186
+ RSpec.warning "Unable to find ~/.rspec because the HOME environment variable is not set"
187
+ nil
188
+ end
189
+ end
190
+ end
191
+ end
@@ -0,0 +1,111 @@
1
+ require 'drb/drb'
2
+
3
+ module RSpec
4
+ module Core
5
+ # @private
6
+ class DRbRunner
7
+ def initialize(options, configuration=RSpec.configuration)
8
+ @options = options
9
+ @configuration = configuration
10
+ end
11
+
12
+ def drb_port
13
+ @options.options[:drb_port] || ENV['RSPEC_DRB'] || 8989
14
+ end
15
+
16
+ def run(err, out)
17
+ begin
18
+ DRb.start_service("druby://localhost:0")
19
+ rescue SocketError, Errno::EADDRNOTAVAIL
20
+ DRb.start_service("druby://:0")
21
+ end
22
+ spec_server = DRbObject.new_with_uri("druby://127.0.0.1:#{drb_port}")
23
+ spec_server.run(drb_argv, err, out)
24
+ end
25
+
26
+ def drb_argv
27
+ @drb_argv ||= begin
28
+ @options.configure_filter_manager(@configuration.filter_manager)
29
+ DRbOptions.new(@options.options, @configuration.filter_manager).options
30
+ end
31
+ end
32
+ end
33
+
34
+ # @private
35
+ class DRbOptions
36
+ def initialize(submitted_options, filter_manager)
37
+ @submitted_options = submitted_options
38
+ @filter_manager = filter_manager
39
+ end
40
+
41
+ def options
42
+ argv = []
43
+ argv << "--color" if @submitted_options[:color]
44
+ argv << "--profile" if @submitted_options[:profile_examples]
45
+ argv << "--backtrace" if @submitted_options[:full_backtrace]
46
+ argv << "--tty" if @submitted_options[:tty]
47
+ argv << "--fail-fast" if @submitted_options[:fail_fast]
48
+ argv << "--options" << @submitted_options[:custom_options_file] if @submitted_options[:custom_options_file]
49
+ argv << "--order" << @submitted_options[:order] if @submitted_options[:order]
50
+
51
+ add_failure_exit_code(argv)
52
+ add_full_description(argv)
53
+ add_filter(argv, :inclusion, @filter_manager.inclusions)
54
+ add_filter(argv, :exclusion, @filter_manager.exclusions)
55
+ add_formatters(argv)
56
+ add_libs(argv)
57
+ add_requires(argv)
58
+
59
+ argv + @submitted_options[:files_or_directories_to_run]
60
+ end
61
+
62
+ def add_failure_exit_code(argv)
63
+ return unless @submitted_options[:failure_exit_code]
64
+
65
+ argv << "--failure-exit-code" << @submitted_options[:failure_exit_code].to_s
66
+ end
67
+
68
+ def add_full_description(argv)
69
+ return unless @submitted_options[:full_description]
70
+
71
+ # The argument to --example is regexp-escaped before being stuffed
72
+ # into a regexp when received for the first time (see OptionParser).
73
+ # Hence, merely grabbing the source of this regexp will retain the
74
+ # backslashes, so we must remove them.
75
+ @submitted_options[:full_description].each do |description|
76
+ argv << "--example" << description.source.delete('\\')
77
+ end
78
+ end
79
+
80
+ CONDITIONAL_FILTERS = [:if, :unless]
81
+
82
+ def add_filter(argv, name, hash)
83
+ hash.each_pair do |k, v|
84
+ next if CONDITIONAL_FILTERS.include?(k)
85
+ tag = name == :inclusion ? k.to_s : "~#{k}"
86
+ tag << ":#{v}" if v.is_a?(String)
87
+ argv << "--tag" << tag
88
+ end unless hash.empty?
89
+ end
90
+
91
+ def add_formatters(argv)
92
+ @submitted_options[:formatters].each do |pair|
93
+ argv << "--format" << pair[0]
94
+ argv << "--out" << pair[1] if pair[1]
95
+ end if @submitted_options[:formatters]
96
+ end
97
+
98
+ def add_libs(argv)
99
+ @submitted_options[:libs].each do |path|
100
+ argv << "-I" << path
101
+ end if @submitted_options[:libs]
102
+ end
103
+
104
+ def add_requires(argv)
105
+ @submitted_options[:requires].each do |path|
106
+ argv << "--require" << path
107
+ end if @submitted_options[:requires]
108
+ end
109
+ end
110
+ end
111
+ end
@@ -0,0 +1,96 @@
1
+ module RSpec
2
+ module Core
3
+ # DSL defines methods to group examples, most notably `describe`,
4
+ # and exposes them as class methods of {RSpec}. They can also be
5
+ # exposed globally (on `main` and instances of `Module`) through
6
+ # the {Configuration} option `expose_dsl_globally`.
7
+ #
8
+ # By default the methods `describe`, `context` and `example_group`
9
+ # are exposed. These methods define a named context for one or
10
+ # more examples. The given block is evaluated in the context of
11
+ # a generated subclass of {RSpec::Core::ExampleGroup}.
12
+ #
13
+ # ## Examples:
14
+ #
15
+ # RSpec.describe "something" do
16
+ # context "when something is a certain way" do
17
+ # it "does something" do
18
+ # # example code goes here
19
+ # end
20
+ # end
21
+ # end
22
+ #
23
+ # @see ExampleGroup
24
+ # @see ExampleGroup.example_group
25
+ module DSL
26
+ # @private
27
+ def self.example_group_aliases
28
+ @example_group_aliases ||= []
29
+ end
30
+
31
+ # @private
32
+ def self.exposed_globally?
33
+ @exposed_globally ||= false
34
+ end
35
+
36
+ # @private
37
+ def self.expose_example_group_alias(name)
38
+ return if example_group_aliases.include?(name)
39
+
40
+ example_group_aliases << name
41
+
42
+ (class << RSpec; self; end).__send__(:define_method, name) do |*args, &example_group_block|
43
+ RSpec.world.register RSpec::Core::ExampleGroup.__send__(name, *args, &example_group_block)
44
+ end
45
+
46
+ expose_example_group_alias_globally(name) if exposed_globally?
47
+ end
48
+
49
+ class << self
50
+ # @private
51
+ attr_accessor :top_level
52
+ end
53
+
54
+ # Adds the describe method to Module and the top level binding.
55
+ # @api private
56
+ def self.expose_globally!
57
+ return if exposed_globally?
58
+
59
+ example_group_aliases.each do |method_name|
60
+ expose_example_group_alias_globally(method_name)
61
+ end
62
+
63
+ @exposed_globally = true
64
+ end
65
+
66
+ # Removes the describe method from Module and the top level binding.
67
+ # @api private
68
+ def self.remove_globally!
69
+ return unless exposed_globally?
70
+
71
+ example_group_aliases.each do |method_name|
72
+ change_global_dsl { undef_method method_name }
73
+ end
74
+
75
+ @exposed_globally = false
76
+ end
77
+
78
+ # @private
79
+ def self.expose_example_group_alias_globally(method_name)
80
+ change_global_dsl do
81
+ remove_method(method_name) if method_defined?(method_name)
82
+ define_method(method_name) { |*a, &b| ::RSpec.__send__(method_name, *a, &b) }
83
+ end
84
+ end
85
+
86
+ # @private
87
+ def self.change_global_dsl(&changes)
88
+ (class << top_level; self; end).class_exec(&changes)
89
+ Module.class_exec(&changes)
90
+ end
91
+ end
92
+ end
93
+ end
94
+
95
+ # Capture main without an eval.
96
+ ::RSpec::Core::DSL.top_level = self
@@ -0,0 +1,631 @@
1
+ module RSpec
2
+ module Core
3
+ # Wrapper for an instance of a subclass of {ExampleGroup}. An instance of
4
+ # `RSpec::Core::Example` is returned by example definition methods
5
+ # such as {ExampleGroup.it it} and is yielded to the {ExampleGroup.it it},
6
+ # {Hooks#before before}, {Hooks#after after}, {Hooks#around around},
7
+ # {MemoizedHelpers::ClassMethods#let let} and
8
+ # {MemoizedHelpers::ClassMethods#subject subject} blocks.
9
+ #
10
+ # This allows us to provide rich metadata about each individual
11
+ # example without adding tons of methods directly to the ExampleGroup
12
+ # that users may inadvertantly redefine.
13
+ #
14
+ # Useful for configuring logging and/or taking some action based
15
+ # on the state of an example's metadata.
16
+ #
17
+ # @example
18
+ #
19
+ # RSpec.configure do |config|
20
+ # config.before do |example|
21
+ # log example.description
22
+ # end
23
+ #
24
+ # config.after do |example|
25
+ # log example.description
26
+ # end
27
+ #
28
+ # config.around do |example|
29
+ # log example.description
30
+ # example.run
31
+ # end
32
+ # end
33
+ #
34
+ # shared_examples "auditable" do
35
+ # it "does something" do
36
+ # log "#{example.full_description}: #{auditable.inspect}"
37
+ # auditable.should do_something
38
+ # end
39
+ # end
40
+ #
41
+ # @see ExampleGroup
42
+ # @note Example blocks are evaluated in the context of an instance
43
+ # of an `ExampleGroup`, not in the context of an instance of `Example`.
44
+ class Example
45
+ # @private
46
+ #
47
+ # Used to define methods that delegate to this example's metadata.
48
+ def self.delegate_to_metadata(key)
49
+ define_method(key) { @metadata[key] }
50
+ end
51
+
52
+ # @return [ExecutionResult] represents the result of running this example.
53
+ delegate_to_metadata :execution_result
54
+ # @return [String] the relative path to the file where this example was
55
+ # defined.
56
+ delegate_to_metadata :file_path
57
+ # @return [String] the full description (including the docstrings of
58
+ # all parent example groups).
59
+ delegate_to_metadata :full_description
60
+ # @return [String] the exact source location of this example in a form
61
+ # like `./path/to/spec.rb:17`
62
+ delegate_to_metadata :location
63
+ # @return [Boolean] flag that indicates that the example is not expected
64
+ # to pass. It will be run and will either have a pending result (if a
65
+ # failure occurs) or a failed result (if no failure occurs).
66
+ delegate_to_metadata :pending
67
+ # @return [Boolean] flag that will cause the example to not run.
68
+ # The {ExecutionResult} status will be `:pending`.
69
+ delegate_to_metadata :skip
70
+
71
+ # Returns the string submitted to `example` or its aliases (e.g.
72
+ # `specify`, `it`, etc). If no string is submitted (e.g.
73
+ # `it { is_expected.to do_something }`) it returns the message generated
74
+ # by the matcher if there is one, otherwise returns a message including
75
+ # the location of the example.
76
+ def description
77
+ description = if metadata[:description].to_s.empty?
78
+ location_description
79
+ else
80
+ metadata[:description]
81
+ end
82
+
83
+ RSpec.configuration.format_docstrings_block.call(description)
84
+ end
85
+
86
+ # Returns a description of the example that always includes the location.
87
+ def inspect_output
88
+ inspect_output = "\"#{description}\""
89
+ unless metadata[:description].to_s.empty?
90
+ inspect_output << " (#{location})"
91
+ end
92
+ inspect_output
93
+ end
94
+
95
+ # Returns the location-based argument that can be passed to the `rspec` command to rerun this example.
96
+ def location_rerun_argument
97
+ @location_rerun_argument ||= begin
98
+ loaded_spec_files = RSpec.configuration.loaded_spec_files
99
+
100
+ Metadata.ascending(metadata) do |meta|
101
+ return meta[:location] if loaded_spec_files.include?(meta[:absolute_file_path])
102
+ end
103
+ end
104
+ end
105
+
106
+ # Returns the location-based argument that can be passed to the `rspec` command to rerun this example.
107
+ #
108
+ # @deprecated Use {#location_rerun_argument} instead.
109
+ # @note If there are multiple examples identified by this location, they will use {#id}
110
+ # to rerun instead, but this method will still return the location (that's why it is deprecated!).
111
+ def rerun_argument
112
+ location_rerun_argument
113
+ end
114
+
115
+ # @return [String] the unique id of this example. Pass
116
+ # this at the command line to re-run this exact example.
117
+ def id
118
+ @id ||= Metadata.id_from(metadata)
119
+ end
120
+
121
+ # @private
122
+ def self.parse_id(id)
123
+ # http://rubular.com/r/OMZSAPcAfn
124
+ id.match(/\A(.*?)(?:\[([\d\s:,]+)\])?\z/).captures
125
+ end
126
+
127
+ # Duplicates the example and overrides metadata with the provided
128
+ # hash.
129
+ #
130
+ # @param metadata_overrides [Hash] the hash to override the example metadata
131
+ # @return [Example] a duplicate of the example with modified metadata
132
+ def duplicate_with(metadata_overrides={})
133
+ new_metadata = metadata.clone.merge(metadata_overrides)
134
+
135
+ RSpec::Core::Metadata::RESERVED_KEYS.each do |reserved_key|
136
+ new_metadata.delete reserved_key
137
+ end
138
+
139
+ # don't clone the example group because the new example
140
+ # must belong to the same example group (not a clone).
141
+ Example.new(example_group, description.clone,
142
+ new_metadata, new_metadata[:block])
143
+ end
144
+
145
+ # @attr_reader
146
+ #
147
+ # Returns the first exception raised in the context of running this
148
+ # example (nil if no exception is raised).
149
+ attr_reader :exception
150
+
151
+ # @attr_reader
152
+ #
153
+ # Returns the metadata object associated with this example.
154
+ attr_reader :metadata
155
+
156
+ # @attr_reader
157
+ # @private
158
+ #
159
+ # Returns the example_group_instance that provides the context for
160
+ # running this example.
161
+ attr_reader :example_group_instance
162
+
163
+ # @attr
164
+ # @private
165
+ attr_accessor :clock
166
+
167
+ # Creates a new instance of Example.
168
+ # @param example_group_class [Class] the subclass of ExampleGroup in which
169
+ # this Example is declared
170
+ # @param description [String] the String passed to the `it` method (or
171
+ # alias)
172
+ # @param user_metadata [Hash] additional args passed to `it` to be used as
173
+ # metadata
174
+ # @param example_block [Proc] the block of code that represents the
175
+ # example
176
+ # @api private
177
+ def initialize(example_group_class, description, user_metadata, example_block=nil)
178
+ @example_group_class = example_group_class
179
+ @example_block = example_block
180
+
181
+ @metadata = Metadata::ExampleHash.create(
182
+ @example_group_class.metadata, user_metadata,
183
+ example_group_class.method(:next_runnable_index_for),
184
+ description, example_block
185
+ )
186
+
187
+ # This should perhaps be done in `Metadata::ExampleHash.create`,
188
+ # but the logic there has no knowledge of `RSpec.world` and we
189
+ # want to keep it that way. It's easier to just assign it here.
190
+ @metadata[:last_run_status] = RSpec.configuration.last_run_statuses[id]
191
+
192
+ @example_group_instance = @exception = nil
193
+ @clock = RSpec::Core::Time
194
+ @reporter = RSpec::Core::NullReporter
195
+ end
196
+
197
+ # Provide a human-readable representation of this class
198
+ def inspect
199
+ "#<#{self.class.name} #{description.inspect}>"
200
+ end
201
+ alias to_s inspect
202
+
203
+ # @return [RSpec::Core::Reporter] the current reporter for the example
204
+ attr_reader :reporter
205
+
206
+ # Returns the example group class that provides the context for running
207
+ # this example.
208
+ def example_group
209
+ @example_group_class
210
+ end
211
+
212
+ alias_method :pending?, :pending
213
+ alias_method :skipped?, :skip
214
+
215
+ # @api private
216
+ # instance_execs the block passed to the constructor in the context of
217
+ # the instance of {ExampleGroup}.
218
+ # @param example_group_instance the instance of an ExampleGroup subclass
219
+ def run(example_group_instance, reporter)
220
+ @example_group_instance = example_group_instance
221
+ @reporter = reporter
222
+ hooks.register_global_singleton_context_hooks(self, RSpec.configuration.hooks)
223
+ RSpec.configuration.configure_example(self)
224
+ RSpec.current_example = self
225
+
226
+ start(reporter)
227
+ Pending.mark_pending!(self, pending) if pending?
228
+
229
+ begin
230
+ if skipped?
231
+ Pending.mark_pending! self, skip
232
+ elsif !RSpec.configuration.dry_run?
233
+ with_around_and_singleton_context_hooks do
234
+ begin
235
+ run_before_example
236
+ @example_group_instance.instance_exec(self, &@example_block)
237
+
238
+ if pending?
239
+ Pending.mark_fixed! self
240
+
241
+ raise Pending::PendingExampleFixedError,
242
+ 'Expected example to fail since it is pending, but it passed.',
243
+ [location]
244
+ end
245
+ rescue Pending::SkipDeclaredInExample
246
+ # no-op, required metadata has already been set by the `skip`
247
+ # method.
248
+ rescue AllExceptionsExcludingDangerousOnesOnRubiesThatAllowIt => e
249
+ set_exception(e)
250
+ ensure
251
+ run_after_example
252
+ end
253
+ end
254
+ end
255
+ rescue Support::AllExceptionsExceptOnesWeMustNotRescue => e
256
+ set_exception(e)
257
+ ensure
258
+ @example_group_instance = nil # if you love something... let it go
259
+ end
260
+
261
+ finish(reporter)
262
+ ensure
263
+ execution_result.ensure_timing_set(clock)
264
+ RSpec.current_example = nil
265
+ end
266
+
267
+ if RSpec::Support::Ruby.jruby? || RUBY_VERSION.to_f < 1.9
268
+ # :nocov:
269
+ # For some reason, rescuing `Support::AllExceptionsExceptOnesWeMustNotRescue`
270
+ # in place of `Exception` above can cause the exit status to be the wrong
271
+ # thing. I have no idea why. See:
272
+ # https://github.com/rspec/rspec-core/pull/2063#discussion_r38284978
273
+ # @private
274
+ AllExceptionsExcludingDangerousOnesOnRubiesThatAllowIt = Exception
275
+ # :nocov:
276
+ else
277
+ # @private
278
+ AllExceptionsExcludingDangerousOnesOnRubiesThatAllowIt = Support::AllExceptionsExceptOnesWeMustNotRescue
279
+ end
280
+
281
+ # Wraps both a `Proc` and an {Example} for use in {Hooks#around
282
+ # around} hooks. In around hooks we need to yield this special
283
+ # kind of object (rather than the raw {Example}) because when
284
+ # there are multiple `around` hooks we have to wrap them recursively.
285
+ #
286
+ # @example
287
+ #
288
+ # RSpec.configure do |c|
289
+ # c.around do |ex| # Procsy which wraps the example
290
+ # if ex.metadata[:key] == :some_value && some_global_condition
291
+ # raise "some message"
292
+ # end
293
+ # ex.run # run delegates to ex.call.
294
+ # end
295
+ # end
296
+ #
297
+ # @note This class also exposes the instance methods of {Example},
298
+ # proxying them through to the wrapped {Example} instance.
299
+ class Procsy
300
+ # The {Example} instance.
301
+ attr_reader :example
302
+
303
+ Example.public_instance_methods(false).each do |name|
304
+ name_sym = name.to_sym
305
+ next if name_sym == :run || name_sym == :inspect || name_sym == :to_s
306
+
307
+ define_method(name) { |*a, &b| @example.__send__(name, *a, &b) }
308
+ end
309
+
310
+ Proc.public_instance_methods(false).each do |name|
311
+ name_sym = name.to_sym
312
+ next if name_sym == :call || name_sym == :inspect || name_sym == :to_s || name_sym == :to_proc
313
+
314
+ define_method(name) { |*a, &b| @proc.__send__(name, *a, &b) }
315
+ end
316
+
317
+ # Calls the proc and notes that the example has been executed.
318
+ def call(*args, &block)
319
+ @executed = true
320
+ @proc.call(*args, &block)
321
+ end
322
+ alias run call
323
+
324
+ # Provides a wrapped proc that will update our `executed?` state when
325
+ # executed.
326
+ def to_proc
327
+ method(:call).to_proc
328
+ end
329
+
330
+ def initialize(example, &block)
331
+ @example = example
332
+ @proc = block
333
+ @executed = false
334
+ end
335
+
336
+ # @private
337
+ def wrap(&block)
338
+ self.class.new(example, &block)
339
+ end
340
+
341
+ # Indicates whether or not the around hook has executed the example.
342
+ def executed?
343
+ @executed
344
+ end
345
+
346
+ # @private
347
+ def inspect
348
+ @example.inspect.gsub('Example', 'ExampleProcsy')
349
+ end
350
+ end
351
+
352
+ # @private
353
+ #
354
+ # The exception that will be displayed to the user -- either the failure of
355
+ # the example or the `pending_exception` if the example is pending.
356
+ def display_exception
357
+ @exception || execution_result.pending_exception
358
+ end
359
+
360
+ # @private
361
+ #
362
+ # Assigns the exception that will be displayed to the user -- either the failure of
363
+ # the example or the `pending_exception` if the example is pending.
364
+ def display_exception=(ex)
365
+ if pending? && !(Pending::PendingExampleFixedError === ex)
366
+ @exception = nil
367
+ execution_result.pending_fixed = false
368
+ execution_result.pending_exception = ex
369
+ else
370
+ @exception = ex
371
+ end
372
+ end
373
+
374
+ # rubocop:disable Style/AccessorMethodName
375
+
376
+ # @private
377
+ #
378
+ # Used internally to set an exception in an after hook, which
379
+ # captures the exception but doesn't raise it.
380
+ def set_exception(exception)
381
+ return self.display_exception = exception unless display_exception
382
+
383
+ unless RSpec::Core::MultipleExceptionError === display_exception
384
+ self.display_exception = RSpec::Core::MultipleExceptionError.new(display_exception)
385
+ end
386
+
387
+ display_exception.add exception
388
+ end
389
+
390
+ # @private
391
+ #
392
+ # Used to set the exception when `aggregate_failures` fails.
393
+ def set_aggregate_failures_exception(exception)
394
+ return set_exception(exception) unless display_exception
395
+
396
+ exception = RSpec::Core::MultipleExceptionError::InterfaceTag.for(exception)
397
+ exception.add display_exception
398
+ self.display_exception = exception
399
+ end
400
+
401
+ # rubocop:enable Style/AccessorMethodName
402
+
403
+ # @private
404
+ #
405
+ # Used internally to set an exception and fail without actually executing
406
+ # the example when an exception is raised in before(:context).
407
+ def fail_with_exception(reporter, exception)
408
+ start(reporter)
409
+ set_exception(exception)
410
+ finish(reporter)
411
+ end
412
+
413
+ # @private
414
+ #
415
+ # Used internally to skip without actually executing the example when
416
+ # skip is used in before(:context).
417
+ def skip_with_exception(reporter, exception)
418
+ start(reporter)
419
+ Pending.mark_skipped! self, exception.argument
420
+ finish(reporter)
421
+ end
422
+
423
+ # @private
424
+ def instance_exec(*args, &block)
425
+ @example_group_instance.instance_exec(*args, &block)
426
+ end
427
+
428
+ private
429
+
430
+ def hooks
431
+ example_group_instance.singleton_class.hooks
432
+ end
433
+
434
+ def with_around_example_hooks
435
+ hooks.run(:around, :example, self) { yield }
436
+ rescue Support::AllExceptionsExceptOnesWeMustNotRescue => e
437
+ set_exception(e)
438
+ end
439
+
440
+ def start(reporter)
441
+ reporter.example_started(self)
442
+ execution_result.started_at = clock.now
443
+ end
444
+
445
+ def finish(reporter)
446
+ pending_message = execution_result.pending_message
447
+
448
+ reporter.example_finished(self)
449
+ if @exception
450
+ record_finished :failed
451
+ execution_result.exception = @exception
452
+ reporter.example_failed self
453
+ false
454
+ elsif pending_message
455
+ record_finished :pending
456
+ execution_result.pending_message = pending_message
457
+ reporter.example_pending self
458
+ true
459
+ else
460
+ record_finished :passed
461
+ reporter.example_passed self
462
+ true
463
+ end
464
+ end
465
+
466
+ def record_finished(status)
467
+ execution_result.record_finished(status, clock.now)
468
+ end
469
+
470
+ def run_before_example
471
+ @example_group_instance.setup_mocks_for_rspec
472
+ hooks.run(:before, :example, self)
473
+ end
474
+
475
+ def with_around_and_singleton_context_hooks
476
+ singleton_context_hooks_host = example_group_instance.singleton_class
477
+ singleton_context_hooks_host.run_before_context_hooks(example_group_instance)
478
+ with_around_example_hooks { yield }
479
+ ensure
480
+ singleton_context_hooks_host.run_after_context_hooks(example_group_instance)
481
+ end
482
+
483
+ def run_after_example
484
+ assign_generated_description if defined?(::RSpec::Matchers)
485
+ hooks.run(:after, :example, self)
486
+ verify_mocks
487
+ ensure
488
+ @example_group_instance.teardown_mocks_for_rspec
489
+ end
490
+
491
+ def verify_mocks
492
+ @example_group_instance.verify_mocks_for_rspec if mocks_need_verification?
493
+ rescue Support::AllExceptionsExceptOnesWeMustNotRescue => e
494
+ set_exception(e)
495
+ end
496
+
497
+ def mocks_need_verification?
498
+ exception.nil? || execution_result.pending_fixed?
499
+ end
500
+
501
+ def assign_generated_description
502
+ if metadata[:description].empty? && (description = generate_description)
503
+ metadata[:description] = description
504
+ metadata[:full_description] << description
505
+ end
506
+ ensure
507
+ RSpec::Matchers.clear_generated_description
508
+ end
509
+
510
+ def generate_description
511
+ RSpec::Matchers.generated_description
512
+ rescue Support::AllExceptionsExceptOnesWeMustNotRescue => e
513
+ location_description + " (Got an error when generating description " \
514
+ "from matcher: #{e.class}: #{e.message} -- #{e.backtrace.first})"
515
+ end
516
+
517
+ def location_description
518
+ "example at #{location}"
519
+ end
520
+
521
+ # Represents the result of executing an example.
522
+ # Behaves like a hash for backwards compatibility.
523
+ class ExecutionResult
524
+ include HashImitatable
525
+
526
+ # @return [Symbol] `:passed`, `:failed` or `:pending`.
527
+ attr_accessor :status
528
+
529
+ # @return [Exception, nil] The failure, if there was one.
530
+ attr_accessor :exception
531
+
532
+ # @return [Time] When the example started.
533
+ attr_accessor :started_at
534
+
535
+ # @return [Time] When the example finished.
536
+ attr_accessor :finished_at
537
+
538
+ # @return [Float] How long the example took in seconds.
539
+ attr_accessor :run_time
540
+
541
+ # @return [String, nil] The reason the example was pending,
542
+ # or nil if the example was not pending.
543
+ attr_accessor :pending_message
544
+
545
+ # @return [Exception, nil] The exception triggered while
546
+ # executing the pending example. If no exception was triggered
547
+ # it would no longer get a status of `:pending` unless it was
548
+ # tagged with `:skip`.
549
+ attr_accessor :pending_exception
550
+
551
+ # @return [Boolean] For examples tagged with `:pending`,
552
+ # this indicates whether or not it now passes.
553
+ attr_accessor :pending_fixed
554
+
555
+ alias pending_fixed? pending_fixed
556
+
557
+ # @return [Boolean] Indicates if the example was completely skipped
558
+ # (typically done via `:skip` metadata or the `skip` method). Skipped examples
559
+ # will have a `:pending` result. A `:pending` result can also come from examples
560
+ # that were marked as `:pending`, which causes them to be run, and produces a
561
+ # `:failed` result if the example passes.
562
+ def example_skipped?
563
+ status == :pending && !pending_exception
564
+ end
565
+
566
+ # @api private
567
+ # Records the finished status of the example.
568
+ def record_finished(status, finished_at)
569
+ self.status = status
570
+ calculate_run_time(finished_at)
571
+ end
572
+
573
+ # @api private
574
+ # Populates finished_at and run_time if it has not yet been set
575
+ def ensure_timing_set(clock)
576
+ calculate_run_time(clock.now) unless finished_at
577
+ end
578
+
579
+ private
580
+
581
+ def calculate_run_time(finished_at)
582
+ self.finished_at = finished_at
583
+ self.run_time = (finished_at - started_at).to_f
584
+ end
585
+
586
+ # For backwards compatibility we present `status` as a string
587
+ # when presenting the legacy hash interface.
588
+ def hash_for_delegation
589
+ super.tap do |hash|
590
+ hash[:status] &&= status.to_s
591
+ end
592
+ end
593
+
594
+ def set_value(name, value)
595
+ value &&= value.to_sym if name == :status
596
+ super(name, value)
597
+ end
598
+
599
+ def get_value(name)
600
+ if name == :status
601
+ status.to_s if status
602
+ else
603
+ super
604
+ end
605
+ end
606
+
607
+ def issue_deprecation(_method_name, *_args)
608
+ RSpec.deprecate("Treating `metadata[:execution_result]` as a hash",
609
+ :replacement => "the attributes methods to access the data")
610
+ end
611
+ end
612
+ end
613
+
614
+ # @private
615
+ # Provides an execution context for before/after :suite hooks.
616
+ class SuiteHookContext < Example
617
+ def initialize
618
+ super(AnonymousExampleGroup, "", {})
619
+ @example_group_instance = AnonymousExampleGroup.new
620
+ end
621
+
622
+ # rubocop:disable Style/AccessorMethodName
623
+
624
+ # To ensure we don't silence errors.
625
+ def set_exception(exception)
626
+ raise exception
627
+ end
628
+ # rubocop:enable Style/AccessorMethodName
629
+ end
630
+ end
631
+ end