cvss-suite 1.0.0

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