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,52 @@
1
+ require File.expand_path('../helper', __FILE__)
2
+ require 'stringio'
3
+
4
+ class TestTraceOutput < Rake::TestCase
5
+ include Rake::TraceOutput
6
+
7
+ class PrintSpy
8
+ attr_reader :result, :calls
9
+
10
+ def initialize
11
+ @result = ""
12
+ @calls = 0
13
+ end
14
+
15
+ def print(string)
16
+ @result << string
17
+ @calls += 1
18
+ end
19
+ end
20
+
21
+ def test_trace_issues_single_io_for_args_with_empty_args
22
+ spy = PrintSpy.new
23
+ trace_on(spy)
24
+ assert_equal "\n", spy.result
25
+ assert_equal 1, spy.calls
26
+ end
27
+
28
+ def test_trace_issues_single_io_for_args_multiple_strings
29
+ spy = PrintSpy.new
30
+ trace_on(spy, "HI\n", "LO")
31
+ assert_equal "HI\nLO\n", spy.result
32
+ assert_equal 1, spy.calls
33
+ end
34
+
35
+ def test_trace_handles_nil_objects
36
+ spy = PrintSpy.new
37
+ trace_on(spy, "HI\n", nil, "LO")
38
+ assert_equal "HI\nLO\n", spy.result
39
+ assert_equal 1, spy.calls
40
+ end
41
+
42
+ def test_trace_issues_single_io_for_args_multiple_strings_and_alternate_sep
43
+ old_sep = $\
44
+ $\ = "\r"
45
+ spy = PrintSpy.new
46
+ trace_on(spy, "HI\r", "LO")
47
+ assert_equal "HI\rLO\r", spy.result
48
+ assert_equal 1, spy.calls
49
+ ensure
50
+ $\ = old_sep
51
+ end
52
+ end
@@ -0,0 +1,27 @@
1
+ The MIT License (MIT)
2
+ =====================
3
+
4
+ Copyright © 2009 Chad Humphries, David Chelimsky
5
+ Copyright © 2006 David Chelimsky, The RSpec Development Team
6
+ Copyright © 2005 Steven Baker
7
+
8
+ Permission is hereby granted, free of charge, to any person
9
+ obtaining a copy of this software and associated documentation
10
+ files (the “Software”), to deal in the Software without
11
+ restriction, including without limitation the rights to use,
12
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ copies of the Software, and to permit persons to whom the
14
+ Software is furnished to do so, subject to the following
15
+ conditions:
16
+
17
+ The above copyright notice and this permission notice shall be
18
+ included in all copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
21
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
22
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
24
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
25
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
27
+ OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,39 @@
1
+ # RSpec
2
+
3
+ Behaviour Driven Development for Ruby
4
+
5
+ # Description
6
+
7
+ rspec is a meta-gem, which depends on the
8
+ [rspec-core](https://github.com/rspec/rspec-core),
9
+ [rspec-expectations](https://github.com/rspec/rspec-expectations)
10
+ and [rspec-mocks](https://github.com/rspec/rspec-mocks) gems. Each of these
11
+ can be installed separately and loaded in isolation using `require`. Among
12
+ other benefits, this allows you to use rspec-expectations, for example, in
13
+ Test::Unit::TestCase if you happen to prefer that style.
14
+
15
+ Conversely, if you like RSpec's approach to declaring example groups and
16
+ examples (`describe` and `it`) but prefer Test::Unit assertions and
17
+ [mocha](https://github.com/mochajs/mocha), [rr] (https://github.com/btakita/rr)
18
+ or [flexmock] (https://github.com/jimweirich/flexmock) for mocking, you'll be
19
+ able to do that without having to install or load the components of RSpec that
20
+ you're not using.
21
+
22
+ ## Documentation
23
+
24
+ See http://rspec.info/documentation/ for links to documentation for all gems.
25
+
26
+ ## Install
27
+
28
+ gem install rspec
29
+
30
+ ## Contribute
31
+
32
+ * [http://github.com/rspec/rspec-dev](http://github.com/rspec/rspec-dev)
33
+
34
+ ## Also see
35
+
36
+ * [https://github.com/rspec/rspec-core](https://github.com/rspec/rspec-core)
37
+ * [https://github.com/rspec/rspec-expectations](https://github.com/rspec/rspec-expectations)
38
+ * [https://github.com/rspec/rspec-mocks](https://github.com/rspec/rspec-mocks)
39
+ * [https://github.com/rspec/rspec-rails](https://github.com/rspec/rspec-rails)
@@ -0,0 +1,3 @@
1
+ require 'rspec/core'
2
+ require 'rspec/version'
3
+
@@ -0,0 +1,5 @@
1
+ module RSpec # :nodoc:
2
+ module Version # :nodoc:
3
+ STRING = '3.4.0'
4
+ end
5
+ end
@@ -0,0 +1,1947 @@
1
+ ### 3.4.2 / 2016-01-26
2
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.1...v3.4.2)
3
+
4
+ Bug Fixes:
5
+
6
+ * Fix `rspec --profile` when an example calls `abort` or `exit`.
7
+ (Bradley Schaefer, #2144)
8
+ * Fix `--drb` so that when no DRb server is running, it prevents
9
+ the DRb connection error from being listed as the cause of all
10
+ expectation failures. (Myron Marston, #2156)
11
+ * Fix syntax highlighter so that it works when the `coderay` gem is
12
+ installed as a rubygem but not already available on your load path
13
+ (as happens when you use bundler). (Myron Marston, #2159)
14
+
15
+ ### 3.4.1 / 2015-11-18
16
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.0...v3.4.1)
17
+
18
+ Bug Fixes:
19
+
20
+ * Fix backtrace formatter to handle backtraces that are `nil`.
21
+ (Myron Marston, #2118)
22
+
23
+ ### 3.4.0 / 2015-11-11
24
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.2...v3.4.0)
25
+
26
+ Enhancements:
27
+
28
+ * Combine multiple `--pattern` arguments making them equivalent to
29
+ `--pattern=1,2,...,n`. (Jon Rowe, #2002)
30
+ * Improve `inspect` and `to_s` output for `RSpec::Core::Example`
31
+ objects, replacing Ruby's excessively verbose output. (Gavin Miller, #1922)
32
+ * Add `silence_filter_announcements` configuration option.
33
+ (David Raffensperger, #2007)
34
+ * Add optional `example_finished` notification to the reporter protocol for
35
+ when you don't care about the example outcome. (Jon Rowe, #2013)
36
+ * Switch `--bisect` to a recursion-based bisection algorithm rather than
37
+ a permutation-based one. This better handles cases where an example
38
+ depends upon multiple other examples instead of just one and minimizes
39
+ the number of runs necessary to determine that an example set cannot be
40
+ minimized further. (Simon Coffey, #1997)
41
+ * Allow simple filters (e.g. `:symbol` key only) to be triggered by truthey
42
+ values. (Tim Mertens, #2035)
43
+ * Remove unneeded warning about need for `ansicon` on Windows when using
44
+ RSpec's `--color` option. (Ashley Engelund, #2038)
45
+ * Add option to configure RSpec to raise errors when issuing warnings.
46
+ (Jon Rowe, #2052)
47
+ * Append the root `cause` of a failure or error to the printed failure
48
+ output when a `cause` is available. (Adam Magan)
49
+ * Stop rescuing `NoMemoryError`, `SignalExcepetion`, `Interrupt` and
50
+ `SystemExit`. It is dangerous to interfere with these. (Myron Marston, #2063)
51
+ * Add `config.project_source_dirs` setting which RSpec uses to determine
52
+ if a backtrace line comes from your project source or from some
53
+ external library. It defaults to `spec`, `lib` and `app` but can be
54
+ configured differently. (Myron Marston, #2088)
55
+ * Improve failure line detection so that it looks for the failure line
56
+ in any project source directory instead of just in the spec file.
57
+ In addition, if no backtrace lines can be found from a project source
58
+ file, we fall back to displaying the source of the first backtrace
59
+ line. This should virtually eliminate the "Unable to find matching
60
+ line from backtrace" messages. (Myron Marston, #2088)
61
+ * Add support for `:extra_failure_lines` example metadata that will
62
+ be appended to the failure output. (bootstraponline, #2092).
63
+ * Add `RSpec::Core::Example#duplicate_with` to produce new examples
64
+ with cloned metadata. (bootstraponline, #2098)
65
+ * Add `RSpec::Core::Configuration#on_example_group_definition` to register
66
+ hooks to be invoked when example groups are created. (bootstraponline, #2094)
67
+ * Add `add_example` and `remove_example` to `RSpec::Core::ExampleGroup` to
68
+ allow manipulating an example groups examples. (bootstraponline, #2095)
69
+ * Display multiline failure source lines in failure output when Ripper is
70
+ available (MRI >= 1.9.2, and JRuby >= 1.7.5 && < 9.0.0.0.rc1).
71
+ (Yuji Nakayama, #2083)
72
+ * Add `max_displayed_failure_line_count` configuration option
73
+ (defaults to 10). (Yuji Nakayama, #2083)
74
+ * Enhance `fail_fast` option so it can take a number (e.g. `--fail-fast=3`)
75
+ to force the run to abort after the specified number of failures.
76
+ (Jack Scotti, #2065)
77
+ * Syntax highlight the failure snippets in text formatters when `color`
78
+ is enabled and the `coderay` gem is installed on a POSIX system.
79
+ (Myron Marston, #2109)
80
+
81
+ Bug Fixes:
82
+
83
+ * Lock `example_status_persistence_file` when reading from and writing
84
+ to it to prevent race conditions when multiple processes try to use
85
+ it. (Ben Woosley, #2029)
86
+ * Fix regression in 3.3 that caused spec file names with square brackets in
87
+ them (such as `1[]_spec.rb`) to not be loaded properly. (Myron Marston, #2041)
88
+ * Fix output encoding issue caused by ASCII literal on 1.9.3 (Jon Rowe, #2072)
89
+ * Fix requires in `rspec/core/rake_task.rb` to avoid double requires
90
+ seen by some users. (Myron Marston, #2101)
91
+
92
+ ### 3.3.2 / 2015-07-15
93
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.1...v3.3.2)
94
+
95
+ Bug Fixes:
96
+
97
+ * Fix formatters to handle exceptions for which `backtrace` returns `nil`.
98
+ (Myron Marston, #2023)
99
+ * Fix duplicate formatter detection so that it allows subclasses of formatters
100
+ to be added. (Sebastián Tello, #2019)
101
+
102
+ ### 3.3.1 / 2015-06-18
103
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.0...v3.3.1)
104
+
105
+ Bug Fixes:
106
+
107
+ * Correctly run `before(:suite)` (and friends) in the context of an example
108
+ group instance, thus making the expected RSpec environment available.
109
+ (Jon Rowe, #1986)
110
+
111
+ ### 3.3.0 / 2015-06-12
112
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.3...v3.3.0)
113
+
114
+ Enhancements:
115
+
116
+ * Expose the reporter used to run examples via `RSpec::Core::Example#reporter`.
117
+ (Jon Rowe, #1866)
118
+ * Make `RSpec::Core::Reporter#message` a public supported API. (Jon Rowe, #1866)
119
+ * Allow custom formatter events to be published via
120
+ `RSpec::Core::Reporter#publish(event_name, hash_of_attributes)`. (Jon Rowe, #1869)
121
+ * Remove dependency on the standard library `Set` and replace with `RSpec::Core::Set`.
122
+ (Jon Rowe, #1870)
123
+ * Assign a unique id to each example and group so that they can be
124
+ uniquely identified, even for shared examples (and similar situations)
125
+ where the location isn't unique. (Myron Marston, #1884)
126
+ * Use the example id in the rerun command printed for failed examples
127
+ when the location is not unique. (Myron Marston, #1884)
128
+ * Add `config.example_status_persistence_file_path` option, which is
129
+ used to persist the last run status of each example. (Myron Marston, #1888)
130
+ * Add `:last_run_status` metadata to each example, which indicates what
131
+ happened the last time an example ran. (Myron Marston, #1888)
132
+ * Add `--only-failures` CLI option which filters to only the examples
133
+ that failed the last time they ran. (Myron Marston, #1888)
134
+ * Add `--next-failure` CLI option which allows you to repeatedly focus
135
+ on just one of the currently failing examples, then move on to the
136
+ next failure, etc. (Myron Marston, #1888)
137
+ * Make `--order random` ordering stable, so that when you rerun a
138
+ subset with a given seed, the examples will be order consistently
139
+ relative to each other. (Myron Marston, #1908)
140
+ * Set example group constant earlier so errors when evaluating the context
141
+ include the example group name (Myron Marson, #1911)
142
+ * Make `let` and `subject` threadsafe. (Josh Cheek, #1858)
143
+ * Add version information into the JSON formatter. (Mark Swinson, #1883)
144
+ * Add `--bisect` CLI option, which will repeatedly run your suite in
145
+ order to isolate the failures to the smallest reproducible case.
146
+ (Myron Marston, #1917)
147
+ * For `config.include`, `config.extend` and `config.prepend`, apply the
148
+ module to previously defined matching example groups. (Eugene Kenny, #1935)
149
+ * When invalid options are parsed, notify users where they came from
150
+ (e.g. `.rspec` or `~/.rspec` or `ENV['SPEC_OPTS']`) so they can
151
+ easily find the source of the problem. (Myron Marston, #1940)
152
+ * Add pending message contents to the json formatter output. (Jon Rowe, #1949)
153
+ * Add shared group backtrace to the output displayed by the built-in
154
+ formatters for pending examples that have been fixed. (Myron Marston, #1946)
155
+ * Add support for `:aggregate_failures` metadata. Tag an example or
156
+ group with this metadata and it'll use rspec-expectations'
157
+ `aggregate_failures` feature to allow multiple failures in an example
158
+ and list them all, rather than aborting on the first failure. (Myron
159
+ Marston, #1946)
160
+ * When no formatter implements #message add a fallback to prevent those
161
+ messages being lost. (Jon Rowe, #1980)
162
+ * Profiling examples now takes into account time spent in `before(:context)`
163
+ hooks. (Denis Laliberté, Jon Rowe, #1971)
164
+ * Improve failure output when an example has multiple exceptions, such
165
+ as one from an `it` block and one from an `after` block. (Myron Marston, #1985)
166
+
167
+ Bug Fixes:
168
+
169
+ * Handle invalid UTF-8 strings within exception methods. (Benjamin Fleischer, #1760)
170
+ * Fix Rake Task quoting of file names with quotes to work properly on
171
+ Windows. (Myron Marston, #1887)
172
+ * Fix `RSpec::Core::RakeTask#failure_message` so that it gets printed
173
+ when the task failed. (Myron Marston, #1905)
174
+ * Make `let` work properly when defined in a shared context that is applied
175
+ to an individual example via metadata. (Myron Marston, #1912)
176
+ * Ensure `rspec/autorun` respects configuration defaults. (Jon Rowe, #1933)
177
+ * Prevent modules overriding example group defined methods when included,
178
+ prepended or extended by config defined after an example group. (Eugene Kenny, #1935)
179
+ * Fix regression which caused shared examples to be mistakenly run when specs
180
+ where filtered to a particular location. (Ben Axnick, #1963)
181
+ * Fix time formatting logic so that it displays 70 seconds as "1 minute,
182
+ 10 seconds" rather than "1 minute, 1 second". (Paul Brennan, #1984)
183
+ * Fix regression where the formatter loader would allow duplicate formatters.
184
+ (Jon Rowe, #1990)
185
+
186
+ ### 3.2.3 / 2015-04-06
187
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.2...v3.2.3)
188
+
189
+ Bug Fixes:
190
+
191
+ * Fix how the DSL methods are defined so that RSpec is compatible with
192
+ gems that define methods of the same name on `Kernel` (such as
193
+ the `its-it` gem). (Alex Kwiatkowski, Ryan Ong, #1907)
194
+ * Fix `before(:context) { skip }` so that it does not wrongly cause the
195
+ spec suite to exit with a non-zero status when no examples failed.
196
+ (Myron Marston, #1926)
197
+
198
+ ### 3.2.2 / 2015-03-11
199
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.1...v3.2.2)
200
+
201
+ Bug Fixes:
202
+
203
+ * Fix regression in 3.2.0 that allowed tag-filtered examples to
204
+ run even if there was a location filter applied to the spec
205
+ file that was intended to limit the file to other examples.
206
+ (#1894, Myron Marston)
207
+
208
+ ### 3.2.1 / 2015-02-23
209
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.0...v3.2.1)
210
+
211
+ Bug Fixes:
212
+
213
+ * Notify start-of-run seed _before_ `start` notification rather than
214
+ _after_ so that formatters like Fuubar work properly. (Samuel Esposito, #1882)
215
+
216
+ ### 3.2.0 / 2015-02-03
217
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.7...v3.2.0)
218
+
219
+ Enhancements:
220
+
221
+ * Improve the `inspect` output of example groups. (Mike Dalton, #1687)
222
+ * When rake task fails, only output the command if `verbose` flag is
223
+ set. (Ben Snape, #1704)
224
+ * Add `RSpec.clear_examples` as a clear way to reset examples in between
225
+ spec runs, whilst retaining user configuration. (Alexey Fedorov, #1706)
226
+ * Reduce string allocations when defining and running examples by 70%
227
+ and 50% respectively. (Myron Marston, #1738)
228
+ * Removed dependency on pathname from stdlib. (Sam Phippen, #1703)
229
+ * Improve the message presented when a user hits Ctrl-C.
230
+ (Alex Chaffee #1717, #1742)
231
+ * Improve shared example group inclusion backtrace displayed
232
+ in failed example output so that it works for all methods
233
+ of including shared example groups and shows all inclusion
234
+ locations. (Myron Marston, #1763)
235
+ * Issue seed notification at start (as well as the end) of the reporter
236
+ run. (Arlandis Word, #1761)
237
+ * Improve the documentation of around hooks. (Jim Kingdon, #1772)
238
+ * Support prepending of modules into example groups from config and allow
239
+ filtering based on metadata. (Arlandis Word, #1806)
240
+ * Emit warnings when `:suite` hooks are registered on an example group
241
+ (where it has always been ignored) or are registered with metadata
242
+ (which has always been ignored). (Myron Marston, #1805)
243
+ * Provide a friendly error message when users call RSpec example group
244
+ APIs (e.g. `context`, `describe`, `it`, `let`, `before`, etc) from
245
+ within an example where those APIs are unavailable. (Myron Marston, #1819)
246
+ * Provide a friendly error message when users call RSpec example
247
+ APIs (e.g. `expect`, `double`, `stub_const`, etc) from
248
+ within an example group where those APIs are unavailable.
249
+ (Myron Marston, #1819)
250
+ * Add new `RSpec::Core::Sandbox.sandboxed { }` API that facilitates
251
+ testing RSpec with RSpec, allowing you to define example groups
252
+ and example from within an example without affecting the global
253
+ `RSpec.world` state. (Tyler Ball, 1808)
254
+ * Apply line-number filters only to the files they are scoped to,
255
+ allowing you to mix filtered and unfiltered files. (Myron Marston, #1839)
256
+ * When dumping pending examples, include the failure details so that you
257
+ don't have to un-pend the example to see it. (Myron Marston, #1844)
258
+ * Make `-I` option support multiple values when separated by
259
+ `File::PATH_SEPARATOR`, such as `rspec -I foo:bar`. This matches
260
+ the behavior of Ruby's `-I` option. (Fumiaki Matsushima, #1855).
261
+ * Treat each example as having a singleton example group for the
262
+ purposes of applying metadata-based features that normally apply
263
+ to example groups to individually tagged examples. For example,
264
+ `RSpec.shared_context "Uses redis", :uses_redis` will now apply
265
+ to individual examples tagged with `:uses_redis`, as will
266
+ `config.include RedisHelpers, :uses_redis`, and
267
+ `config.before(:context, :uses_redis) { }`, etc. (Myron Marston, #1749)
268
+
269
+ Bug Fixes:
270
+
271
+ * When assigning generated example descriptions, surface errors
272
+ raised by `matcher.description` in the example description.
273
+ (Myron Marston, #1771)
274
+ * Don't consider expectations from `after` hooks when generating
275
+ example descriptions. (Myron Marston, #1771)
276
+ * Don't apply metadata-filtered config hooks to examples in groups
277
+ with matching metadata when those examples override the parent
278
+ metadata value to not match. (Myron Marston, #1796)
279
+ * Fix `config.expect_with :minitest` so that `skip` uses RSpec's
280
+ implementation rather than Minitest's. (Jonathan Rochkind, #1822)
281
+ * Fix `NameError` caused when duplicate example group aliases are defined and
282
+ the DSL is not globally exposed. (Aaron Kromer, #1825)
283
+ * When a shared example defined in an external file fails, use the host
284
+ example group (from a loaded spec file) for the re-run command to
285
+ ensure the command will actually work. (Myron Marston, #1835)
286
+ * Fix location filtering to work properly for examples defined in
287
+ a nested example group within a shared example group defined in
288
+ an external file. (Bradley Schaefer, Xavier Shay, Myron Marston, #1837)
289
+ * When a pending example fails (as expected) due to a mock expectation,
290
+ set `RSpec::Core::Example::ExecutionResult#pending_exception` --
291
+ previously it was not being set but should have been. (Myron Marston, #1844)
292
+ * Fix rake task to work when `rspec-core` is installed in a directory
293
+ containing a space. (Guido Günther, #1845)
294
+ * Fix regression in 3.1 that caused `describe Regexp` to raise errors.
295
+ (Durran Jordan, #1853)
296
+ * Fix regression in 3.x that caused the profile information to be printed
297
+ after the summary. (Max Lincoln, #1857)
298
+ * Apply `--seed` before loading `--require` files so that required files
299
+ can access the provided seed. (Myron Marston, #1745)
300
+ * Handle `RSpec::Core::Formatters::DeprecationFormatter::FileStream` being
301
+ reopened with an IO stream, which sometimes happens with spring.
302
+ (Kevin Mook, #1757)
303
+
304
+ ### 3.1.7 / 2014-10-11
305
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.6...v3.1.7)
306
+
307
+ Bug Fixes:
308
+
309
+ * Fix `Metadata.relative_path` so that for a current directory of
310
+ `/foo/bar`, `/foo/bar_1` is not wrongly converted to `._1`.
311
+ (Akos Vandra, #1730)
312
+ * Prevent constant lookup mistakenly finding `RSpec::ExampleGroups` generated
313
+ constants on 1.9.2 by appending a trailing `_` to the generated names.
314
+ (Jon Rowe, #1737)
315
+ * Fix bug in `:pending` metadata. If it got set in any way besides passing
316
+ it as part of the metadata literal passed to `it` (such as by using
317
+ `define_derived_metadata`), it did not have the desired effect,
318
+ instead marking the example as `:passed`. (Myron Marston, #1739)
319
+
320
+ ### 3.1.6 / 2014-10-08
321
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.5...v3.1.6)
322
+
323
+ Bug Fixes:
324
+
325
+ * Fix regression in rake task pattern handling, that prevented patterns
326
+ that were relative from the current directory rather than from `spec`
327
+ from working properly. (Myron Marston, #1734)
328
+ * Prevent rake task from generating duplicate load path entries.
329
+ (Myron Marston, #1735)
330
+
331
+ ### 3.1.5 / 2014-09-29
332
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.4...v3.1.5)
333
+
334
+ Bug Fixes:
335
+
336
+ * Fix issue with the rake task incorrectly escaping strings on Windows.
337
+ (Jon Rowe #1718)
338
+ * Support absolute path patterns. While this wasn't officially supported
339
+ previously, setting `rake_task.pattern` to an absolute path pattern in
340
+ RSpec 3.0 and before worked since it delegated to `FileList` internally
341
+ (but now just forwards the pattern on to the `rspec` command).
342
+ (Myron Marston, #1726)
343
+
344
+ ### 3.1.4 / 2014-09-18
345
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.3...v3.1.4)
346
+
347
+ Bug Fixes:
348
+
349
+ * Fix implicit `subject` when using `describe false` or `describe nil`
350
+ so that it returns the provided primitive rather than the string
351
+ representation. (Myron Marston, #1710)
352
+ * Fix backtrace filtering to allow code in subdirectories of your
353
+ current working directory (such as vendor/bundle/...) to be filtered
354
+ from backtraces. (Myron Marston, #1708)
355
+
356
+ ### 3.1.3 / 2014-09-15
357
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.2...v3.1.3)
358
+
359
+ Bug Fixes:
360
+
361
+ * Fix yet another regression in rake task pattern handling, to allow
362
+ `task.pattern = FileList["..."]` to work. That was never intended
363
+ to be supported but accidentally worked in 3.0 and earlier.
364
+ (Myron Marston, #1701)
365
+ * Fix pattern handling so that files are normalized to absolute paths
366
+ before subtracting the `--exclude-pattern` matched files from the
367
+ `--pattern` matched files so that it still works even if the patterns
368
+ are in slightly different forms (e.g. one starting with `./`).
369
+ (Christian Nelson, #1698)
370
+
371
+ ### 3.1.2 / 2014-09-08
372
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.1...v3.1.2)
373
+
374
+ Bug Fixes:
375
+
376
+ * Fix another regression in rake task pattern handling, so that patterns
377
+ that start with `./` still work. (Christian Nelson, #1696)
378
+
379
+ ### 3.1.1 / 2014-09-05
380
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.0...v3.1.1)
381
+
382
+ Bug Fixes:
383
+
384
+ * Fix a regression in rake task pattern handling, so that `rake_task.pattern = array`
385
+ works again. While we never intended to support array values (or even knew that worked!),
386
+ the implementation from 3.0 and earlier used `FileList` internally, which allows arrays.
387
+ The fix restores the old behavior. (Myron Marston, #1694)
388
+
389
+ ### 3.1.0 / 2014-09-04
390
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.4...v3.1.0)
391
+
392
+ Enhancements:
393
+
394
+ * Update files generated by `rspec --init` so that warnings are enabled
395
+ in commented out section of `spec_helper` rather than `.rspec` so users
396
+ have to consciously opt-in to the setting. (Andrew Hooker, #1572)
397
+ * Update `spec_helper` generated by `rspec --init` so that it sets the new
398
+ rspec-expectations `include_chain_clauses_in_custom_matcher_descriptions`
399
+ config option (which will be on by default in RSpec 4) and also sets the
400
+ rspec-mocks `verify_partial_doubles` option (which will also default
401
+ to on in RSpec 4). (Myron Marston, #1647)
402
+ * Provide an `inspect` output for example procsy objects (used in around
403
+ hooks) that doesn't make them look like procs. (Jon Rowe, #1620)
404
+ * Remove a few unneeded `require` statements from
405
+ `rspec/core/rake_task.rb`, making it even more lighterweight.
406
+ (Myron Marston, #1640)
407
+ * Allow rspec-core to be used when neither rspec-mocks or
408
+ rspec-expectations are installed, without requiring any
409
+ user configuration. (Sam Phippen, Myron Marston, #1615)
410
+ * Don't filter out gems from backtraces by default. (The RSpec
411
+ gems will still be filtered). User feedback has indicated
412
+ that including gems in default backtraces will be useful.
413
+ (Myron Marston, #1641)
414
+ * Add new `config.filter_gems_from_backtrace "rack", "rake"` API
415
+ to easily filter the named gems from backtraces. (Myron Marston, #1682)
416
+ * Fix default backtrace filters so that the RSpec binary is
417
+ excluded when installing RSpec as a bundler `:git` dependency.
418
+ (Myron Marston, #1648)
419
+ * Simplify command generated by the rake task so that it no longer
420
+ includes unnecessary `-S`. (Myron Marston, #1559)
421
+ * Add `--exclude-pattern` CLI option, `config.exclude_pattern =` config
422
+ option and `task.exclude_pattern =` rake task config option. Matching
423
+ files will be excluded. (John Gesimondo, Myron Marston, #1651, #1671)
424
+ * When an around hook fails to execute the example, mark it as
425
+ pending (rather than passing) so the user is made aware of the
426
+ fact that the example did not actually run. (Myron Marston, #1660)
427
+ * Remove dependency on `FileUtils` from the standard library so that users do
428
+ not get false positives where their code relies on it but they are not
429
+ requiring it. (Sam Phippen, #1565)
430
+
431
+ Bug Fixes:
432
+
433
+ * Fix rake task `t.pattern =` option so that it does not run all specs
434
+ when it matches no files, by passing along a `--pattern` option to
435
+ the `rspec` command, rather than resolving the file list and passing
436
+ along the files individually. (Evgeny Zislis, #1653)
437
+ * Fix rake task default pattern so that it follows symlinks properly.
438
+ (Myron Marston, #1672)
439
+ * Fix default pattern used with `rspec` command so that it follows
440
+ symlinks properly. (Myron Marston, #1672)
441
+ * Change how we assign constant names to example group classes so that
442
+ it avoids a problem with `describe "Core"`. (Daniela Wellisz, #1679)
443
+ * Handle rendering exceptions that have a different encoding than that
444
+ of their original source file. (Jon Rowe, #1681)
445
+ * Allow access to message_lines without colour for failed examples even
446
+ when they're part of a shared example group. (tomykaira, #1689)
447
+
448
+ ### 3.0.4 / 2014-08-14
449
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.3...v3.0.4)
450
+
451
+ Bug Fixes:
452
+
453
+ * Fix processing order of CLI options so that if `config.files_to_run`
454
+ is accessed from a file loaded by `--require`, `--pattern` is still
455
+ applied. (Myron Marston, #1652)
456
+ * Fix `config.pattern=` so that it still takes affect even if
457
+ `config.files_to_run` has already been accessed. (Myron Marston, #1652)
458
+
459
+ ### 3.0.3 / 2014-07-21
460
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.2...v3.0.3)
461
+
462
+ Bug Fixes:
463
+
464
+ * Properly convert both parts of a description into strings before
465
+ concatenation. (@nicklink483, #1636)
466
+ * Exclude the working directory when figuring out folders to ignore.
467
+ (Jon Rowe, Myron Marston, #1616)
468
+ * Allow `::RSpec::Core::Notifications::FailedExampleNotification#message_lines`
469
+ to be accessed without a colouriser. (@tomykaira, #1637)
470
+
471
+ ### 3.0.2 / 2014-06-19
472
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.1...v3.0.2)
473
+
474
+ Bug Fixes:
475
+
476
+ * Fix regression in CLI option handling that prevented `--tag slow`
477
+ passed at the command line from overriding `--tag ~slow` in `.rspec`.
478
+ (Colin Jones, #1602)
479
+ * Fix metadata `:example_group` deprecation warning so that it gets
480
+ issued at the call site of the configuration that specified it as
481
+ a filter rather than later when an example group is defined.
482
+ (Myron Marston, #1562)
483
+ * Make the line that is printed when a shared example group fails indicating
484
+ where the concrete example group is white, separating it from the stack trace
485
+ that is produced for the failure. (Sam Phippen, Jon Rowe, #1606)
486
+
487
+ ### 3.0.1 / 2014-06-12
488
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0...v3.0.1)
489
+
490
+ Bug Fixes:
491
+
492
+ * Fix a couple ruby warnings caused by rspec-core when loaded.
493
+ (Prem Sichanugrist, #1584)
494
+ * Example groups named `Config` will no longer cause a Ruby warning to be
495
+ issued. (Jimmy Cuadra, #1580)
496
+
497
+ ### 3.0.0 / 2014-06-01
498
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.rc1...v3.0.0)
499
+
500
+ Bug Fixes:
501
+
502
+ * Fix `BaseTextFormatter` so that it does not re-close a closed output
503
+ stream. (Myron Marston)
504
+ * Fix regression in metadata that caused the metadata hash of a top-level
505
+ example group to have a `:parent_example_group` key even though it has
506
+ no parent example group. (Myron Marston)
507
+
508
+ Enhancements:
509
+
510
+ * Alter the default `spec_helper.rb` to no longer recommend
511
+ `config.full_backtrace = true` see #1536 for discussion. (Jon Rowe)
512
+
513
+ ### 3.0.0.rc1 / 2014-05-18
514
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.beta2...v3.0.0.rc1)
515
+
516
+ Breaking Changes for 3.0.0:
517
+
518
+ * Change `described_class` so that in a nested group like `describe
519
+ MyClass`, it returns `MyClass` rather than the outer group's described
520
+ class. (Myron Marston)
521
+ * Refactor filter manager so that it no longer subclasses Hash and has a
522
+ tighter, more domain-specific interface. (Sergey Pchelincev)
523
+ * Remove legacy colours definitions from `BaseTextFormatter`. (Jon Rowe)
524
+ * Remove console color definitions from `BaseTextFormatter`. (Jon Rowe)
525
+ * Restructure example group metadata so that the computed keys are
526
+ exposed directly off of the metadata hash rather than being on
527
+ a nested `:example_group` subhash. In addition, the parent example
528
+ group metadata is now available as `[:parent_example_group]` rather
529
+ than `[:example_group][:example_group]`. Deprecated access via the
530
+ old key structure is still provided. (Myron Marston)
531
+ * Remove `:describes` metadata key. It duplicates `:described_class`
532
+ for no good reason. Deprecated access via `:describes` is still
533
+ provided. (Myron Marston)
534
+ * Rename `:example_group_block` metadata key to `:block`.
535
+ (Myron Marston)
536
+ * Remove deprecated `RSpec::Core::Example#options`. (Myron Marston)
537
+ * Move `BaseTextFormatter#colorize_summary` to `SummaryNotification#colorize_with`
538
+ (Jon Rowe).
539
+ * `describe some_hash` treated `some_hash` as metadata in RSpec 2.x but
540
+ will treat it as the described object in RSpec 3.0. Metadata must
541
+ always come after the description args. (Myron Marston)
542
+ * Remove deprecated `display_name` alias of `ExampleGroup.description`.
543
+ (Myron Marston)
544
+ * Remove deprecated `describes` alias of `ExampleGroup.described_class`.
545
+ (Myron Marston)
546
+ * Remove deprecated `RSpec::Core::ExampleGroup.alias_it_behaves_like_to`.
547
+ Use `RSpec::Core::Configuration#alias_it_behaves_like_to` instead.
548
+ (Myron Marston)
549
+ * Remove deprecated `RSpec::Core::ExampleGroup.alias_example_to`.
550
+ Use `RSpec::Core::Configuration#alias_example_to` instead.
551
+ (Myron Marston)
552
+ * Removed `focused` example alias and change example/group aliases
553
+ `fit`, `focus`, `fcontext` and `fdescribe` to no longer include
554
+ `:focused => true` metadata. They only contain `:focus => true`
555
+ metadata now. This means that you will need to filter them with
556
+ `filter_run :focus`, not `filter_run :focused`. (Myron Marston)
557
+ * Remove `--line-number` filtering. It's semantically dubious since it's
558
+ a global filter (potentially applied to multiple files) but there's no
559
+ meaningful connection between the same line number in multiple files.
560
+ Instead use the `rspec path/to/spec.rb:23:46` form, which is terser
561
+ and makes more sense as it is scoped to a file. (Myron Marston)
562
+ * Remove `--default_path` as an alias for `--default-path`. (Jon Rowe)
563
+ * Remove deprecated `share_examples_for`. There's still
564
+ `shared_examples` and `shared_examples_for`. (Myron Marston)
565
+ * Rename `RSpec::Core::Configuration#warnings` to
566
+ `RSpec::Core::Configuration#warnings?` since it's a boolean flag.
567
+ (Myron Marston)
568
+ * RSpec's global state is no longer reset after a spec run. This gives
569
+ more flexibility to alternate runners to decide when and if they
570
+ want the state reset. Alternate runners are now responsible for
571
+ calling this (or doing a similar reset) if they are going to run
572
+ the spec suite multiple times in the same process. (Sam Phippen)
573
+ * Merge `RSpec::Core::CommandLine` (never formally declared public)
574
+ into `RSpec::Core::Runner`. (Myron Marston)
575
+ * Remove `color_enabled` as an alias of `color`. (Jon Rowe)
576
+ * Remove `backtrace_cleaner` as an alias of `backtrace_formatter`. (Jon Rowe)
577
+ * Remove `filename_pattern` as an alias of `pattern`. (Jon Rowe)
578
+ * Extract support for legacy formatters to `rspec-legacy_formatters`. (Jon Rowe)
579
+ * `RSpec::Configuration#formatters` now returns a dup to prevent mutation. (Jon Rowe)
580
+ * Replace `stdlib` as an available expectation framework with `test_unit` and
581
+ `minitest`. (Aaron Kromer)
582
+ * Remove backtrace formatting helpers from `BaseTextFormatter`. (Jon Rowe)
583
+ * Extract profiler support to `ProfileFormatter` and `ProfileNotification`.
584
+ Formatters should implement `dump_profile` if they wish to respond to `--profile`.
585
+ (Jon Rowe)
586
+ * Extract remaining formatter state to reporter and notifications. Introduce
587
+ `ExamplesNotification` to share information about examples that was previously
588
+ held in `BaseFormatter`. (Jon Rowe)
589
+
590
+ Enhancements:
591
+
592
+ * Add `config.default_formatter` attribute, which can be used to set a
593
+ formatter which will only be used if no other formatter is set
594
+ (e.g. via `--formatter`). (Myron Marston)
595
+ * Support legacy colour definitions in `LegacyFormatterAdaptor`. (Jon Rowe)
596
+ * Migrate `execution_result` (exposed by metadata) from a hash to a
597
+ first-class object with appropriate attributes. `status` is now
598
+ stored and returned as a symbol rather than a string. It retains
599
+ deprecated hash behavior for backwards compatibility. (Myron Marston)
600
+ * Provide console code helper for formatters. (Jon Rowe)
601
+ * Use raw ruby hashes for the metadata hashes rather than a subclass of
602
+ a hash. Computed metadata entries are now computed in advance rather
603
+ than being done lazily on first access. (Myron Marston)
604
+ * Add `:block` metadata entry to the example metadata, bringing
605
+ parity with `:block` in the example group metadata. (Myron Marston)
606
+ * Add `fspecify` and `fexample` as aliases of `specify` and `example`
607
+ with `:focus => true` metadata for parity with `fit`. (Myron Marston)
608
+ * Add legacy support for `colorize_summary`. (Jon Rowe)
609
+ * Restructure runner so it can be more easily customized in a subclass
610
+ for an alternate runner. (Ben Hoskings)
611
+ * Document `RSpec::Core::ConfigurationOptions` as an officially
612
+ supported public API. (Myron Marston)
613
+ * Add `--deprecation-out` CLI option which directs deprecation warnings
614
+ to the named file. (Myron Marston)
615
+ * Minitest 5 compatability for `expect_with :stdlib` (now available as
616
+ `expect_with :minitest`). (Xavier Shay)
617
+ * Reporter now notifies formatters of the load time of RSpec and your
618
+ specs via `StartNotification` and `SummaryNotification`. (Jon Rowe)
619
+ * Add `disable_monkey_patching!` config option that disables all monkey
620
+ patching from whatever pieces of RSpec you use. (Alexey Fedorov)
621
+ * Add `Pathname` support for setting all output streams. (Aaron Kromer)
622
+ * Add `config.define_derived_metadata`, which can be used to apply
623
+ additional metadata to all groups or examples that match a given
624
+ filter. (Myron Marston)
625
+ * Provide formatted and colorized backtraces via `FailedExampleNotification`
626
+ and send `PendingExampleFixedNotifications` when the error is due to a
627
+ passing spec you expect to fail. (Jon Rowe)
628
+ * Add `dump_profile` to formatter API to allow formatters to implement
629
+ support for `--profile`. (Jon Rowe)
630
+ * Allow colourising text via `ConsoleCodes` with RSpec 'states'
631
+ (e.g. `:success`, `:failure`) rather than direct colour codes. (Jon Rowe)
632
+ * Expose `fully_formatted` methods off the formatter notification objects
633
+ that make it easy for a custom formatter to produce formatted output
634
+ like rspec-core's. (Myron Marston)
635
+
636
+ Bug Fixes:
637
+
638
+ * Fix `spec_helper.rb` file generated by `rspec --init` so that the
639
+ recommended settings correctly use the documentation formatter
640
+ when running one file. (Myron Marston)
641
+ * Fix ordering problem where descriptions were generated after
642
+ tearing down mocks, which resulted in unexpected exceptions.
643
+ (Bradley Schaefer, Aaron Kromer, Andrey Savchenko)
644
+ * Allow a symbol to be used as an implicit subject (e.g. `describe
645
+ :foo`). (Myron Marston)
646
+ * Prevent creating an isolated context (i.e. using `RSpec.describe`) when
647
+ already inside a context. There is no reason to do this, and it could
648
+ potentially cause unexpected bugs. (Xavier Shay)
649
+ * Fix shared example group scoping so that when two shared example
650
+ groups share the same name at different levels of nested contexts,
651
+ the one in the nearest context is used. (Myron Marston)
652
+ * Fix `--warnings` option so that it enables warnings immediately so
653
+ that it applies to files loaded by `--require`. (Myron Marston)
654
+ * Issue a warning when you set `config.deprecation_stream` too late for
655
+ it to take effect because the reporter has already been setup. (Myron Marston)
656
+ * Add the full `RSpec::Core::Example` interface to the argument yielded
657
+ to `around` hooks. (Myron Marston)
658
+ * Line number always takes precendence when running specs with filters.
659
+ (Xavier Shay)
660
+ * Ensure :if and :unless metadata filters are treated as a special case
661
+ and are always in-effect. (Bradley Schaefer)
662
+ * Ensure the currently running installation of RSpec is used when
663
+ the rake task shells out to `rspec`, even if a newer version is also
664
+ installed. (Postmodern)
665
+ * Using a legacy formatter as default no longer causes an infinite loop.
666
+ (Xavier Shay)
667
+
668
+ ### 3.0.0.beta2 / 2014-02-17
669
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.beta1...v3.0.0.beta2)
670
+
671
+ Breaking Changes for 3.0.0:
672
+
673
+ * Make `mock_with` option more strict. Strings are no longer supported
674
+ (e.g. `mock_with "mocha"`) -- use a symbol instead. Also, unrecognized
675
+ values will now result in an error rather than falling back to the
676
+ null mocking adapter. If you want to use the null mocking adapter,
677
+ use `mock_with :nothing` (as has been documented for a long time).
678
+ (Myron Marston)
679
+ * Remove support for overriding RSpec's built-in `:if` and `:unless`
680
+ filters. (Ashish Dixit)
681
+ * Custom formatters are now required to call
682
+ `RSpec::Core::Formatters.register(formatter_class, *notifications)`
683
+ where `notifications` is the list of events the formatter wishes to
684
+ be notified about. Notifications are handled by methods matching the
685
+ names on formatters. This allows us to add or remove notifications
686
+ without breaking existing formatters. (Jon Rowe)
687
+ * Change arguments passed to formatters. Rather than passing multiple
688
+ arguments (which limits are ability to add additional arguments as
689
+ doing so would break existing formatters), we now pass a notification
690
+ value object that exposes the same data via attributes. This will
691
+ allow us to add new bits of data to a notification event without
692
+ breaking existing formatters. (Jon Rowe)
693
+ * Remove support for deprecated `:alias` option for
694
+ `RSpec.configuration.add_setting`. (Myron Marston)
695
+ * Remove support for deprecated `RSpec.configuration.requires = [...]`.
696
+ (Myron Marston)
697
+ * Remove support for deprecated `--formatter` CLI option. (Myron Marston)
698
+ * Remove support for deprecated `--configure` CLI option. (Myron Marston)
699
+ * Remove support for deprecated `RSpec::Core::RakeTask#spec_opts=`.
700
+ (Myron Marston)
701
+ * An example group level `pending` block or `:pending` metadata now executes
702
+ the example and cause a failure if it passes, otherwise it will be pending if
703
+ it fails. The old "never run" behaviour is still used for `xexample`, `xit`,
704
+ and `xspecify`, or via a new `skip` method or `:skip` metadata option.
705
+ (Xavier Shay)
706
+ * After calling `pending` inside an example, the remainder of the example will
707
+ now be run. If it passes a failure is raised, otherwise the example is marked
708
+ pending. The old "never run" behaviour is provided a by a new `skip` method.
709
+ (Xavier Shay)
710
+ * Pending blocks inside an example have been removed as a feature with no
711
+ direct replacement. Use `skip` or `pending` without a block. (Xavier Shay)
712
+ * Pending statement is no longer allowed in `before(:all)` hooks. Use `skip`
713
+ instead. (Xavier Shay)
714
+ * Remove `show_failures_in_pending_blocks` configuration option. (Xavier Shay)
715
+ * Remove support for specifying the documentation formatter using
716
+ 's', 'n', 'spec' or 'nested'. (Jon Rowe)
717
+
718
+ Enhancements:
719
+
720
+ * Add example run time to JSON formatter output. (Karthik Kastury)
721
+ * Add more suggested settings to the files generated by
722
+ `rspec --init`. (Myron Marston)
723
+ * Add `config.alias_example_group_to`, which can be used to define a
724
+ new method that defines an example group with the provided metadata.
725
+ (Michi Huber)
726
+ * Add `xdescribe` and `xcontext` as shortcuts to skip an example group.
727
+ (Myron Marston)
728
+ * Add `fdescribe` and `fcontext` as shortcuts to focus an example group.
729
+ (Myron Marston)
730
+ * Don't autorun specs via `#at_exit` by default. `require 'rspec/autorun'`
731
+ is only needed when running specs via `ruby`, as it always has been.
732
+ Running specs via `rake` or `rspec` are both unaffected. (Ben Hoskings)
733
+ * Add `expose_dsl_globally` config option, defaulting to true. When disabled
734
+ it will remove the monkey patches rspec-core adds to `main` and `Module`
735
+ (e.g. `describe`, `shared_examples_for`, etc). (Jon Rowe)
736
+ * Expose RSpec DSL entry point methods (`describe`,
737
+ `shared_examples_for`, etc) on the `RSpec` constant. Intended for use
738
+ when `expose_dsl_globally` is set to `false`. (Jon Rowe)
739
+ * For consistency, expose all example group aliases (including
740
+ `context`) on the `RSpec` constant. If `expose_dsl_globally` is set to
741
+ `true`, also expose them on `main` and `Module`. Historically, only `describe`
742
+ was exposed. (Jon Rowe, Michi Huber)
743
+ * Add hook scope `:example` as an alias for `:each`, and `:context` as an alias
744
+ for `:all`. (John Feminella)
745
+
746
+ Bug Fixes:
747
+
748
+ * Fix failure (undefined method `path`) in end-of-run summary
749
+ when `raise_errors_for_deprecations!` is configured. (Myron Marston)
750
+ * Issue error when attempting to use `-i` or `--I` on command line,
751
+ too close to `-I` to be considered short hand for `--init`. (Jon Rowe)
752
+ * Prevent adding formatters to an output target if the same
753
+ formatter has already been added to that output. (Alex Peattie)
754
+ * Allow a matcher-generated example description to be used when
755
+ the example is pending. (Myron Marston)
756
+ * Ensure the configured `failure_exit_code` is used by the rake
757
+ task when there is a failure. (Jon Rowe)
758
+ * Restore behaviour whereby system exclusion filters take priority over working
759
+ directory (was broken in beta1). (Jon Rowe)
760
+ * Prevent RSpec mangling file names that have substrings containing `line_number`
761
+ or `default_path`. (Matijs van Zuijlen)
762
+ * Fix failure line detection so that it handles relative file paths
763
+ (which can happen when running specs through `ruby` using `rspec/autorun`).
764
+ (Myron Marston, #1829)
765
+
766
+ ### 3.0.0.beta1 / 2013-11-07
767
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.1...v3.0.0.beta1)
768
+
769
+ Breaking Changes for 3.0.0:
770
+
771
+ * Remove explicit support for 1.8.6. (Jon Rowe)
772
+ * Remove `RSpec::Core::ExampleGroup#example` and
773
+ `RSpec::Core::ExampleGroup#running_example` methods. If you need
774
+ access to the example (e.g. to get its metadata), use a block arg
775
+ instead. (David Chelimsky)
776
+ * Remove `TextMateFormatter`, it has been moved to `rspec-tmbundle`.
777
+ (Aaron Kromer)
778
+ * Remove RCov integration. (Jon Rowe)
779
+ * Remove deprecated support for RSpec 1 constructs (Myron Marston):
780
+ * The `Spec` and `Rspec` constants (rather than `RSpec`).
781
+ * `Spec::Runner.configure` rather than `RSpec.configure`.
782
+ * `Rake::SpecTask` rather than `RSpec::Core::RakeTask`.
783
+ * Remove deprecated support for `share_as`. (Myron Marston)
784
+ * Remove `--debug` option (and corresponding option on
785
+ `RSpec::Core::Configuration`). Instead, use `-r<debugger gem name>` to
786
+ load whichever debugger gem you wish to use (e.g. `ruby-debug`,
787
+ `debugger`, or `pry`). (Myron Marston)
788
+ * Extract Autotest support to a seperate gem. (Jon Rowe)
789
+ * Raise an error when a `let` or `subject` declaration is
790
+ accessed in a `before(:all)` or `after(:all)` hook. (Myron Marston)
791
+ * Extract `its` support to a separate gem. (Peter Alfvin)
792
+ * Disallow use of a shared example group from sibling contexts, making them
793
+ fully isolated. 2.14 and 2.99 allowed this but printed a deprecation warning.
794
+ (Jon Rowe)
795
+ * Remove `RSpec::Core::Configuration#output` and
796
+ `RSpec::Core::Configuration#out` aliases of
797
+ `RSpec::Core::Configuration#output_stream`. (Myron Marston)
798
+ * Remove legacy ordering APIs deprecated in 2.99.0.beta1. (Myron
799
+ Marston)
800
+
801
+ Enhancements:
802
+
803
+ * Replace unmaintained syntax gem with coderay gem. (Xavier Shay)
804
+ * Times in profile output are now bold instead of `failure_color`.
805
+ (Matthew Boedicker)
806
+ * Add `--no-fail-fast` command line option. (Gonzalo Rodríguez-Baltanás Díaz)
807
+ * Runner now considers the local system ip address when running under Drb.
808
+ (Adrian CB)
809
+ * JsonFormatter now includes `--profile` information. (Alex / @MasterLambaster)
810
+ * Always treat symbols passed as metadata args as hash
811
+ keys with true values. RSpec 2 supported this with the
812
+ `treat_symbols_as_metadata_keys_with_true_values` but
813
+ now this behavior is always enabled. (Myron Marston)
814
+ * Add `--dry-run` option, which prints the formatter output
815
+ of your suite without running any examples or hooks.
816
+ (Thomas Stratmann, Myron Marston)
817
+ * Document the configuration options and default values in the `spec_helper.rb`
818
+ file that is generated by RSpec. (Parker Selbert)
819
+ * Give generated example group classes a friendly name derived
820
+ from the docstring, rather than something like "Nested_2".
821
+ (Myron Marston)
822
+ * Avoid affecting randomization of user code when shuffling
823
+ examples so that users can count on their own seeds
824
+ working. (Travis Herrick)
825
+ * Ordering is no longer a single global property of the test suite.
826
+ Each group can pick an ordering using `:order` metadata. (Andy
827
+ Lindeman, Sam Phippen, Myron Marston)
828
+ * Allow named custom ordering strategies to be registered, which can
829
+ then be used on individual example groups. (Andy Lindeman, Sam
830
+ Phippen, Myron Marston)
831
+
832
+ Deprecations:
833
+
834
+ * `treat_symbols_as_metadata_keys_with_true_values` is deprecated and no
835
+ longer has an affect now that the behavior it enabled is always
836
+ enabled. (Myron Marston)
837
+
838
+ ### 2.99.2 / 2014-08-19
839
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.1...v2.99.2)
840
+
841
+ Enhancements:
842
+
843
+ * Improve deprecation warning for RSpec 3 change in `describe <a symbol>`
844
+ behavior. (Jon Rowe, #1667)
845
+
846
+ ### 2.99.1 / 2014-06-19
847
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0...v2.99.1)
848
+
849
+ Bug Fixes:
850
+
851
+ * Add missing deprecation warning for when `RSpec::Core::Runner` is used
852
+ multiple times in the same process. In 2.x RSpec's global state was
853
+ automatically cleared between runs but in 3.0 you need to call `RSpec.reset`
854
+ manually in these situations. (Sam Phippen, #1587)
855
+ * Prevent deprecation being accidentally issues when doubles used with `be_`
856
+ matchers due to automatically generated descriptions. (Jon Rowe, #1573)
857
+ * Load `rspec/core` when loading `rspec/core/rake_task` to ensure we can
858
+ issue deprecations correctly. (Jon Rowe, #1612)
859
+
860
+ ### 2.99.0 / 2014-06-01
861
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.rc1...v2.99.0)
862
+
863
+ Bug Fixes:
864
+
865
+ * Fix `BaseTextFormatter` so that it does not re-close a closed output
866
+ stream. (Myron Marston)
867
+ * Use `RSpec::Configuration#backtrace_exclusion_patterns` rather than the
868
+ deprecated `RSpec::Configuration#backtrace_clean_patterns` when mocking
869
+ with rr. (David Dollar)
870
+
871
+ ### 2.99.0.rc1 / 2014-05-18
872
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.beta2...v2.99.0.rc1)
873
+
874
+ Enhancements:
875
+
876
+ * Add `--deprecation-out` CLI option which directs deprecation warnings
877
+ to the named file. (Myron Marston)
878
+ * Backport support for `skip` in metadata to skip execution of an example.
879
+ (Xavier Shay, #1472)
880
+ * Add `Pathname` support for setting all output streams. (Aaron Kromer)
881
+ * Add `test_unit` and `minitest` expectation frameworks. (Aaron Kromer)
882
+
883
+ Deprecations:
884
+
885
+ * Deprecate `RSpec::Core::Pending::PendingDeclaredInExample`, use
886
+ `SkipDeclaredInExample` instead. (Xavier Shay)
887
+ * Issue a deprecation when `described_class` is accessed from within
888
+ a nested `describe <SomeClass>` example group, since `described_class`
889
+ will return the innermost described class in RSpec 3 rather than the
890
+ outermost described class, as it behaved in RSpec 2. (Myron Marston)
891
+ * Deprecate `RSpec::Core::FilterManager::DEFAULT_EXCLUSIONS`,
892
+ `RSpec::Core::FilterManager::STANDALONE_FILTERS` and use of
893
+ `#empty_without_conditional_filters?` on those filters. (Sergey Pchelincev)
894
+ * Deprecate `RSpec::Core::Example#options` in favor of
895
+ `RSpec::Core::Example#metadata`. (Myron Marston)
896
+ * Issue warning when passing a symbol or hash to `describe` or `context`
897
+ as the first argument. In RSpec 2.x this would be treated as metadata
898
+ but in RSpec 3 it'll be treated as the described object. To continue
899
+ having it treated as metadata, pass a description before the symbol or
900
+ hash. (Myron Marston)
901
+ * Deprecate `RSpec::Core::BaseTextFormatter::VT100_COLORS` and
902
+ `RSpec::Core::BaseTextFormatter::VT100_COLOR_CODES` in favour
903
+ of `RSpec::Core::BaseTextFormatter::ConsoleCodes::VT100_CODES` and
904
+ `RSpec::Core::BaseTextFormatter::ConsoleCodes::VT100_CODE_VALUES`.
905
+ (Jon Rowe)
906
+ * Deprecate `RSpec::Core::ExampleGroup.display_name` in favor of
907
+ `RSpec::Core::ExampleGroup.description`. (Myron Marston)
908
+ * Deprecate `RSpec::Core::ExampleGroup.describes` in favor of
909
+ `RSpec::Core::ExampleGroup.described_class`. (Myron Marston)
910
+ * Deprecate `RSpec::Core::ExampleGroup.alias_example_to` in favor of
911
+ `RSpec::Core::Configuration#alias_example_to`. (Myron Marston)
912
+ * Deprecate `RSpec::Core::ExampleGroup.alias_it_behaves_like_to` in favor
913
+ of `RSpec::Core::Configuration#alias_it_behaves_like_to`. (Myron Marston)
914
+ * Deprecate `RSpec::Core::ExampleGroup.focused` in favor of
915
+ `RSpec::Core::ExampleGroup.focus`. (Myron Marston)
916
+ * Add deprecation warning for `config.filter_run :focused` since
917
+ example aliases `fit` and `focus` will no longer include
918
+ `:focused` metadata but will continue to include `:focus`. (Myron Marston)
919
+ * Deprecate filtering by `:line_number` (e.g. `--line-number` from the
920
+ CLI). Use location filtering instead. (Myron Marston)
921
+ * Deprecate `--default_path` as an alternative to `--default-path`. (Jon Rowe)
922
+ * Deprecate `RSpec::Core::Configuration#warnings` in favor of
923
+ `RSpec::Core::Configuration#warnings?`. (Myron Marston)
924
+ * Deprecate `share_examples_for` in favor of `shared_examples_for` or
925
+ just `shared_examples`. (Myron Marston)
926
+ * Deprecate `RSpec::Core::CommandLine` in favor of
927
+ `RSpec::Core::Runner`. (Myron Marston)
928
+ * Deprecate `#color_enabled`, `#color_enabled=` and `#color?` in favour of
929
+ `#color`, `#color=` and `#color_enabled? output`. (Jon Rowe)
930
+ * Deprecate `#filename_pattern` in favour of `#pattern`. (Jon Rowe)
931
+ * Deprecate `#backtrace_cleaner` in favour of `#backtrace_formatter`. (Jon Rowe)
932
+ * Deprecate mutating `RSpec::Configuration#formatters`. (Jon Rowe)
933
+ * Deprecate `stdlib` as an available expectation framework in favour of
934
+ `test_unit` and `minitest`. (Aaron Kromer)
935
+
936
+ Bug Fixes:
937
+
938
+ * Issue a warning when you set `config.deprecation_stream` too late for
939
+ it to take effect because the reporter has already been setup. (Myron Marston)
940
+ * `skip` with a block should not execute the block. (Xavier Shay)
941
+
942
+ ### 2.99.0.beta2 / 2014-02-17
943
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.beta1...v2.99.0.beta2)
944
+
945
+ Enhancements:
946
+
947
+ * Add `is_expected` for one-liners that read well with the
948
+ `expect`-based syntax. `is_expected` is simply defined as
949
+ `expect(subject)` and can be used in an expression like:
950
+ `it { is_expected.to read_well }`. (Myron Marston)
951
+ * Backport `skip` from RSpec 3, which acts like `pending` did in RSpec 2
952
+ when not given a block, since the behavior of `pending` is changing in
953
+ RSpec 3. (Xavier Shay)
954
+
955
+ Deprecations:
956
+
957
+ * Deprecate inexact `mock_with` config options. RSpec 3 will only support
958
+ the exact symbols `:rspec`, `:mocha`, `:flexmock`, `:rr` or `:nothing`
959
+ (or any module that implements the adapter interface). RSpec 2 did
960
+ fuzzy matching but this will not be supported going forward.
961
+ (Myron Marston)
962
+ * Deprecate `show_failures_in_pending_blocks` config option. To achieve
963
+ the same behavior as the option enabled, you can use a custom
964
+ formatter instead. (Xavier Shay)
965
+ * Add a deprecation warning for the fact that the behavior of `pending`
966
+ is changing in RSpec 3 -- rather than skipping the example (as it did
967
+ in 2.x when no block was provided), it will run the example and mark
968
+ it as failed if no exception is raised. Use `skip` instead to preserve
969
+ the old behavior. (Xavier Shay)
970
+ * Deprecate 's', 'n', 'spec' and 'nested' as aliases for documentation
971
+ formatter. (Jon Rowe)
972
+ * Deprecate `RSpec::Core::Reporter#abort` in favor of
973
+ `RSpec::Core::Reporter#finish`. (Jon Rowe)
974
+
975
+ Bug Fixes:
976
+
977
+ * Fix failure (undefined method `path`) in end-of-run summary
978
+ when `raise_errors_for_deprecations!` is configured. (Myron Marston)
979
+ * Fix issue were overridding spec ordering from the command line wasn't
980
+ fully recognised interally. (Jon Rowe)
981
+
982
+ ### 2.99.0.beta1 / 2013-11-07
983
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.7...v2.99.0.beta1)
984
+
985
+ Enhancements
986
+
987
+ * Block-based DSL methods that run in the context of an example
988
+ (`it`, `before(:each)`, `after(:each)`, `let` and `subject`)
989
+ now yield the example as a block argument. (David Chelimsky)
990
+ * Warn when the name of more than one example group is submitted to
991
+ `include_examples` and it's aliases. (David Chelimsky)
992
+ * Add `expose_current_running_example_as` config option for
993
+ use during the upgrade process when external gems use the
994
+ deprecated `RSpec::Core::ExampleGroup#example` and
995
+ `RSpec::Core::ExampleGroup#running_example` methods. (Myron Marston)
996
+ * Limit spamminess of deprecation messages. (Bradley Schaefer, Loren Segal)
997
+ * Add `config.raise_errors_for_deprecations!` option, which turns
998
+ deprecations warnings into errors to surface the full backtrace
999
+ of the call site. (Myron Marston)
1000
+
1001
+ Deprecations
1002
+
1003
+ * Deprecate `RSpec::Core::ExampleGroup#example` and
1004
+ `RSpec::Core::ExampleGroup#running_example` methods. If you need
1005
+ access to the example (e.g. to get its metadata), use a block argument
1006
+ instead. (David Chelimsky)
1007
+ * Deprecate use of `autotest/rspec2` in favour of `rspec-autotest`. (Jon Rowe)
1008
+ * Deprecate RSpec's built-in debugger support. Use a CLI option like
1009
+ `-rruby-debug` (for the ruby-debug gem) or `-rdebugger` (for the
1010
+ debugger gem) instead. (Myron Marston)
1011
+ * Deprecate `RSpec.configuration.treat_symbols_as_metadata_keys_with_true_values = false`.
1012
+ RSpec 3 will not support having this option set to `false`. (Myron Marston)
1013
+ * Deprecate accessing a `let` or `subject` declaration in
1014
+ a `after(:all)` hook. (Myron Marston, Jon Rowe)
1015
+ * Deprecate built-in `its` usage in favor of `rspec-its` gem due to planned
1016
+ removal in RSpec 3. (Peter Alfvin)
1017
+ * Deprecate `RSpec::Core::PendingExampleFixedError` in favor of
1018
+ `RSpec::Core::Pending::PendingExampleFixedError`. (Myron Marston)
1019
+ * Deprecate `RSpec::Core::Configuration#out` and
1020
+ `RSpec::Core::Configuration#output` in favor of
1021
+ `RSpec::Core::Configuration#output_stream`. (Myron Marston)
1022
+ * Deprecate legacy ordering APIs.
1023
+ * You should use `register_ordering(:global)` instead of these:
1024
+ * `RSpec::Core::Configuration#order_examples`
1025
+ * `RSpec::Core::Configuration#order_groups`
1026
+ * `RSpec::Core::Configuration#order_groups_and_examples`
1027
+ * These are deprecated with no replacement because in RSpec 3
1028
+ ordering is a property of individual example groups rather than
1029
+ just a global property of the entire test suite:
1030
+ * `RSpec::Core::Configuration#order`
1031
+ * `RSpec::Core::Configuration#randomize?`
1032
+ * `--order default` is deprecated in favor of `--order defined`
1033
+ (Myron Marston)
1034
+
1035
+ ### 2.14.8 / 2014-02-27
1036
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.7...v2.14.8)
1037
+
1038
+ Bug fixes:
1039
+
1040
+ * Fix regression with the `textmateformatter` that prevented backtrace links
1041
+ from being clickable. (Stefan Daschek)
1042
+
1043
+ ### 2.14.7 / 2013-10-29
1044
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.6...v2.14.7)
1045
+
1046
+ Bug fixes:
1047
+
1048
+ * Fix regression in 2.14.6 that broke the Fivemat formatter.
1049
+ It depended upon either
1050
+ `example.execution_result[:exception].pending_fixed?` (which
1051
+ was removed in 2.14.6 to fix an issue with frozen error objects)
1052
+ or `RSpec::Core::PendingExampleFixedError` (which was renamed
1053
+ to `RSpec::Core::Pending::PendingExampleFixedError` in 2.8.
1054
+ This fix makes a constant alias for the old error name.
1055
+ (Myron Marston)
1056
+
1057
+ ### 2.14.6 / 2013-10-15
1058
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.5...v2.14.6)
1059
+
1060
+ Bug fixes:
1061
+
1062
+ * Format stringified numbers correctly when mathn library is loaded.
1063
+ (Jay Hayes)
1064
+ * Fix an issue that prevented the use of frozen error objects. (Lars
1065
+ Gierth)
1066
+
1067
+ ### 2.14.5 / 2013-08-13
1068
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.4...v2.14.5)
1069
+
1070
+ Bug fixes:
1071
+
1072
+ * Fix a `NoMethodError` that was being raised when there were no shared
1073
+ examples or contexts declared and `RSpec.world.reset` is invoked.
1074
+ (thepoho, Jon Rowe, Myron Marston)
1075
+ * Fix a deprecation warning that was being incorrectly displayed when
1076
+ `shared_examples` are declared at top level in a `module` scope.
1077
+ (Jon Rowe)
1078
+ * Fix after(:all) hooks so consecutive (same context) scopes will run even if
1079
+ one raises an error. (Jon Rowe, Trejkaz)
1080
+ * JsonFormatter no longer dies if `dump_profile` isn't defined (Alex / @MasterLambaster, Jon Rowe)
1081
+
1082
+ ### 2.14.4 / 2013-07-21
1083
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.3...v2.14.4)
1084
+
1085
+ Bug fixes
1086
+
1087
+ * Fix regression in 2.14: ensure configured requires (via `-r` option)
1088
+ are loaded before spec files are loaded. This allows the spec files
1089
+ to programatically change the file pattern (Jon Rowe).
1090
+ * Autoload `RSpec::Mocks` and `RSpec::Expectations` when referenced if
1091
+ they are not already loaded (`RSpec::Matches` has been autoloaded
1092
+ for a while). In the `rspec` gem, we changed it recently to stop
1093
+ loading `rspec/mocks` and `rspec/expectations` by default, as some
1094
+ users reported problems where they were intending to use mocha,
1095
+ not rspec-mocks, but rspec-mocks was loaded and causing a conflict.
1096
+ rspec-core loads mocks and expectations at the appropriate time, so
1097
+ it seemed like a safe change -- but caused a problem for some authors
1098
+ of libraries that integrate with RSpec. This fixes that problem.
1099
+ (Myron Marston)
1100
+ * Gracefully handle a command like `rspec --profile path/to/spec.rb`:
1101
+ the `path/to/spec.rb` arg was being wrongly treated as the `profile`
1102
+ integer arg, which got cast `0` using `to_i`, causing no profiled
1103
+ examples to be printed. (Jon Rowe)
1104
+
1105
+ ### 2.14.3 / 2013-07-13
1106
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.2...v2.14.3)
1107
+
1108
+ Bug fixes
1109
+
1110
+ * Fix deprecation notices issued from `RSpec::Core::RakeTask` so
1111
+ that they work properly when all of rspec-core is not loaded.
1112
+ (This was a regression in 2.14) (Jon Rowe)
1113
+
1114
+ ### 2.14.2 / 2013-07-09
1115
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.1...v2.14.2)
1116
+
1117
+ Bug fixes
1118
+
1119
+ * Fix regression caused by 2.14.1 release: formatters that
1120
+ report that they `respond_to?` a notification, but had
1121
+ no corresponding method would raise an error when registered.
1122
+ The new fix is to just implement `start` on the deprecation
1123
+ formatter to fix the original JRuby/ruby-debug issue.
1124
+ (Jon Rowe)
1125
+
1126
+ ### 2.14.1 / 2013-07-08
1127
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.0...v2.14.1)
1128
+
1129
+ Bug fixes
1130
+
1131
+ * Address deprecation formatter failure when using `ruby-debug` on
1132
+ JRuby: fix `RSpec::Core::Reporter` to not send a notification
1133
+ when the formatter's implementation of the notification method
1134
+ comes from `Kernel` (Alex Portnov, Jon Rowe).
1135
+
1136
+ ### 2.14.0 / 2013-07-06
1137
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.0.rc1...v2.14.0)
1138
+
1139
+ Enhancements
1140
+
1141
+ * Apply focus to examples defined with `fit` (equivalent of
1142
+ `it "description", focus: true`) (Michael de Silva)
1143
+
1144
+ Bug fix
1145
+
1146
+ * Ensure methods defined by `let` take precedence over others
1147
+ when there is a name collision (e.g. from an included module).
1148
+ (Jon Rowe, Andy Lindeman and Myron Marston)
1149
+
1150
+ ### 2.14.0.rc1 / 2013-05-27
1151
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.13.1...v2.14.0.rc1)
1152
+
1153
+ Enhancements
1154
+
1155
+ * Improved Windows detection inside Git Bash, for better `--color` handling.
1156
+ * Add profiling of the slowest example groups to `--profile` option.
1157
+ The output is sorted by the slowest average example groups.
1158
+ * Don't show slow examples if there's a failure and both `--fail-fast`
1159
+ and `--profile` options are used (Paweł Gościcki).
1160
+ * Rather than always adding `spec` to the load path, add the configured
1161
+ `--default-path` to the load path (which defaults to `spec`). This
1162
+ better supports folks who choose to put their specs in a different
1163
+ directory (John Feminella).
1164
+ * Add some logic to test time duration precision. Make it a
1165
+ function of time, dropping precision as the time increases. (Aaron Kromer)
1166
+ * Add new `backtrace_inclusion_patterns` config option. Backtrace lines
1167
+ that match one of these patterns will _always_ be included in the
1168
+ backtrace, even if they match an exclusion pattern, too (Sam Phippen).
1169
+ * Support ERB trim mode using the `-` when parsing `.rspec` as ERB
1170
+ (Gabor Garami).
1171
+ * Give a better error message when let and subject are called without a block.
1172
+ (Sam Phippen).
1173
+ * List the precedence of `.rspec-local` in the configuration documentation
1174
+ (Sam Phippen)
1175
+ * Support `{a,b}` shell expansion syntax in `--pattern` option
1176
+ (Konstantin Haase).
1177
+ * Add cucumber documentation for --require command line option
1178
+ (Bradley Schaefer)
1179
+ * Expose configuration options via config:
1180
+ * `config.libs` returns the libs configured to be added onto the load path
1181
+ * `full_backtrace?` returns the state of the backtrace cleaner
1182
+ * `debug?` returns true when the debugger is loaded
1183
+ * `line_numbers` returns the line numbers we are filtering by (if any)
1184
+ * `full_description` returns the RegExp used to filter descriptions
1185
+ (Jon Rowe)
1186
+ * Add setters for RSpec.world and RSpec.configuration (Alex Soulim)
1187
+ * Configure ruby's warning behaviour with `--warnings` (Jon Rowe)
1188
+ * Fix an obscure issue on old versions of `1.8.7` where `Time.dup` wouldn't
1189
+ allow access to `Time.now` (Jon Rowe)
1190
+ * Make `shared_examples_for` context aware, so that keys may be safely reused
1191
+ in multiple contexts without colliding. (Jon Rowe)
1192
+ * Add a configurable `deprecation_stream` (Jon Rowe)
1193
+ * Publish deprecations through a formatter (David Chelimsky)
1194
+
1195
+ Bug fixes
1196
+
1197
+ * Make JSON formatter behave the same when it comes to `--profile` as
1198
+ the text formatter (Paweł Gościcki).
1199
+ * Fix named subjects so that if an inner group defines a method that
1200
+ overrides the named method, `subject` still retains the originally
1201
+ declared value (Myron Marston).
1202
+ * Fix random ordering so that it does not cause `rand` in examples in
1203
+ nested sibling contexts to return the same value (Max Shytikov).
1204
+ * Use the new `backtrace_inclusion_patterns` config option to ensure
1205
+ that folks who develop code in a directory matching one of the default
1206
+ exclusion patterns (e.g. `gems`) still get the normal backtrace
1207
+ filtering (Sam Phippen).
1208
+ * Fix ordering of `before` hooks so that `before` hooks declared in
1209
+ `RSpec.configure` run before `before` hooks declared in a shared
1210
+ context (Michi Huber and Tejas Dinkar).
1211
+ * Fix `Example#full_description` so that it gets filled in by the last
1212
+ matcher description (as `Example#description` already did) when no
1213
+ doc string has been provided (David Chelimsky).
1214
+ * Fix the memoized methods (`let` and `subject`) leaking `define_method`
1215
+ as a `public` method. (Thomas Holmes and Jon Rowe) (#873)
1216
+ * Fix warnings coming from the test suite. (Pete Higgins)
1217
+
1218
+ Deprecations
1219
+
1220
+ * Deprecate `Configuration#backtrace_clean_patterns` in favor of
1221
+ `Configuration#backtrace_exclusion_patterns` for greater consistency
1222
+ and symmetry with new `backtrace_inclusion_patterns` config option
1223
+ (Sam Phippen).
1224
+ * Deprecate `Configuration#requires=` in favor of using ruby's
1225
+ `require`. Requires specified by the command line can still be
1226
+ accessed by the `Configuration#require` reader. (Bradley Schaefer)
1227
+ * Deprecate calling `SharedExampleGroups` defined across sibling contexts
1228
+ (Jon Rowe)
1229
+
1230
+ ### 2.13.1 / 2013-03-12
1231
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.13.0...v2.13.1)
1232
+
1233
+ Bug fixes
1234
+
1235
+ * Use hook classes as proxies rather than extending hook blocks to support
1236
+ lambdas for before/after/around hooks. (David Chelimsky)
1237
+ * Fix regression in 2.13.0 that caused confusing behavior when overriding
1238
+ a named subject with an unnamed subject in an inner group and then
1239
+ referencing the outer group subject's name. The fix for this required
1240
+ us to disallow using `super` in a named subject (which is confusing,
1241
+ anyway -- named subjects create 2 methods, so which method on the
1242
+ parent example group are you `super`ing to?) but `super` in an unnamed
1243
+ subject continues to work (Myron Marston).
1244
+ * Do not allow a referenced `let` or `subject` in `before(:all)` to cause
1245
+ other `let` declarations to leak across examples (Myron Marston).
1246
+ * Work around odd ruby 1.9 bug with `String#match` that was triggered
1247
+ by passing it a regex from a `let` declaration. For more info, see
1248
+ http://bugs.ruby-lang.org/issues/8059 (Aaron Kromer).
1249
+ * Add missing `require 'set'` to `base_text_formatter.rb` (Tom
1250
+ Anderson).
1251
+
1252
+ Deprecations
1253
+
1254
+ * Deprecate accessing `let` or `subject` declarations in `before(:all)`.
1255
+ These were not intended to be called in a `before(:all)` hook, as
1256
+ they exist to define state that is reset between each example, while
1257
+ `before(:all)` exists to define state that is shared across examples
1258
+ in an example group (Myron Marston).
1259
+
1260
+ ### 2.13.0 / 2013-02-23
1261
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.2...v2.13.0)
1262
+
1263
+ Enhancements
1264
+
1265
+ * Allow `--profile` option to take a count argument that
1266
+ determines the number of slow examples to dump
1267
+ (Greggory Rothmeier).
1268
+ * Add `subject!` that is the analog to `let!`. It defines an
1269
+ explicit subject and sets a `before` hook that will invoke
1270
+ the subject (Zubin Henner).
1271
+ * Fix `let` and `subject` declaration so that `super`
1272
+ and `return` can be used in them, just like in a normal
1273
+ method. (Myron Marston)
1274
+ * Allow output colors to be configured individually.
1275
+ (Charlie Maffitt)
1276
+ * Always dump slow examples when `--profile` option is given,
1277
+ even when an example failed (Myron Marston).
1278
+
1279
+ Bug fixes
1280
+
1281
+ * Don't blow up when dumping error output for instances
1282
+ of anonymous error classes (Myron Marston).
1283
+ * Fix default backtrace filters so lines from projects
1284
+ containing "gems" in the name are not filtered, but
1285
+ lines from installed gems still are (Myron Marston).
1286
+ * Fix autotest command so that is uses double quotes
1287
+ rather than single quotes for windows compatibility
1288
+ (Jonas Tingeborn).
1289
+ * Fix `its` so that uses of `subject` in a `before` or `let`
1290
+ declaration in the parent group continue to reference the
1291
+ parent group's subject. (Olek Janiszewski)
1292
+
1293
+ ### 2.12.2 / 2012-12-13
1294
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2)
1295
+
1296
+ Bug fixes
1297
+
1298
+ * Fix `RSpec::Core::RakeTask` so that it is compatible with rake 0.8.7
1299
+ on ruby 1.8.7. We had accidentally broke it in the 2.12 release
1300
+ (Myron Marston).
1301
+ * Fix `RSpec::Core::RakeTask` so it is tolerant of the `Rspec` constant
1302
+ for backwards compatibility (Patrick Van Stee)
1303
+
1304
+ ### 2.12.1 / 2012-12-01
1305
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1)
1306
+
1307
+ Bug fixes
1308
+
1309
+ * Specs are run even if another at\_exit hook calls `exit`. This allows
1310
+ Test::Unit and RSpec to run together. (Suraj N. Kurapati)
1311
+ * Fix full doc string concatenation so that it handles the case of a
1312
+ method string (e.g. "#foo") being nested under a context string
1313
+ (e.g. "when it is tuesday"), so that we get "when it is tuesday #foo"
1314
+ rather than "when it is tuesday#foo". (Myron Marston)
1315
+ * Restore public API I unintentionally broke in 2.12.0:
1316
+ `RSpec::Core::Formatters::BaseFormatter#format_backtrce(backtrace, example)`
1317
+ (Myron Marston).
1318
+
1319
+ ### 2.12.0 / 2012-11-12
1320
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...v2.12.0)
1321
+
1322
+ Enhancements
1323
+
1324
+ * Add support for custom ordering strategies for groups and examples.
1325
+ (Myron Marston)
1326
+ * JSON Formatter (Alex Chaffee)
1327
+ * Refactor rake task internals (Sam Phippen)
1328
+ * Refactor HtmlFormatter (Pete Hodgson)
1329
+ * Autotest supports a path to Ruby that contains spaces (dsisnero)
1330
+ * Provide a helpful warning when a shared example group is redefined.
1331
+ (Mark Burns).
1332
+ * `--default_path` can be specified as `--default-line`. `--line_number` can be
1333
+ specified as `--line-number`. Hyphens are more idiomatic command line argument
1334
+ separators (Sam Phippen).
1335
+ * A more useful error message is shown when an invalid command line option is
1336
+ used (Jordi Polo).
1337
+ * Add `format_docstrings { |str| }` config option. It can be used to
1338
+ apply formatting rules to example group and example docstrings.
1339
+ (Alex Tan)
1340
+ * Add support for an `.rspec-local` options file. This is intended to
1341
+ allow individual developers to set options in a git-ignored file that
1342
+ override the common project options in `.rspec`. (Sam Phippen)
1343
+ * Support for mocha 0.13.0. (Andy Lindeman)
1344
+
1345
+ Bug fixes
1346
+
1347
+ * Remove override of `ExampleGroup#ancestors`. This is a core ruby method that
1348
+ RSpec shouldn't override. Instead, define `ExampleGroup#parent_groups`. (Myron
1349
+ Marston)
1350
+ * Limit monkey patching of shared example/context declaration methods
1351
+ (`shared_examples_for`, etc.) to just the objects that need it rather than
1352
+ every object in the system (Myron Marston).
1353
+ * Fix Metadata#fetch to support computed values (Sam Goldman).
1354
+ * Named subject can now be referred to from within subject block in a nested
1355
+ group (tomykaira).
1356
+ * Fix `fail_fast` so that it properly exits when an error occurs in a
1357
+ `before(:all) hook` (Bradley Schaefer).
1358
+ * Make the order spec files are loaded consistent, regardless of the
1359
+ order of the files returned by the OS or the order passed at
1360
+ the command line (Jo Liss and Sam Phippen).
1361
+ * Ensure instance variables from `before(:all)` are always exposed
1362
+ from `after(:all)`, even if an error occurs in `before(:all)`
1363
+ (Sam Phippen).
1364
+ * `rspec --init` no longer generates an incorrect warning about `--configure`
1365
+ being deprecated (Sam Phippen).
1366
+ * Fix pluralization of `1 seconds` (Odin Dutton)
1367
+ * Fix ANSICON url (Jarmo Pertman)
1368
+ * Use dup of Time so reporting isn't clobbered by examples that modify Time
1369
+ without properly restoring it. (David Chelimsky)
1370
+
1371
+ Deprecations
1372
+
1373
+ * `share_as` is no longer needed. `shared_context` and/or
1374
+ `RSpec::SharedContext` provide better mechanisms (Sam Phippen).
1375
+ * Deprecate `RSpec.configuration` with a block (use `RSpec.configure`).
1376
+
1377
+
1378
+ ### 2.11.1 / 2012-07-18
1379
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1)
1380
+
1381
+ Bug fixes
1382
+
1383
+ * Fix the way we autoload RSpec::Matchers so that custom matchers can be
1384
+ defined before rspec-core has been configured to definitely use
1385
+ rspec-expectations. (Myron Marston)
1386
+ * Fix typo in --help message printed for -e option. (Jo Liss)
1387
+ * Fix ruby warnings. (Myron Marston)
1388
+ * Ignore mock expectation failures when the example has already failed.
1389
+ Mock expectation failures have always been ignored in this situation,
1390
+ but due to my changes in 27059bf1 it was printing a confusing message.
1391
+ (Myron Marston).
1392
+
1393
+ ### 2.11.0 / 2012-07-07
1394
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.10.1...v2.11.0)
1395
+
1396
+ Enhancements
1397
+
1398
+ * Support multiple `--example` options. (Daniel Doubrovkine @dblock)
1399
+ * Named subject e.g. `subject(:article) { Article.new }`
1400
+ * see [http://blog.davidchelimsky.net/2012/05/13/spec-smell-explicit-use-of-subject/](http://blog.davidchelimsky.net/2012/05/13/spec-smell-explicit-use-of-subject/)
1401
+ for background.
1402
+ * thanks to Bradley Schaefer for suggesting it and Avdi Grimm for almost
1403
+ suggesting it.
1404
+ * `config.mock_with` and `config.expect_with` yield custom config object to a
1405
+ block if given
1406
+ * aids decoupling from rspec-core's configuation
1407
+ * `include_context` and `include_examples` support a block, which gets eval'd
1408
+ in the current context (vs the nested context generated by `it_behaves_like`).
1409
+ * Add `config.order = 'random'` to the `spec_helper.rb` generated by `rspec
1410
+ --init`.
1411
+ * Delay the loading of DRb (Myron Marston).
1412
+ * Limit monkey patching of `describe` onto just the objects that need it rather
1413
+ than every object in the system (Myron Marston).
1414
+
1415
+ Bug fixes
1416
+
1417
+ * Support alternative path separators. For example, on Windows, you can now do
1418
+ this: `rspec spec\subdir`. (Jarmo Pertman @jarmo)
1419
+ * When an example raises an error and an after or around hook does as
1420
+ well, print out the hook error. Previously, the error was silenced and
1421
+ the user got no feedback about what happened. (Myron Marston)
1422
+ * `--require` and `-I` are merged among different configuration sources (Andy
1423
+ Lindeman)
1424
+ * Delegate to mocha methods instead of aliasing them in mocha adapter.
1425
+
1426
+ ### 2.10.1 / 2012-05-19
1427
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.10.0...v2.10.1)
1428
+
1429
+ Bug fixes
1430
+
1431
+ * `RSpec.reset` properly reinits configuration and world
1432
+ * Call `to_s` before `split` on exception messages that might not always be
1433
+ Strings (slyphon)
1434
+
1435
+ ### 2.10.0 / 2012-05-03
1436
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.9.0...v2.10.0)
1437
+
1438
+ Enhancements
1439
+
1440
+ * Add `prepend_before` and `append_after` hooks (preethiramdev)
1441
+ * intended for extension libs
1442
+ * restores rspec-1 behavior
1443
+ * Reporting of profiled examples (moro)
1444
+ * Report the total amount of time taken for the top slowest examples.
1445
+ * Report what percentage the slowest examples took from the total runtime.
1446
+
1447
+ Bug fixes
1448
+
1449
+ * Properly parse `SPEC_OPTS` options.
1450
+ * `example.description` returns the location of the example if there is no
1451
+ explicit description or matcher-generated description.
1452
+ * RDoc fixes (Grzegorz Świrski)
1453
+ * Do not modify example ancestry when dumping errors (Michael Grosser)
1454
+
1455
+ ### 2.9.0 / 2012-03-17
1456
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0...v2.9.0)
1457
+
1458
+ Enhancements
1459
+
1460
+ * Support for "X minutes X seconds" spec run duration in formatter. (uzzz)
1461
+ * Strip whitespace from group and example names in doc formatter.
1462
+ * Removed spork-0.9 shim. If you're using spork-0.8.x, you'll need to upgrade
1463
+ to 0.9.0.
1464
+
1465
+ Bug fixes
1466
+
1467
+ * Restore `--full_backtrace` option
1468
+ * Ensure that values passed to `config.filter_run` are respected when running
1469
+ over DRb (using spork).
1470
+ * Ensure shared example groups are reset after a run (as example groups are).
1471
+ * Remove `rescue false` from calls to filters represented as Procs
1472
+ * Ensure `described_class` gets the closest constant (pyromaniac)
1473
+ * In "autorun", don't run the specs in the `at_exit` hook if there was an
1474
+ exception (most likely due to a SyntaxError). (sunaku)
1475
+ * Don't extend groups with modules already used to extend ancestor groups.
1476
+ * `its` correctly memoizes nil or false values (Yamada Masaki)
1477
+
1478
+ ### 2.8.0 / 2012-01-04
1479
+
1480
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc2...v2.8.0)
1481
+
1482
+ Bug fixes
1483
+
1484
+ * For metadata filtering, restore passing the entire array to the proc, rather
1485
+ than each item in the array (weidenfreak)
1486
+ * Ensure each spec file is loaded only once
1487
+ * Fixes a bug that caused all the examples in a file to be run when
1488
+ referenced twice with line numbers in a command, e.g.
1489
+ * `rspec path/to/file:37 path/to/file:42`
1490
+
1491
+ ### 2.8.0.rc2 / 2011-12-19
1492
+
1493
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc1...v2.8.0.rc2)
1494
+
1495
+ Enhancments
1496
+
1497
+ * new `--init` command (Peter Schröder)
1498
+ * generates `spec/spec_helper.rb`
1499
+ * deletes obsolete files (on confirmation)
1500
+ * merged with and deprecates `--configure` command, which generated
1501
+ `.rspec`
1502
+ * use `require_relative` when available (Ian Leitch)
1503
+ * `include_context` and `include_examples` accept params (Calvin Bascom)
1504
+ * print the time for every example in the html formatter (Richie Vos)
1505
+ * several tasty refactoring niblets (Sasha)
1506
+ * `it "does something", :x => [:foo,'bar',/baz/] (Ivan Neverov)
1507
+ * supports matching n command line tag values with an example or group
1508
+
1509
+ ### 2.8.0.rc1 / 2011-11-06
1510
+
1511
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.7.1...v2.8.0.rc1)
1512
+
1513
+ Enhancements
1514
+
1515
+ * `--order` (Justin Ko)
1516
+ * run examples in random order: `--order rand`
1517
+ * specify the seed: `--order rand:123`
1518
+ * `--seed SEED`
1519
+ * equivalent of `--order rand:SEED`
1520
+ * SharedContext supports `let` (David Chelimsky)
1521
+ * Filter improvements (David Chelimsky)
1522
+ * override opposing tags from the command line
1523
+ * override RSpec.configure tags from the command line
1524
+ * `--line_number 37` overrides all other filters
1525
+ * `path/to/file.rb:37` overrides all other filters
1526
+ * refactor: consolidate filter management in a FilterManger object
1527
+ * Eliminate Ruby warnings (Matijs van Zuijlen)
1528
+ * Make reporter.report an API (David Chelimsky)
1529
+ * supports extension tools like interative_rspec
1530
+
1531
+ Changes
1532
+
1533
+ * change `config.color_enabled` (getter/setter/predicate) to `color` to align
1534
+ with `--[no]-color` CLI option.
1535
+ * `color_enabled` is still supported for now, but will likley be deprecated
1536
+ in a 2.x release so we can remove it in 3.0.
1537
+
1538
+ Bug fixes
1539
+
1540
+ * Make sure the `bar` in `--tag foo:bar` makes it to DRb (Aaron Gibralter)
1541
+ * Fix bug where full descriptions of groups nested 3 deep were repeated.
1542
+ * Restore report of time to run to start after files are loaded.
1543
+ * fixes bug where run times were cumalitive in spork
1544
+ * fixes compatibility with time-series metrics
1545
+ * Don't error out when `config.mock_with` or `expect_with` is re-specifying the
1546
+ current config (Myron Marston)
1547
+
1548
+ * Deprecations
1549
+ * :alias option on `configuration.add_setting`. Use `:alias_with` on the
1550
+ original setting declaration instead.
1551
+
1552
+ ### 2.7.1 / 2011-10-20
1553
+
1554
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.7.0...v2.7.1)
1555
+
1556
+ Bug fixes
1557
+
1558
+ * tell autotest the correct place to find the rspec executable
1559
+
1560
+ ### 2.7.0 / 2011-10-16
1561
+
1562
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.4...v2.7.0)
1563
+
1564
+ NOTE: RSpec's release policy dictates that there should not be any backward
1565
+ incompatible changes in minor releases, but we're making an exception to
1566
+ release a change to how RSpec interacts with other command line tools.
1567
+
1568
+ As of 2.7.0, you must explicity `require "rspec/autorun"` unless you use the
1569
+ `rspec` command (which already does this for you).
1570
+
1571
+ Enhancements
1572
+
1573
+ * Add `example.exception` (David Chelimsky)
1574
+ * `--default_path` command line option (Justin Ko)
1575
+ * support multiple `--line_number` options (David J. Hamilton)
1576
+ * also supports `path/to/file.rb:5:9` (runs examples on lines 5 and 9)
1577
+ * Allow classes/modules to be used as shared example group identifiers (Arthur
1578
+ Gunn)
1579
+ * Friendly error message when shared context cannot be found (Sławosz
1580
+ Sławiński)
1581
+ * Clear formatters when resetting config (John Bintz)
1582
+ * Add `xspecify` and xexample as temp-pending methods (David Chelimsky)
1583
+ * Add `--no-drb` option (Iain Hecker)
1584
+ * Provide more accurate run time by registering start time before code is
1585
+ loaded (David Chelimsky)
1586
+ * reverted in 2.8.0
1587
+ * Rake task default pattern finds specs in symlinked dirs (Kelly Felkins)
1588
+ * Rake task no longer does anything to invoke bundler since Bundler already
1589
+ handles it for us. Thanks to Andre Arko for the tip.
1590
+ * Add `--failure-exit-code` option (Chris Griego)
1591
+
1592
+ Bug fixes
1593
+
1594
+ * Include `Rake::DSL` to remove deprecation warnings in Rake > 0.8.7 (Pivotal
1595
+ Casebook)
1596
+ * Only eval `let` block once even if it returns `nil` (Adam Meehan)
1597
+ * Fix `--pattern` option (wasn't being recognized) (David Chelimsky)
1598
+ * Only implicitly `require "rspec/autorun"` with the `rspec` command (David
1599
+ Chelimsky)
1600
+ * Ensure that rspec's `at_exit` defines the exit code (Daniel Doubrovkine)
1601
+ * Show the correct snippet in the HTML and TextMate formatters (Brian Faherty)
1602
+
1603
+ ### 2.6.4 / 2011-06-06
1604
+
1605
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.3...v2.6.4)
1606
+
1607
+ NOTE: RSpec's release policy dictates that there should not be new
1608
+ functionality in patch releases, but this minor enhancement slipped in by
1609
+ accident. As it doesn't add a new API, we decided to leave it in rather than
1610
+ roll back this release.
1611
+
1612
+ Enhancements
1613
+
1614
+ * Add summary of commands to run individual failed examples.
1615
+
1616
+ Bug fixes
1617
+
1618
+ * Support exclusion filters in DRb. (Yann Lugrin)
1619
+ * Fix --example escaping when run over DRb. (Elliot Winkler)
1620
+ * Use standard ANSI codes for color formatting so colors work in a wider set of
1621
+ color schemes.
1622
+
1623
+ ### 2.6.3 / 2011-05-24
1624
+
1625
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.2...v2.6.3)
1626
+
1627
+ Bug fixes
1628
+
1629
+ * Explicitly convert exit code to integer, avoiding TypeError when return
1630
+ value of run is IO object proxied by `DRb::DRbObject` (Julian Scheid)
1631
+ * Clarify behavior of `--example` command line option
1632
+ * Build using a rubygems-1.6.2 to avoid downstream yaml parsing error
1633
+
1634
+ ### 2.6.2 / 2011-05-21
1635
+
1636
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.1...v2.6.2)
1637
+
1638
+ Bug fixes
1639
+
1640
+ * Warn rather than raise when HOME env var is not defined
1641
+ * Properly merge command-line exclusions with default :if and :unless (joshcooper)
1642
+
1643
+ ### 2.6.1 / 2011-05-19
1644
+
1645
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.0...v2.6.1)
1646
+
1647
+ Bug fixes
1648
+
1649
+ * Don't extend nil when filters are nil
1650
+ * `require 'rspec/autorun'` when running rcov.
1651
+
1652
+ ### 2.6.0 / 2011-05-12
1653
+
1654
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.5.1...v2.6.0)
1655
+
1656
+ Enhancements
1657
+
1658
+ * `shared_context` (Damian Nurzynski)
1659
+ * extend groups matching specific metadata with:
1660
+ * method definitions
1661
+ * subject declarations
1662
+ * let/let! declarations
1663
+ * etc (anything you can do in a group)
1664
+ * `its([:key])` works for any subject with #[]. (Peter Jaros)
1665
+ * `treat_symbols_as_metadata_keys_with_true_values` (Myron Marston)
1666
+ * Print a deprecation warning when you configure RSpec after defining an
1667
+ example. All configuration should happen before any examples are defined.
1668
+ (Myron Marston)
1669
+ * Pass the exit status of a DRb run to the invoking process. This causes specs
1670
+ run via DRb to not just return true or false. (Ilkka Laukkanen)
1671
+ * Refactoring of `ConfigurationOptions#parse_options` (Rodrigo Rosenfeld Rosas)
1672
+ * Report excluded filters in runner output (tip from andyl)
1673
+ * Clean up messages for filters/tags.
1674
+ * Restore --pattern/-P command line option from rspec-1
1675
+ * Support false as well as true in config.full_backtrace= (Andreas Tolf
1676
+ Tolfsen)
1677
+
1678
+ Bug fixes
1679
+
1680
+ * Don't stumble over an exception without a message (Hans Hasselberg)
1681
+ * Remove non-ascii characters from comments that were choking rcov (Geoffrey
1682
+ Byers)
1683
+ * Fixed backtrace so it doesn't include lines from before the autorun at_exit
1684
+ hook (Myron Marston)
1685
+ * Include RSpec::Matchers when first example group is defined, rather than just
1686
+ before running the examples. This works around an obscure bug in ruby 1.9
1687
+ that can cause infinite recursion. (Myron Marston)
1688
+ * Don't send `example_group_[started|finished]` to formatters for empty groups.
1689
+ * Get specs passing on jruby (Sidu Ponnappa)
1690
+ * Fix bug where mixing nested groups and outer-level examples gave
1691
+ unpredictable :line_number behavior (Artur Małecki)
1692
+ * Regexp.escape the argument to --example (tip from Elliot Winkler)
1693
+ * Correctly pass/fail pending block with message expectations
1694
+ * CommandLine returns exit status (0/1) instead of true/false
1695
+ * Create path to formatter output file if it doesn't exist (marekj).
1696
+
1697
+
1698
+ ### 2.5.1 / 2011-02-06
1699
+
1700
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.5.0...v2.5.1)
1701
+
1702
+ NOTE: this release breaks compatibility with rspec/autotest/bundler
1703
+ integration, but does so in order to greatly simplify it.
1704
+
1705
+ With this release, if you want the generated autotest command to include
1706
+ 'bundle exec', require Autotest's bundler plugin in a .autotest file in the
1707
+ project's root directory or in your home directory:
1708
+
1709
+ require "autotest/bundler"
1710
+
1711
+ Now you can just type 'autotest' on the commmand line and it will work as you expect.
1712
+
1713
+ If you don't want 'bundle exec', there is nothing you have to do.
1714
+
1715
+ ### 2.5.0 / 2011-02-05
1716
+
1717
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.4.0...v2.5.0)
1718
+
1719
+ Enhancements
1720
+
1721
+ * Autotest::Rspec2 parses command line args passed to autotest after '--'
1722
+ * --skip-bundler option for autotest command
1723
+ * Autotest regexp fixes (Jon Rowe)
1724
+ * Add filters to html and textmate formatters (Daniel Quimper)
1725
+ * Explicit passing of block (need for JRuby 1.6) (John Firebaugh)
1726
+
1727
+ Bug fixes
1728
+
1729
+ * fix dom IDs in HTML formatter (Brian Faherty)
1730
+ * fix bug with --drb + formatters when not running in drb
1731
+ * include --tag options in drb args (monocle)
1732
+ * fix regression so now SPEC_OPTS take precedence over CLI options again (Roman
1733
+ Chernyatchik)
1734
+ * only call its(:attribute) once (failing example from Brian Dunn)
1735
+ * fix bizarre bug where rspec would hang after String.alias :to_int :to_i
1736
+ (Damian Nurzynski)
1737
+
1738
+ Deprecations
1739
+
1740
+ * implicit inclusion of 'bundle exec' when Gemfile present (use autotest's
1741
+ bundler plugin instead)
1742
+
1743
+ ### 2.4.0 / 2011-01-02
1744
+
1745
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.3.1...v2.4.0)
1746
+
1747
+ Enhancements
1748
+
1749
+ * start the debugger on -d so the stack trace is visible when it stops
1750
+ (Clifford Heath)
1751
+ * apply hook filtering to examples as well as groups (Myron Marston)
1752
+ * support multiple formatters, each with their own output
1753
+ * show exception classes in failure messages unless they come from RSpec
1754
+ matchers or message expectations
1755
+ * before(:all) { pending } sets all examples to pending
1756
+
1757
+ Bug fixes
1758
+
1759
+ * fix bug due to change in behavior of reject in Ruby 1.9.3-dev (Shota
1760
+ Fukumori)
1761
+ * fix bug when running in jruby: be explicit about passing block to super (John
1762
+ Firebaugh)
1763
+ * rake task doesn't choke on paths with quotes (Janmejay Singh)
1764
+ * restore --options option from rspec-1
1765
+ * require 'ostruct' to fix bug with its([key]) (Kim Burgestrand)
1766
+ * --configure option generates .rspec file instead of autotest/discover.rb
1767
+
1768
+ ### 2.3.1 / 2010-12-16
1769
+
1770
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.3.0...v2.3.1)
1771
+
1772
+ Bug fixes
1773
+
1774
+ * send debugger warning message to $stdout if RSpec.configuration.error_stream
1775
+ has not been defined yet.
1776
+ * HTML Formatter _finally_ properly displays nested groups (Jarmo Pertman)
1777
+ * eliminate some warnings when running RSpec's own suite (Jarmo Pertman)
1778
+
1779
+ ### 2.3.0 / 2010-12-12
1780
+
1781
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.2.1...v2.3.0)
1782
+
1783
+ Enhancements
1784
+
1785
+ * tell autotest to use "rspec2" if it sees a .rspec file in the project's root
1786
+ directory
1787
+ * replaces the need for ./autotest/discover.rb, which will not work with
1788
+ all versions of ZenTest and/or autotest
1789
+ * config.expect_with
1790
+ * :rspec # => rspec/expectations
1791
+ * :stdlib # => test/unit/assertions
1792
+ * :rspec, :stdlib # => both
1793
+
1794
+ Bug fixes
1795
+
1796
+ * fix dev Gemfile to work on non-mac-os machines (Lake Denman)
1797
+ * ensure explicit subject is only eval'd once (Laszlo Bacsi)
1798
+
1799
+ ### 2.2.1 / 2010-11-28
1800
+
1801
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.2.0...v2.2.1)
1802
+
1803
+ Bug fixes
1804
+ * alias_method instead of override Kernel#method_missing (John Wilger)
1805
+ * changed --autotest to --tty in generated command (MIKAMI Yoshiyuki)
1806
+ * revert change to debugger (had introduced conflict with Rails)
1807
+ * also restored --debugger/-debug option
1808
+
1809
+ ### 2.2.0 / 2010-11-28
1810
+
1811
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.1.0...v2.2.0)
1812
+
1813
+ Deprecations/changes
1814
+
1815
+ * --debug/-d on command line is deprecated and now has no effect
1816
+ * win32console is now ignored; Windows users must use ANSICON for color support
1817
+ (Bosko Ivanisevic)
1818
+
1819
+ Enhancements
1820
+
1821
+ * When developing locally rspec-core now works with the rspec-dev setup or your
1822
+ local gems
1823
+ * Raise exception with helpful message when rspec-1 is loaded alongside rspec-2
1824
+ (Justin Ko)
1825
+ * debugger statements _just work_ as long as ruby-debug is installed
1826
+ * otherwise you get warned, but not fired
1827
+ * Expose example.metadata in around hooks
1828
+ * Performance improvments (much faster now)
1829
+
1830
+ Bug fixes
1831
+
1832
+ * Make sure --fail-fast makes it across drb
1833
+ * Pass -Ilib:spec to rcov
1834
+
1835
+ ### 2.1.0 / 2010-11-07
1836
+
1837
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.1...v2.1.0)
1838
+
1839
+ Enhancments
1840
+
1841
+ * Add skip_bundler option to rake task to tell rake task to ignore the presence
1842
+ of a Gemfile (jfelchner)
1843
+ * Add gemfile option to rake task to tell rake task what Gemfile to look for
1844
+ (defaults to 'Gemfile')
1845
+ * Allow passing caller trace into Metadata to support extensions (Glenn
1846
+ Vanderburg)
1847
+ * Add deprecation warning for Spec::Runner.configure to aid upgrade from
1848
+ RSpec-1
1849
+ * Add deprecated Spec::Rake::SpecTask to aid upgrade from RSpec-1
1850
+ * Add 'autospec' command with helpful message to aid upgrade from RSpec-1
1851
+ * Add support for filtering with tags on CLI (Lailson Bandeira)
1852
+ * Add a helpful message about RUBYOPT when require fails in bin/rspec (slyphon)
1853
+ * Add "-Ilib" to the default rcov options (Tianyi Cui)
1854
+ * Make the expectation framework configurable (default rspec, of course)
1855
+ (Justin Ko)
1856
+ * Add 'pending' to be conditional (Myron Marston)
1857
+ * Add explicit support for :if and :unless as metadata keys for conditional run
1858
+ of examples (Myron Marston)
1859
+ * Add --fail-fast command line option (Jeff Kreeftmeijer)
1860
+
1861
+ Bug fixes
1862
+
1863
+ * Eliminate stack overflow with "subject { self }"
1864
+ * Require 'rspec/core' in the Raketask (ensures it required when running rcov)
1865
+
1866
+ ### 2.0.1 / 2010-10-18
1867
+
1868
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0...v2.0.1)
1869
+
1870
+ Bug fixes
1871
+
1872
+ * Restore color when using spork + autotest
1873
+ * Pending examples without docstrings render the correct message (Josep M.
1874
+ Bach)
1875
+ * Fixed bug where a failure in a spec file ending in anything but _spec.rb
1876
+ would fail in a confusing way.
1877
+ * Support backtrace lines from erb templates in html formatter (Alex Crichton)
1878
+
1879
+ ### 2.0.0 / 2010-10-10
1880
+
1881
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.rc...v2.0.0)
1882
+
1883
+ RSpec-1 compatibility
1884
+
1885
+ * Rake task uses ENV["SPEC"] as file list if present
1886
+
1887
+ Bug fixes
1888
+
1889
+ * Bug Fix: optparse --out foo.txt (Leonardo Bessa)
1890
+ * Suppress color codes for non-tty output (except autotest)
1891
+
1892
+ ### 2.0.0.rc / 2010-10-05
1893
+
1894
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.22...v2.0.0.rc)
1895
+
1896
+ Enhancements
1897
+
1898
+ * implicitly require unknown formatters so you don't have to require the file
1899
+ explicitly on the commmand line (Michael Grosser)
1900
+ * add --out/-o option to assign output target
1901
+ * added fail_fast configuration option to abort on first failure
1902
+ * support a Hash subject (its([:key]) { should == value }) (Josep M. Bach)
1903
+
1904
+ Bug fixes
1905
+
1906
+ * Explicitly require rspec version to fix broken rdoc task (Hans de Graaff)
1907
+ * Ignore backtrace lines that come from other languages, like Java or
1908
+ Javascript (Charles Lowell)
1909
+ * Rake task now does what is expected when setting (or not setting)
1910
+ fail_on_error and verbose
1911
+ * Fix bug in which before/after(:all) hooks were running on excluded nested
1912
+ groups (Myron Marston)
1913
+ * Fix before(:all) error handling so that it fails examples in nested groups,
1914
+ too (Myron Marston)
1915
+
1916
+ ### 2.0.0.beta.22 / 2010-09-12
1917
+
1918
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.20...v2.0.0.beta.22)
1919
+
1920
+ Enhancements
1921
+
1922
+ * removed at_exit hook
1923
+ * CTRL-C stops the run (almost) immediately
1924
+ * first it cleans things up by running the appropriate after(:all) and
1925
+ after(:suite) hooks
1926
+ * then it reports on any examples that have already run
1927
+ * cleaned up rake task
1928
+ * generate correct task under variety of conditions
1929
+ * options are more consistent
1930
+ * deprecated redundant options
1931
+ * run 'bundle exec autotest' when Gemfile is present
1932
+ * support ERB in .rspec options files (Justin Ko)
1933
+ * depend on bundler for development tasks (Myron Marston)
1934
+ * add example_group_finished to formatters and reporter (Roman Chernyatchik)
1935
+
1936
+ Bug fixes
1937
+
1938
+ * support paths with spaces when using autotest (Andreas Neuhaus)
1939
+ * fix module_exec with ruby 1.8.6 (Myron Marston)
1940
+ * remove context method from top-level
1941
+ * was conflicting with irb, for example
1942
+ * errors in before(:all) are now reported correctly (Chad Humphries)
1943
+
1944
+ Removals
1945
+
1946
+ * removed -o --options-file command line option
1947
+ * use ./.rspec and ~/.rspec