tuktuk-rails 0.0.6 → 0.0.7

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 (531) hide show
  1. checksums.yaml +4 -4
  2. data/lib/tasks/tuktuk_tasks.rake +0 -1
  3. data/lib/tuktuk/version.rb +1 -1
  4. data/{app → vendor}/assets/javascripts/index.js +0 -0
  5. data/{app → vendor}/assets/javascripts/tuktuk/tuktuk.js +0 -0
  6. data/{app → vendor}/assets/stylesheets/index.css +0 -0
  7. data/{app → vendor}/assets/stylesheets/tuktuk/tuktuk.css +0 -0
  8. data/{app → vendor}/assets/stylesheets/tuktuk/tuktuk.icons.css +0 -0
  9. data/{app → vendor}/assets/stylesheets/tuktuk/tuktuk.theme.css +0 -0
  10. data/vendor/bundle/ruby/2.0.0/bin/autospec +23 -0
  11. data/vendor/bundle/ruby/2.0.0/bin/htmldiff +25 -0
  12. data/vendor/bundle/ruby/2.0.0/bin/ldiff +25 -0
  13. data/vendor/bundle/ruby/2.0.0/bin/rspec +23 -0
  14. data/vendor/bundle/ruby/2.0.0/build_info/diff-lcs-1.2.5.info +1 -0
  15. data/vendor/bundle/ruby/2.0.0/build_info/rspec-2.14.1.info +1 -0
  16. data/vendor/bundle/ruby/2.0.0/build_info/rspec-core-2.14.7.info +1 -0
  17. data/vendor/bundle/ruby/2.0.0/build_info/rspec-expectations-2.14.4.info +1 -0
  18. data/vendor/bundle/ruby/2.0.0/build_info/rspec-mocks-2.14.4.info +1 -0
  19. data/vendor/bundle/ruby/2.0.0/cache/diff-lcs-1.2.5.gem +0 -0
  20. data/vendor/bundle/ruby/2.0.0/cache/rspec-2.14.1.gem +0 -0
  21. data/vendor/bundle/ruby/2.0.0/cache/rspec-core-2.14.7.gem +0 -0
  22. data/vendor/bundle/ruby/2.0.0/cache/rspec-expectations-2.14.4.gem +0 -0
  23. data/vendor/bundle/ruby/2.0.0/cache/rspec-mocks-2.14.4.gem +0 -0
  24. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Contributing.rdoc +64 -0
  25. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Gemfile +20 -0
  26. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/History.rdoc +152 -0
  27. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/License.rdoc +39 -0
  28. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Manifest.txt +38 -0
  29. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/README.rdoc +85 -0
  30. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Rakefile +41 -0
  31. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/autotest/discover.rb +1 -0
  32. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/bin/htmldiff +32 -0
  33. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/bin/ldiff +6 -0
  34. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/docs/COPYING.txt +339 -0
  35. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/docs/artistic.txt +127 -0
  36. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff-lcs.rb +3 -0
  37. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs.rb +805 -0
  38. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/array.rb +7 -0
  39. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/block.rb +37 -0
  40. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/callbacks.rb +322 -0
  41. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/change.rb +177 -0
  42. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/htmldiff.rb +149 -0
  43. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/hunk.rb +276 -0
  44. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/internals.rb +301 -0
  45. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/ldiff.rb +195 -0
  46. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/string.rb +5 -0
  47. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/change_spec.rb +65 -0
  48. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb +47 -0
  49. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/hunk_spec.rb +72 -0
  50. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/issues_spec.rb +24 -0
  51. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/lcs_spec.rb +54 -0
  52. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/patch_spec.rb +414 -0
  53. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/sdiff_spec.rb +214 -0
  54. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/spec_helper.rb +290 -0
  55. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/traverse_balanced_spec.rb +310 -0
  56. data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/traverse_sequences_spec.rb +139 -0
  57. data/vendor/bundle/ruby/2.0.0/gems/rspec-2.14.1/License.txt +24 -0
  58. data/vendor/bundle/ruby/2.0.0/gems/rspec-2.14.1/README.md +47 -0
  59. data/vendor/bundle/ruby/2.0.0/gems/rspec-2.14.1/lib/rspec.rb +3 -0
  60. data/vendor/bundle/ruby/2.0.0/gems/rspec-2.14.1/lib/rspec/version.rb +5 -0
  61. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/Changelog.md +904 -0
  62. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/License.txt +24 -0
  63. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/README.md +261 -0
  64. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/exe/autospec +13 -0
  65. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/exe/rspec +25 -0
  66. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/Autotest.md +38 -0
  67. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/README.md +17 -0
  68. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/Upgrade.md +364 -0
  69. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/README.md +28 -0
  70. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/example_name_option.feature +97 -0
  71. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/exit_status.feature +82 -0
  72. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/format_option.feature +75 -0
  73. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/init.feature +18 -0
  74. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/line_number_appended_to_path.feature +140 -0
  75. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/line_number_option.feature +58 -0
  76. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/order.feature +29 -0
  77. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/pattern_option.feature +49 -0
  78. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/rake_task.feature +122 -0
  79. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/require_option.feature +43 -0
  80. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/ruby.feature +22 -0
  81. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/tag.feature +98 -0
  82. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/warnings_option.feature +29 -0
  83. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/alias_example_to.feature +48 -0
  84. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/backtrace_clean_patterns.feature +102 -0
  85. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/custom_settings.feature +84 -0
  86. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/default_path.feature +38 -0
  87. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/deprecation_stream.feature +58 -0
  88. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/fail_fast.feature +77 -0
  89. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/failure_exit_code.feature +36 -0
  90. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/order_and_seed.feature +3 -0
  91. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/output_stream.feature +24 -0
  92. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/pattern.feature +38 -0
  93. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/profile.feature +220 -0
  94. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/read_options_from_file.feature +90 -0
  95. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/run_all_when_everything_filtered.feature +76 -0
  96. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/show_failures_in_pending_blocks.feature +61 -0
  97. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/treat_symbols_as_metadata_keys_with_true_values.feature +52 -0
  98. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/example_groups/basic_structure.feature +55 -0
  99. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/example_groups/shared_context.feature +74 -0
  100. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/example_groups/shared_examples.feature +294 -0
  101. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/expectation_framework_integration/configure_expectation_framework.feature +102 -0
  102. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/filtering/exclusion_filters.feature +138 -0
  103. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/filtering/if_and_unless.feature +168 -0
  104. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/filtering/inclusion_filters.feature +105 -0
  105. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/formatters/configurable_colors.feature +31 -0
  106. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/formatters/custom_formatter.feature +36 -0
  107. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/formatters/json_formatter.feature +30 -0
  108. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/formatters/text_formatter.feature +46 -0
  109. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/helper_methods/arbitrary_methods.feature +40 -0
  110. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/helper_methods/let.feature +50 -0
  111. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/helper_methods/modules.feature +149 -0
  112. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/hooks/around_hooks.feature +343 -0
  113. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/hooks/before_and_after_hooks.feature +427 -0
  114. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/hooks/filtering.feature +234 -0
  115. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/metadata/current_example.feature +17 -0
  116. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/metadata/described_class.feature +17 -0
  117. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/metadata/user_defined.feature +113 -0
  118. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/mock_framework_integration/use_any_framework.feature +106 -0
  119. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/mock_framework_integration/use_flexmock.feature +96 -0
  120. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/mock_framework_integration/use_mocha.feature +97 -0
  121. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/mock_framework_integration/use_rr.feature +98 -0
  122. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/mock_framework_integration/use_rspec.feature +97 -0
  123. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/pending/pending_examples.feature +229 -0
  124. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/spec_files/arbitrary_file_suffix.feature +13 -0
  125. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/step_definitions/additional_cli_steps.rb +49 -0
  126. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/subject/attribute_of_subject.feature +124 -0
  127. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/subject/explicit_subject.feature +101 -0
  128. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/subject/implicit_receiver.feature +29 -0
  129. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/subject/implicit_subject.feature +63 -0
  130. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/support/env.rb +14 -0
  131. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/support/rubinius.rb +6 -0
  132. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/autotest/discover.rb +1 -0
  133. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/autotest/rspec2.rb +73 -0
  134. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/autorun.rb +2 -0
  135. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core.rb +169 -0
  136. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/backtrace_cleaner.rb +46 -0
  137. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/backward_compatibility.rb +55 -0
  138. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/command_line.rb +36 -0
  139. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/configuration.rb +1174 -0
  140. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/configuration_options.rb +156 -0
  141. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/deprecation.rb +31 -0
  142. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/drb_command_line.rb +26 -0
  143. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/drb_options.rb +87 -0
  144. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/dsl.rb +26 -0
  145. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/example.rb +325 -0
  146. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/example_group.rb +479 -0
  147. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/extensions/instance_eval_with_args.rb +44 -0
  148. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/extensions/kernel.rb +9 -0
  149. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/extensions/module_eval_with_args.rb +38 -0
  150. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/extensions/ordered.rb +27 -0
  151. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/filter_manager.rb +203 -0
  152. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters.rb +55 -0
  153. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/base_formatter.rb +246 -0
  154. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/base_text_formatter.rb +329 -0
  155. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/deprecation_formatter.rb +39 -0
  156. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/documentation_formatter.rb +67 -0
  157. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/helpers.rb +110 -0
  158. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/html_formatter.rb +155 -0
  159. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/html_printer.rb +408 -0
  160. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/json_formatter.rb +70 -0
  161. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/progress_formatter.rb +32 -0
  162. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/snippet_extractor.rb +92 -0
  163. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/text_mate_formatter.rb +34 -0
  164. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/hooks.rb +519 -0
  165. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/memoized_helpers.rb +514 -0
  166. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/metadata.rb +299 -0
  167. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/metadata_hash_builder.rb +97 -0
  168. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking/with_absolutely_nothing.rb +11 -0
  169. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking/with_flexmock.rb +27 -0
  170. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking/with_mocha.rb +52 -0
  171. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking/with_rr.rb +27 -0
  172. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking/with_rspec.rb +27 -0
  173. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/option_parser.rb +219 -0
  174. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/pending.rb +113 -0
  175. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/project_initializer.rb +86 -0
  176. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/rake_task.rb +206 -0
  177. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/reporter.rb +132 -0
  178. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/ruby_project.rb +44 -0
  179. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/runner.rb +87 -0
  180. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/shared_context.rb +55 -0
  181. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/shared_example_group.rb +185 -0
  182. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/shared_example_group/collection.rb +43 -0
  183. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/version.rb +8 -0
  184. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/world.rb +127 -0
  185. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/autotest/discover_spec.rb +19 -0
  186. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/autotest/failed_results_re_spec.rb +45 -0
  187. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/autotest/rspec_spec.rb +133 -0
  188. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/command_line/order_spec.rb +204 -0
  189. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/backtrace_cleaner_spec.rb +68 -0
  190. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/command_line_spec.rb +108 -0
  191. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/command_line_spec_output.txt +0 -0
  192. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/configuration_options_spec.rb +417 -0
  193. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/configuration_spec.rb +1561 -0
  194. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/deprecation_spec.rb +46 -0
  195. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/deprecations_spec.rb +73 -0
  196. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/drb_command_line_spec.rb +102 -0
  197. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/drb_options_spec.rb +193 -0
  198. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/dsl_spec.rb +25 -0
  199. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/example_group_spec.rb +1187 -0
  200. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/example_spec.rb +465 -0
  201. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/filter_manager_spec.rb +246 -0
  202. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/base_formatter_spec.rb +108 -0
  203. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/base_text_formatter_spec.rb +494 -0
  204. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/deprecation_formatter_spec.rb +96 -0
  205. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/documentation_formatter_spec.rb +88 -0
  206. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/helpers_spec.rb +104 -0
  207. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html +404 -0
  208. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.8.7-rbx.html +477 -0
  209. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.8.7.html +414 -0
  210. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.9.2.html +425 -0
  211. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.9.3-jruby.html +404 -0
  212. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.9.3-rbx.html +477 -0
  213. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.9.3.html +425 -0
  214. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-2.0.0.html +425 -0
  215. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatter_spec.rb +110 -0
  216. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/json_formatter_spec.rb +115 -0
  217. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/progress_formatter_spec.rb +30 -0
  218. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/snippet_extractor_spec.rb +26 -0
  219. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html +395 -0
  220. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.8.7-rbx.html +477 -0
  221. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html +414 -0
  222. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html +425 -0
  223. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.9.3-jruby.html +404 -0
  224. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.9.3-rbx.html +477 -0
  225. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.9.3.html +425 -0
  226. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-2.0.0.html +425 -0
  227. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatter_spec.rb +96 -0
  228. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/hooks_filtering_spec.rb +227 -0
  229. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/hooks_spec.rb +267 -0
  230. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/kernel_extensions_spec.rb +9 -0
  231. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/memoized_helpers_spec.rb +688 -0
  232. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/metadata_spec.rb +491 -0
  233. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/option_parser_spec.rb +242 -0
  234. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/pending_example_spec.rb +220 -0
  235. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/project_initializer_spec.rb +130 -0
  236. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/rake_task_spec.rb +181 -0
  237. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/reporter_spec.rb +141 -0
  238. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/a_bar.rb +0 -0
  239. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/a_foo.rb +0 -0
  240. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/a_spec.rb +1 -0
  241. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/custom_example_group_runner.rb +14 -0
  242. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/formatter_specs.rb +60 -0
  243. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/utf8_encoded.rb +8 -0
  244. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/rspec_matchers_spec.rb +45 -0
  245. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/ruby_project_spec.rb +26 -0
  246. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/runner_spec.rb +82 -0
  247. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/shared_context_spec.rb +114 -0
  248. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/shared_example_group/collection_spec.rb +70 -0
  249. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/shared_example_group_spec.rb +120 -0
  250. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/world_spec.rb +142 -0
  251. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core_spec.rb +74 -0
  252. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/spec_helper.rb +132 -0
  253. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/config_options_helper.rb +15 -0
  254. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/helper_methods.rb +36 -0
  255. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/in_sub_process.rb +37 -0
  256. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/isolate_load_path_mutation.rb +6 -0
  257. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/isolated_directory.rb +10 -0
  258. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/isolated_home_directory.rb +16 -0
  259. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/matchers.rb +65 -0
  260. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/mathn_integration_support.rb +12 -0
  261. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/sandboxed_mock_space.rb +100 -0
  262. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/shared_example_groups.rb +41 -0
  263. data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/spec_files.rb +44 -0
  264. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/Changelog.md +419 -0
  265. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/License.txt +23 -0
  266. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/README.md +184 -0
  267. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/README.md +48 -0
  268. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/Upgrade.md +53 -0
  269. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/README.md +90 -0
  270. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/be.feature +175 -0
  271. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/be_within.feature +48 -0
  272. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/cover.feature +47 -0
  273. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/end_with.feature +48 -0
  274. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/equality.feature +139 -0
  275. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/exist.feature +45 -0
  276. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/expect_change.feature +59 -0
  277. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/expect_error.feature +144 -0
  278. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/have.feature +109 -0
  279. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/include.feature +174 -0
  280. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/match.feature +52 -0
  281. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/operators.feature +227 -0
  282. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/predicates.feature +137 -0
  283. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/respond_to.feature +84 -0
  284. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/satisfy.feature +33 -0
  285. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/start_with.feature +48 -0
  286. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/throw_symbol.feature +91 -0
  287. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/types.feature +116 -0
  288. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/yield.feature +161 -0
  289. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/custom_matchers/access_running_example.feature +53 -0
  290. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/custom_matchers/define_diffable_matcher.feature +27 -0
  291. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/custom_matchers/define_matcher.feature +368 -0
  292. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/custom_matchers/define_matcher_outside_rspec.feature +38 -0
  293. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/custom_matchers/define_matcher_with_fluent_interface.feature +24 -0
  294. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/customized_message.feature +22 -0
  295. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/diffing.feature +85 -0
  296. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/implicit_docstrings.feature +52 -0
  297. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/step_definitions/additional_cli_steps.rb +22 -0
  298. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/support/env.rb +14 -0
  299. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/support/rubinius.rb +6 -0
  300. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/syntax_configuration.feature +71 -0
  301. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/test_frameworks/test_unit.feature +44 -0
  302. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec-expectations.rb +1 -0
  303. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations.rb +73 -0
  304. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/deprecation.rb +31 -0
  305. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/differ.rb +154 -0
  306. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/errors.rb +9 -0
  307. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/expectation_target.rb +87 -0
  308. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/extensions.rb +2 -0
  309. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/extensions/array.rb +9 -0
  310. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/extensions/object.rb +29 -0
  311. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/fail_with.rb +79 -0
  312. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/handler.rb +68 -0
  313. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/syntax.rb +164 -0
  314. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/version.rb +9 -0
  315. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers.rb +694 -0
  316. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/be_close.rb +9 -0
  317. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in.rb +39 -0
  318. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/base_matcher.rb +68 -0
  319. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/be.rb +197 -0
  320. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/be_instance_of.rb +15 -0
  321. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/be_kind_of.rb +11 -0
  322. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/be_within.rb +55 -0
  323. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/change.rb +141 -0
  324. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/cover.rb +21 -0
  325. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/eq.rb +22 -0
  326. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/eql.rb +23 -0
  327. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/equal.rb +48 -0
  328. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/exist.rb +26 -0
  329. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/has.rb +48 -0
  330. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/have.rb +124 -0
  331. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/include.rb +61 -0
  332. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/match.rb +17 -0
  333. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/match_array.rb +51 -0
  334. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/raise_error.rb +127 -0
  335. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/respond_to.rb +74 -0
  336. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/satisfy.rb +30 -0
  337. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/start_and_end_with.rb +48 -0
  338. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/throw_symbol.rb +94 -0
  339. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/yield.rb +296 -0
  340. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/compatibility.rb +14 -0
  341. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/configuration.rb +108 -0
  342. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/dsl.rb +24 -0
  343. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/extensions/instance_eval_with_args.rb +39 -0
  344. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/generated_descriptions.rb +35 -0
  345. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/matcher.rb +300 -0
  346. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/method_missing.rb +12 -0
  347. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/operator_matcher.rb +113 -0
  348. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/pretty.rb +70 -0
  349. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/test_unit_integration.rb +11 -0
  350. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/expectations/differ_spec.rb +229 -0
  351. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/expectations/expectation_target_spec.rb +82 -0
  352. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/expectations/extensions/kernel_spec.rb +67 -0
  353. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/expectations/fail_with_spec.rb +114 -0
  354. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/expectations/handler_spec.rb +227 -0
  355. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/expectations/syntax_spec.rb +139 -0
  356. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/expectations_spec.rb +50 -0
  357. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/base_matcher_spec.rb +62 -0
  358. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/be_close_spec.rb +22 -0
  359. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/be_instance_of_spec.rb +63 -0
  360. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/be_kind_of_spec.rb +41 -0
  361. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/be_spec.rb +522 -0
  362. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/be_within_spec.rb +137 -0
  363. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/change_spec.rb +567 -0
  364. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/configuration_spec.rb +206 -0
  365. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/cover_spec.rb +69 -0
  366. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/description_generation_spec.rb +190 -0
  367. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/dsl_spec.rb +57 -0
  368. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/eq_spec.rb +60 -0
  369. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/eql_spec.rb +41 -0
  370. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/equal_spec.rb +78 -0
  371. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/exist_spec.rb +124 -0
  372. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/has_spec.rb +122 -0
  373. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/have_spec.rb +455 -0
  374. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/include_matcher_integration_spec.rb +30 -0
  375. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/include_spec.rb +531 -0
  376. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/match_array_spec.rb +194 -0
  377. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/match_spec.rb +74 -0
  378. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/matcher_spec.rb +471 -0
  379. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/matchers_spec.rb +37 -0
  380. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/method_missing_spec.rb +28 -0
  381. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/operator_matcher_spec.rb +252 -0
  382. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/raise_error_spec.rb +535 -0
  383. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/respond_to_spec.rb +292 -0
  384. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/satisfy_spec.rb +44 -0
  385. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/start_with_end_with_spec.rb +186 -0
  386. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/throw_symbol_spec.rb +116 -0
  387. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/yield_spec.rb +514 -0
  388. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/spec_helper.rb +54 -0
  389. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/support/classes.rb +56 -0
  390. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/support/in_sub_process.rb +38 -0
  391. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/support/matchers.rb +22 -0
  392. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/support/ruby_version.rb +10 -0
  393. data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/support/shared_examples.rb +13 -0
  394. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/Changelog.md +420 -0
  395. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/License.txt +23 -0
  396. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/README.md +315 -0
  397. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/README.md +67 -0
  398. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/Scope.md +17 -0
  399. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/Upgrade.md +22 -0
  400. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/argument_matchers/README.md +27 -0
  401. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/argument_matchers/explicit.feature +59 -0
  402. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/argument_matchers/general_matchers.feature +85 -0
  403. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/argument_matchers/type_matchers.feature +26 -0
  404. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/README.md +73 -0
  405. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/allow_any_instance_of.feature +26 -0
  406. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/any_instance.feature +21 -0
  407. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/block_local_expectations.feature.pending +55 -0
  408. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/call_original.feature +24 -0
  409. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/expect_any_instance_of.feature +27 -0
  410. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/expect_message_using_expect.feature +107 -0
  411. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/expect_message_using_should_receive.feature +118 -0
  412. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/receive_counts.feature +209 -0
  413. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/warn_when_expectation_is_set_on_nil.feature +50 -0
  414. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/README.md +73 -0
  415. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/any_instance.feature +136 -0
  416. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/as_null_object.feature +40 -0
  417. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/simple_return_value_with_allow.feature +44 -0
  418. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/simple_return_value_with_stub.feature +64 -0
  419. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/stub_chain.feature +51 -0
  420. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/stub_implementation.feature +48 -0
  421. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/to_ary.feature +51 -0
  422. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/mutating_constants/README.md +82 -0
  423. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/mutating_constants/hiding_defined_constant.feature +64 -0
  424. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/mutating_constants/stub_defined_constant.feature +79 -0
  425. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/mutating_constants/stub_undefined_constant.feature +50 -0
  426. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/outside_rspec/configuration.feature +62 -0
  427. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/outside_rspec/standalone.feature +33 -0
  428. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/spies/spy_partial_mock_method.feature +34 -0
  429. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/spies/spy_pure_mock_method.feature +76 -0
  430. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/spies/spy_unstubbed_method.feature +18 -0
  431. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/step_definitions/additional_cli_steps.rb +11 -0
  432. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/support/env.rb +13 -0
  433. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/support/rubinius.rb +6 -0
  434. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/test_frameworks/test_unit.feature +43 -0
  435. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks.rb +96 -0
  436. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/any_instance/chain.rb +94 -0
  437. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/any_instance/expectation_chain.rb +42 -0
  438. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/any_instance/message_chains.rb +60 -0
  439. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/any_instance/recorder.rb +211 -0
  440. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/any_instance/stub_chain.rb +40 -0
  441. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
  442. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/argument_list_matcher.rb +97 -0
  443. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/argument_matchers.rb +238 -0
  444. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/configuration.rb +55 -0
  445. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/deprecation.rb +18 -0
  446. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/error_generator.rb +179 -0
  447. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/errors.rb +12 -0
  448. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/example_methods.rb +156 -0
  449. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/extensions/instance_exec.rb +34 -0
  450. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/extensions/marshal.rb +17 -0
  451. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/framework.rb +34 -0
  452. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/instance_method_stasher.rb +94 -0
  453. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/matchers/have_received.rb +93 -0
  454. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/matchers/receive.rb +97 -0
  455. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/message_expectation.rb +583 -0
  456. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/method_double.rb +271 -0
  457. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/mock.rb +7 -0
  458. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/mutate_const.rb +403 -0
  459. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/order_group.rb +40 -0
  460. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/proxy.rb +223 -0
  461. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/proxy_for_nil.rb +37 -0
  462. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/space.rb +91 -0
  463. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/standalone.rb +3 -0
  464. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/stub_chain.rb +51 -0
  465. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/syntax.rb +349 -0
  466. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/targets.rb +69 -0
  467. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/test_double.rb +135 -0
  468. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/version.rb +7 -0
  469. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/spec/mocks.rb +4 -0
  470. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/and_call_original_spec.rb +243 -0
  471. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/and_yield_spec.rb +127 -0
  472. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/any_instance/message_chains_spec.rb +41 -0
  473. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/any_instance_spec.rb +987 -0
  474. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/any_number_of_times_spec.rb +36 -0
  475. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/argument_expectation_spec.rb +32 -0
  476. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/at_least_spec.rb +151 -0
  477. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/at_most_spec.rb +90 -0
  478. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/block_return_value_spec.rb +88 -0
  479. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_10260_spec.rb +8 -0
  480. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_10263_spec.rb +27 -0
  481. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_11545_spec.rb +32 -0
  482. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_496_spec.rb +17 -0
  483. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_600_spec.rb +22 -0
  484. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_7611_spec.rb +16 -0
  485. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_8165_spec.rb +31 -0
  486. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_830_spec.rb +21 -0
  487. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_957_spec.rb +22 -0
  488. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/combining_implementation_instructions_spec.rb +205 -0
  489. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/configuration_spec.rb +150 -0
  490. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/double_spec.rb +24 -0
  491. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/extensions/marshal_spec.rb +54 -0
  492. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/failing_argument_matchers_spec.rb +110 -0
  493. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/hash_excluding_matcher_spec.rb +67 -0
  494. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/hash_including_matcher_spec.rb +90 -0
  495. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/instance_method_stasher_spec.rb +58 -0
  496. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/matchers/have_received_spec.rb +266 -0
  497. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/matchers/receive_spec.rb +336 -0
  498. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/methods_spec.rb +27 -0
  499. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/mock_ordering_spec.rb +103 -0
  500. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/mock_space_spec.rb +113 -0
  501. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/mock_spec.rb +798 -0
  502. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/multiple_return_value_spec.rb +132 -0
  503. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/mutate_const_spec.rb +501 -0
  504. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/nil_expectation_warning_spec.rb +68 -0
  505. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/null_object_mock_spec.rb +123 -0
  506. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/once_counts_spec.rb +52 -0
  507. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/options_hash_spec.rb +35 -0
  508. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/partial_mock_spec.rb +205 -0
  509. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/partial_mock_using_mocks_directly_spec.rb +95 -0
  510. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/passing_argument_matchers_spec.rb +142 -0
  511. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/precise_counts_spec.rb +68 -0
  512. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/record_messages_spec.rb +26 -0
  513. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/serialization_spec.rb +89 -0
  514. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/space_spec.rb +32 -0
  515. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/stash_spec.rb +46 -0
  516. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/stub_chain_spec.rb +154 -0
  517. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/stub_implementation_spec.rb +81 -0
  518. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/stub_spec.rb +353 -0
  519. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/stubbed_message_expectations_spec.rb +58 -0
  520. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/syntax_agnostic_message_matchers_spec.rb +81 -0
  521. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/test_double_spec.rb +67 -0
  522. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/to_ary_spec.rb +54 -0
  523. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/twice_counts_spec.rb +66 -0
  524. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks_spec.rb +65 -0
  525. data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/spec_helper.rb +60 -0
  526. data/vendor/bundle/ruby/2.0.0/specifications/diff-lcs-1.2.5.gemspec +65 -0
  527. data/vendor/bundle/ruby/2.0.0/specifications/rspec-2.14.1.gemspec +39 -0
  528. data/vendor/bundle/ruby/2.0.0/specifications/rspec-core-2.14.7.gemspec +58 -0
  529. data/vendor/bundle/ruby/2.0.0/specifications/rspec-expectations-2.14.4.gemspec +40 -0
  530. data/vendor/bundle/ruby/2.0.0/specifications/rspec-mocks-2.14.4.gemspec +37 -0
  531. metadata +528 -7
@@ -0,0 +1,139 @@
1
+ # -*- ruby encoding: utf-8 -*-
2
+
3
+ require 'spec_helper'
4
+
5
+ describe "Diff::LCS.traverse_sequences" do
6
+ describe "callback with no finishers" do
7
+ describe "over (seq1, seq2)" do
8
+ before(:each) do
9
+ @callback_s1_s2 = simple_callback_no_finishers
10
+ Diff::LCS.traverse_sequences(seq1, seq2, @callback_s1_s2)
11
+
12
+ @callback_s2_s1 = simple_callback_no_finishers
13
+ Diff::LCS.traverse_sequences(seq2, seq1, @callback_s2_s1)
14
+ end
15
+
16
+ it "should have the correct LCS result on left-matches" do
17
+ @callback_s1_s2.matched_a.should == correct_lcs
18
+ @callback_s2_s1.matched_a.should == correct_lcs
19
+ end
20
+
21
+ it "should have the correct LCS result on right-matches" do
22
+ @callback_s1_s2.matched_b.should == correct_lcs
23
+ @callback_s2_s1.matched_b.should == correct_lcs
24
+ end
25
+
26
+ it "should have the correct skipped sequences with the left sequence" do
27
+ @callback_s1_s2.discards_a.should == skipped_seq1
28
+ @callback_s2_s1.discards_a.should == skipped_seq2
29
+ end
30
+
31
+ it "should have the correct skipped sequences with the right sequence" do
32
+ @callback_s1_s2.discards_b.should == skipped_seq2
33
+ @callback_s2_s1.discards_b.should == skipped_seq1
34
+ end
35
+
36
+ it "should not have anything done markers from the left or right sequences" do
37
+ @callback_s1_s2.done_a.should be_empty
38
+ @callback_s1_s2.done_b.should be_empty
39
+ @callback_s2_s1.done_a.should be_empty
40
+ @callback_s2_s1.done_b.should be_empty
41
+ end
42
+ end
43
+
44
+ describe "over (hello, hello)" do
45
+ before(:each) do
46
+ @callback = simple_callback_no_finishers
47
+ Diff::LCS.traverse_sequences(hello, hello, @callback)
48
+ end
49
+
50
+ it "should have the correct LCS result on left-matches" do
51
+ @callback.matched_a.should == hello.split(//)
52
+ end
53
+
54
+ it "should have the correct LCS result on right-matches" do
55
+ @callback.matched_b.should == hello.split(//)
56
+ end
57
+
58
+ it "should have the correct skipped sequences with the left sequence", :only => true do
59
+ @callback.discards_a.should be_empty
60
+ end
61
+
62
+ it "should have the correct skipped sequences with the right sequence" do
63
+ @callback.discards_b.should be_empty
64
+ end
65
+
66
+ it "should not have anything done markers from the left or right sequences" do
67
+ @callback.done_a.should be_empty
68
+ @callback.done_b.should be_empty
69
+ end
70
+ end
71
+
72
+ describe "over (hello_ary, hello_ary)" do
73
+ before(:each) do
74
+ @callback = simple_callback_no_finishers
75
+ Diff::LCS.traverse_sequences(hello_ary, hello_ary, @callback)
76
+ end
77
+
78
+ it "should have the correct LCS result on left-matches" do
79
+ @callback.matched_a.should == hello_ary
80
+ end
81
+
82
+ it "should have the correct LCS result on right-matches" do
83
+ @callback.matched_b.should == hello_ary
84
+ end
85
+
86
+ it "should have the correct skipped sequences with the left sequence" do
87
+ @callback.discards_a.should be_empty
88
+ end
89
+
90
+ it "should have the correct skipped sequences with the right sequence" do
91
+ @callback.discards_b.should be_empty
92
+ end
93
+
94
+ it "should not have anything done markers from the left or right sequences" do
95
+ @callback.done_a.should be_empty
96
+ @callback.done_b.should be_empty
97
+ end
98
+ end
99
+ end
100
+
101
+ describe "callback with finisher" do
102
+ before(:each) do
103
+ @callback_s1_s2 = simple_callback
104
+ Diff::LCS.traverse_sequences(seq1, seq2, @callback_s1_s2)
105
+ @callback_s2_s1 = simple_callback
106
+ Diff::LCS.traverse_sequences(seq2, seq1, @callback_s2_s1)
107
+ end
108
+
109
+ it "should have the correct LCS result on left-matches" do
110
+ @callback_s1_s2.matched_a.should == correct_lcs
111
+ @callback_s2_s1.matched_a.should == correct_lcs
112
+ end
113
+
114
+ it "should have the correct LCS result on right-matches" do
115
+ @callback_s1_s2.matched_b.should == correct_lcs
116
+ @callback_s2_s1.matched_b.should == correct_lcs
117
+ end
118
+
119
+ it "should have the correct skipped sequences for the left sequence" do
120
+ @callback_s1_s2.discards_a.should == skipped_seq1
121
+ @callback_s2_s1.discards_a.should == skipped_seq2
122
+ end
123
+
124
+ it "should have the correct skipped sequences for the right sequence" do
125
+ @callback_s1_s2.discards_b.should == skipped_seq2
126
+ @callback_s2_s1.discards_b.should == skipped_seq1
127
+ end
128
+
129
+ it "should have done markers differently-sized sequences" do
130
+ @callback_s1_s2.done_a.should == [[ "p", 9, "s", 10 ]]
131
+ @callback_s1_s2.done_b.should be_empty
132
+
133
+ # 20110731 I don't yet understand why this particular behaviour
134
+ # isn't transitive.
135
+ @callback_s2_s1.done_a.should be_empty
136
+ @callback_s2_s1.done_b.should be_empty
137
+ end
138
+ end
139
+ end
@@ -0,0 +1,24 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2009 Chad Humphries, David Chelimsky
4
+ Copyright (c) 2006 David Chelimsky, The RSpec Development Team
5
+ Copyright (c) 2005 Steven Baker
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining
8
+ a copy of this software and associated documentation files (the
9
+ "Software"), to deal in the Software without restriction, including
10
+ without limitation the rights to use, copy, modify, merge, publish,
11
+ distribute, sublicense, and/or sell copies of the Software, and to
12
+ permit persons to whom the Software is furnished to do so, subject to
13
+ the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be
16
+ included in all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
22
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,47 @@
1
+ # RSpec-2
2
+
3
+ Behaviour Driven Development for Ruby
4
+
5
+ # Description
6
+
7
+ rspec-2.x is a meta-gem, which depends on the rspec-core, rspec-expectations
8
+ and rspec-mocks gems. Each of these can be installed separately and actived in
9
+ isolation with the `gem` command. Among other benefits, this allows you to use
10
+ rspec-expectations, for example, in Test::Unit::TestCase if you happen to
11
+ prefer that style.
12
+
13
+ Conversely, if you like RSpec's approach to declaring example groups and
14
+ examples (`describe` and `it`) but prefer Test::Unit assertions and mocha, rr
15
+ or flexmock for mocking, you'll be able to do that without having to load the
16
+ components of rspec that you're not using.
17
+
18
+ ## Documentation
19
+
20
+ ### rspec-core
21
+
22
+ * [Cucumber features](http://relishapp.com/rspec/rspec-core)
23
+ * [RDoc](http://rubydoc.info/gems/rspec-core/frames)
24
+
25
+ ### rspec-expectations
26
+
27
+ * [Cucumber features](http://relishapp.com/rspec/rspec-expectations)
28
+ * [RDoc](http://rubydoc.info/gems/rspec-expectations/frames)
29
+
30
+ ### rspec-mocks
31
+
32
+ * [Cucumber features](http://relishapp.com/rspec/rspec-mocks)
33
+ * [RDoc](http://rubydoc.info/gems/rspec-mocks/frames)
34
+
35
+ ## Install
36
+
37
+ gem install rspec
38
+
39
+ ## Contribute
40
+
41
+ * [http://github.com/rspec/rspec-dev](http://github.com/rspec/rspec-dev)
42
+
43
+ ## Also see
44
+
45
+ * [http://github.com/rspec/rspec-core](http://github.com/rspec/rspec-core)
46
+ * [http://github.com/rspec/rspec-expectations](http://github.com/rspec/rspec-expectations)
47
+ * [http://github.com/rspec/rspec-mocks](http://github.com/rspec/rspec-mocks)
@@ -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 = '2.14.1'
4
+ end
5
+ end
@@ -0,0 +1,904 @@
1
+ ### 2.14.7 / 2013-10-29
2
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.6...v2.14.7)
3
+
4
+ Bug fixes:
5
+
6
+ * Fix regression in 2.14.6 that broke the Fivemat formatter.
7
+ It depended upon either
8
+ `example.execution_result[:exception].pending_fixed?` (which
9
+ was removed in 2.14.6 to fix an issue with frozen error objects)
10
+ or `RSpec::Core::PendingExampleFixedError` (which was renamed
11
+ to `RSpec::Core::Pending::PendingExampleFixedError` in 2.8.
12
+ This fix makes a constant alias for the old error name.
13
+ (Myron Marston)
14
+
15
+ ### 2.14.6 / 2013-10-15
16
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.5...v2.14.6)
17
+
18
+ Bug fixes:
19
+
20
+ * Format stringified numbers correctly when mathn library is loaded.
21
+ (Jay Hayes)
22
+ * Fix an issue that prevented the use of frozen error objects. (Lars Gierth)
23
+
24
+ ### 2.14.5 / 2013-08-13
25
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.4...v2.14.5)
26
+
27
+ Bug fixes:
28
+
29
+ * Fix a `NoMethodError` that was being raised when there were no shared
30
+ examples or contexts declared and `RSpec.world.reset` is invoked.
31
+ (thepoho, Jon Rowe, Myron Marston)
32
+ * Fix a deprecation warning that was being incorrectly displayed when
33
+ `shared_examples` are declared at top level in a `module` scope.
34
+ (Jon Rowe)
35
+ * Fix after(:all) hooks so consecutive (same context) scopes will run even if
36
+ one raises an error. (Jon Rowe, Trejkaz)
37
+ * JsonFormatter no longer dies if `dump_profile` isn't defined (Alex / @MasterLambaster, Jon Rowe)
38
+
39
+ ### 2.14.4 / 2013-07-21
40
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.3...v2.14.4)
41
+
42
+ Bug fixes
43
+
44
+ * Fix regression in 2.14: ensure configured requires (via `-r` option)
45
+ are loaded before spec files are loaded. This allows the spec files
46
+ to programatically change the file pattern (Jon Rowe).
47
+ * Autoload `RSpec::Mocks` and `RSpec::Expectations` when referenced if
48
+ they are not already loaded (`RSpec::Matches` has been autoloaded
49
+ for a while). In the `rspec` gem, we changed it recently to stop
50
+ loading `rspec/mocks` and `rspec/expectations` by default, as some
51
+ users reported problems where they were intending to use mocha,
52
+ not rspec-mocks, but rspec-mocks was loaded and causing a conflict.
53
+ rspec-core loads mocks and expectations at the appropriate time, so
54
+ it seemed like a safe change -- but caused a problem for some authors
55
+ of libraries that integrate with RSpec. This fixes that problem.
56
+ (Myron Marston)
57
+ * Gracefully handle a command like `rspec --profile path/to/spec.rb`:
58
+ the `path/to/spec.rb` arg was being wrongly treated as the `profile`
59
+ integer arg, which got cast `0` using `to_i`, causing no profiled
60
+ examples to be printed. (Jon Rowe)
61
+
62
+ ### 2.14.3 / 2013-07-13
63
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.2...v2.14.3)
64
+
65
+ Bug fixes
66
+
67
+ * Fix deprecation notices issued from `RSpec::Core::RakeTask` so
68
+ that they work properly when all of rspec-core is not loaded.
69
+ (This was a regression in 2.14) (Jon Rowe)
70
+
71
+ ### 2.14.2 / 2013-07-09
72
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.1...v2.14.2)
73
+
74
+ Bug fixes
75
+
76
+ * Fix regression caused by 2.14.1 release: formatters that
77
+ report that they `respond_to?` a notification, but had
78
+ no corresponding method would raise an error when registered.
79
+ The new fix is to just implement `start` on the deprecation
80
+ formatter to fix the original JRuby/ruby-debug issue.
81
+ (Jon Rowe)
82
+
83
+ ### 2.14.1 / 2013-07-08
84
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.0...v2.14.1)
85
+
86
+ Bug fixes
87
+
88
+ * Address deprecation formatter failure when using `ruby-debug` on
89
+ JRuby: fix `RSpec::Core::Reporter` to not send a notification
90
+ when the formatter's implementation of the notification method
91
+ comes from `Kernel` (Alex Portnov, Jon Rowe).
92
+
93
+ ### 2.14.0 / 2013-07-06
94
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.0.rc1...v2.14.0)
95
+
96
+ Enhancements
97
+
98
+ * Apply focus to examples defined with `fit` (equivalent of
99
+ `it "description", focus: true`) (Michael de Silva)
100
+
101
+ Bug fixes
102
+
103
+ * Ensure methods defined by `let` take precedence over others
104
+ when there is a name collision (e.g. from an included module).
105
+ (Jon Rowe, Andy Lindeman and Myron Marston)
106
+
107
+ ### 2.14.0.rc1 / 2013-05-27
108
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.13.1...v2.14.0.rc1)
109
+
110
+ Enhancements
111
+
112
+ * Improved Windows detection inside Git Bash, for better `--color` handling.
113
+ * Add profiling of the slowest example groups to `--profile` option.
114
+ The output is sorted by the slowest average example groups.
115
+ * Don't show slow examples if there's a failure and both `--fail-fast`
116
+ and `--profile` options are used (Paweł Gościcki).
117
+ * Rather than always adding `spec` to the load path, add the configured
118
+ `--default-path` to the load path (which defaults to `spec`). This
119
+ better supports folks who choose to put their specs in a different
120
+ directory (John Feminella).
121
+ * Add some logic to test time duration precision. Make it a
122
+ function of time, dropping precision as the time increases. (Aaron Kromer)
123
+ * Add new `backtrace_inclusion_patterns` config option. Backtrace lines
124
+ that match one of these patterns will _always_ be included in the
125
+ backtrace, even if they match an exclusion pattern, too (Sam Phippen).
126
+ * Support ERB trim mode using the `-` when parsing `.rspec` as ERB
127
+ (Gabor Garami).
128
+ * Give a better error message when let and subject are called without a block.
129
+ (Sam Phippen).
130
+ * List the precedence of `.rspec-local` in the configuration documentation
131
+ (Sam Phippen)
132
+ * Support `{a,b}` shell expansion syntax in `--pattern` option
133
+ (Konstantin Haase).
134
+ * Add cucumber documentation for --require command line option
135
+ (Bradley Schaefer)
136
+ * Expose configruation options via config:
137
+ * `config.libs` returns the libs configured to be added onto the load path
138
+ * `full_backtrace?` returns the state of the backtrace cleaner
139
+ * `debug?` returns true when the debugger is loaded
140
+ * `line_numbers` returns the line numbers we are filtering by (if any)
141
+ * `full_description` returns the RegExp used to filter descriptions
142
+ (Jon Rowe)
143
+ * Add setters for RSpec.world and RSpec.configuration (Alex Soulim)
144
+ * Configure ruby's warning behaviour with `--warnings` (Jon Rowe)
145
+ * Fix an obscure issue on old versions of `1.8.7` where `Time.dup` wouldn't
146
+ allow access to `Time.now` (Jon Rowe)
147
+ * Make `shared_examples_for` context aware, so that keys may be safely reused
148
+ in multiple contexts without colliding. (Jon Rowe)
149
+ * Add a configurable `deprecation_stream` (Jon Rowe)
150
+ * Publish deprecations through a formatter (David Chelimsky)
151
+
152
+ Bug fixes
153
+
154
+ * Make JSON formatter behave the same when it comes to `--profile` as
155
+ the text formatter (Paweł Gościcki).
156
+ * Fix named subjects so that if an inner group defines a method that
157
+ overrides the named method, `subject` still retains the originally
158
+ declared value (Myron Marston).
159
+ * Fix random ordering so that it does not cause `rand` in examples in
160
+ nested sibling contexts to return the same value (Max Shytikov).
161
+ * Use the new `backtrace_inclusion_patterns` config option to ensure
162
+ that folks who develop code in a directory matching one of the default
163
+ exclusion patterns (e.g. `gems`) still get the normal backtrace
164
+ filtering (Sam Phippen).
165
+ * Fix ordering of `before` hooks so that `before` hooks declared in
166
+ `RSpec.configure` run before `before` hooks declared in a shared
167
+ context (Michi Huber and Tejas Dinkar).
168
+ * Fix `Example#full_description` so that it gets filled in by the last
169
+ matcher description (as `Example#description` already did) when no
170
+ doc string has been provided (David Chelimsky).
171
+ * Fix the memoized methods (`let` and `subject`) leaking `define_method`
172
+ as a `public` method. (Thomas Holmes and Jon Rowe) (#873)
173
+ * Fix warnings coming from the test suite. (Pete Higgins)
174
+
175
+ Deprecations
176
+
177
+ * Deprecate `Configuration#backtrace_clean_patterns` in favor of
178
+ `Configuration#backtrace_exclusion_patterns` for greater consistency
179
+ and symmetry with new `backtrace_inclusion_patterns` config option
180
+ (Sam Phippen).
181
+ * Deprecate `Configuration#requires=` in favor of using ruby's
182
+ `require`. Requires specified by the command line can still be
183
+ accessed by the `Configuration#require` reader. (Bradley Schaefer)
184
+ * Deprecate calling `SharedExampleGroups` defined across sibling contexts
185
+ (Jon Rowe)
186
+
187
+ ### 2.13.1 / 2013-03-12
188
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.13.0...v2.13.1)
189
+
190
+ Bug fixes
191
+
192
+ * Use hook classes as proxies rather than extending hook blocks to support
193
+ lambdas for before/after/around hooks. (David Chelimsky)
194
+ * Fix regression in 2.13.0 that caused confusing behavior when overriding
195
+ a named subject with an unnamed subject in an inner group and then
196
+ referencing the outer group subject's name. The fix for this required
197
+ us to disallow using `super` in a named subject (which is confusing,
198
+ anyway -- named subjects create 2 methods, so which method on the
199
+ parent example group are you `super`ing to?) but `super` in an unnamed
200
+ subject continues to work (Myron Marston).
201
+ * Do not allow a referenced `let` or `subject` in `before(:all)` to cause
202
+ other `let` declarations to leak across examples (Myron Marston).
203
+ * Work around odd ruby 1.9 bug with `String#match` that was triggered
204
+ by passing it a regex from a `let` declaration. For more info, see
205
+ http://bugs.ruby-lang.org/issues/8059 (Aaron Kromer).
206
+ * Add missing `require 'set'` to `base_text_formatter.rb` (Tom
207
+ Anderson).
208
+
209
+ Deprecations
210
+
211
+ * Deprecate accessing `let` or `subject` declarations in `before(:all)`.
212
+ These were not intended to be called in a `before(:all)` hook, as
213
+ they exist to define state that is reset between each example, while
214
+ `before(:all)` exists to define state that is shared across examples
215
+ in an example group (Myron Marston).
216
+
217
+ ### 2.13.0 / 2013-02-23
218
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.2...v2.13.0)
219
+
220
+ Enhancements
221
+
222
+ * Allow `--profile` option to take a count argument that
223
+ determines the number of slow examples to dump
224
+ (Greggory Rothmeier).
225
+ * Add `subject!` that is the analog to `let!`. It defines an
226
+ explicit subject and sets a `before` hook that will invoke
227
+ the subject (Zubin Henner).
228
+ * Fix `let` and `subject` declaration so that `super`
229
+ and `return` can be used in them, just like in a normal
230
+ method. (Myron Marston)
231
+ * Allow output colors to be configured individually.
232
+ (Charlie Maffitt)
233
+ * Always dump slow examples when `--profile` option is given,
234
+ even when an example failed (Myron Marston).
235
+
236
+ Bug fixes
237
+
238
+ * Don't blow up when dumping error output for instances
239
+ of anonymous error classes (Myron Marston).
240
+ * Fix default backtrace filters so lines from projects
241
+ containing "gems" in the name are not filtered, but
242
+ lines from installed gems still are (Myron Marston).
243
+ * Fix autotest command so that is uses double quotes
244
+ rather than single quotes for windows compatibility
245
+ (Jonas Tingeborn).
246
+ * Fix `its` so that uses of `subject` in a `before` or `let`
247
+ declaration in the parent group continue to reference the
248
+ parent group's subject. (Olek Janiszewski)
249
+
250
+ ### 2.12.2 / 2012-12-13
251
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2)
252
+
253
+ Bug fixes
254
+
255
+ * Fix `RSpec::Core::RakeTask` so that it is compatible with rake 0.8.7
256
+ on ruby 1.8.7. We had accidentally broke it in the 2.12 release
257
+ (Myron Marston).
258
+ * Fix `RSpec::Core::RakeTask` so it is tolerant of the `Rspec` constant
259
+ for backwards compatibility (Patrick Van Stee)
260
+
261
+ ### 2.12.1 / 2012-12-01
262
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1)
263
+
264
+ Bug fixes
265
+
266
+ * Specs are run even if another at\_exit hook calls `exit`. This allows
267
+ Test::Unit and RSpec to run together. (Suraj N. Kurapati)
268
+ * Fix full doc string concatenation so that it handles the case of a
269
+ method string (e.g. "#foo") being nested under a context string
270
+ (e.g. "when it is tuesday"), so that we get "when it is tuesday #foo"
271
+ rather than "when it is tuesday#foo". (Myron Marston)
272
+ * Restore public API I unintentionally broke in 2.12.0:
273
+ `RSpec::Core::Formatters::BaseFormatter#format_backtrce(backtrace, example)`
274
+ (Myron Marston).
275
+
276
+ ### 2.12.0 / 2012-11-12
277
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...v2.12.0)
278
+
279
+ Enhancements
280
+
281
+ * Add support for custom ordering strategies for groups and examples.
282
+ (Myron Marston)
283
+ * JSON Formatter (Alex Chaffee)
284
+ * Refactor rake task internals (Sam Phippen)
285
+ * Refactor HtmlFormatter (Pete Hodgson)
286
+ * Autotest supports a path to Ruby that contains spaces (dsisnero)
287
+ * Provide a helpful warning when a shared example group is redefined.
288
+ (Mark Burns).
289
+ * `--default_path` can be specified as `--default-line`. `--line_number` can be
290
+ specified as `--line-number`. Hyphens are more idiomatic command line argument
291
+ separators (Sam Phippen).
292
+ * A more useful error message is shown when an invalid command line option is
293
+ used (Jordi Polo).
294
+ * Add `format_docstrings { |str| }` config option. It can be used to
295
+ apply formatting rules to example group and example docstrings.
296
+ (Alex Tan)
297
+ * Add support for an `.rspec-local` options file. This is intended to
298
+ allow individual developers to set options in a git-ignored file that
299
+ override the common project options in `.rspec`. (Sam Phippen)
300
+ * Support for mocha 0.13.0. (Andy Lindeman)
301
+
302
+ Bug fixes
303
+
304
+ * Remove override of `ExampleGroup#ancestors`. This is a core ruby method that
305
+ RSpec shouldn't override. Instead, define `ExampleGroup#parent_groups`. (Myron
306
+ Marston)
307
+ * Limit monkey patching of shared example/context declaration methods
308
+ (`shared_examples_for`, etc.) to just the objects that need it rather than
309
+ every object in the system (Myron Marston).
310
+ * Fix Metadata#fetch to support computed values (Sam Goldman).
311
+ * Named subject can now be referred to from within subject block in a nested
312
+ group (tomykaira).
313
+ * Fix `fail_fast` so that it properly exits when an error occurs in a
314
+ `before(:all) hook` (Bradley Schaefer).
315
+ * Make the order spec files are loaded consistent, regardless of the
316
+ order of the files returned by the OS or the order passed at
317
+ the command line (Jo Liss and Sam Phippen).
318
+ * Ensure instance variables from `before(:all)` are always exposed
319
+ from `after(:all)`, even if an error occurs in `before(:all)`
320
+ (Sam Phippen).
321
+ * `rspec --init` no longer generates an incorrect warning about `--configure`
322
+ being deprecated (Sam Phippen).
323
+ * Fix pluralization of `1 seconds` (Odin Dutton)
324
+ * Fix ANSICON url (Jarmo Pertman)
325
+ * Use dup of Time so reporting isn't clobbered by examples that modify Time
326
+ without properly restoring it. (David Chelimsky)
327
+
328
+ Deprecations
329
+
330
+ * `share_as` is no longer needed. `shared_context` and/or
331
+ `RSpec::SharedContext` provide better mechanisms (Sam Phippen).
332
+ * Deprecate `RSpec.configuration` with a block (use `RSpec.configure`).
333
+
334
+
335
+ ### 2.11.1 / 2012-07-18
336
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1)
337
+
338
+ Bug fixes
339
+
340
+ * Fix the way we autoload RSpec::Matchers so that custom matchers can be
341
+ defined before rspec-core has been configured to definitely use
342
+ rspec-expectations. (Myron Marston)
343
+ * Fix typo in --help message printed for -e option. (Jo Liss)
344
+ * Fix ruby warnings. (Myron Marston)
345
+ * Ignore mock expectation failures when the example has already failed.
346
+ Mock expectation failures have always been ignored in this situation,
347
+ but due to my changes in 27059bf1 it was printing a confusing message.
348
+ (Myron Marston).
349
+
350
+ ### 2.11.0 / 2012-07-07
351
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.10.1...v2.11.0)
352
+
353
+ Enhancements
354
+
355
+ * Support multiple `--example` options. (Daniel Doubrovkine @dblock)
356
+ * Named subject e.g. `subject(:article) { Article.new }`
357
+ * 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/)
358
+ for background.
359
+ * thanks to Bradley Schaefer for suggesting it and Avdi Grimm for almost
360
+ suggesting it.
361
+ * `config.mock_with` and `config.expect_with` yield custom config object to a
362
+ block if given
363
+ * aids decoupling from rspec-core's configuation
364
+ * `include_context` and `include_examples` support a block, which gets eval'd
365
+ in the current context (vs the nested context generated by `it_behaves_like`).
366
+ * Add `config.order = 'random'` to the `spec_helper.rb` generated by `rspec
367
+ --init`.
368
+ * Delay the loading of DRb (Myron Marston).
369
+ * Limit monkey patching of `describe` onto just the objects that need it rather
370
+ than every object in the system (Myron Marston).
371
+
372
+ Bug fixes
373
+
374
+ * Support alternative path separators. For example, on Windows, you can now do
375
+ this: `rspec spec\subdir`. (Jarmo Pertman @jarmo)
376
+ * When an example raises an error and an after or around hook does as
377
+ well, print out the hook error. Previously, the error was silenced and
378
+ the user got no feedback about what happened. (Myron Marston)
379
+ * `--require` and `-I` are merged among different configuration sources (Andy
380
+ Lindeman)
381
+ * Delegate to mocha methods instead of aliasing them in mocha adapter.
382
+
383
+ ### 2.10.1 / 2012-05-19
384
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.10.0...v2.10.1)
385
+
386
+ Bug fixes
387
+
388
+ * `RSpec.reset` properly reinits configuration and world
389
+ * Call `to_s` before `split` on exception messages that might not always be
390
+ Strings (slyphon)
391
+
392
+ ### 2.10.0 / 2012-05-03
393
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.9.0...v2.10.0)
394
+
395
+ Enhancements
396
+
397
+ * Add `prepend_before` and `append_after` hooks (preethiramdev)
398
+ * intended for extension libs
399
+ * restores rspec-1 behavior
400
+ * Reporting of profiled examples (moro)
401
+ * Report the total amount of time taken for the top slowest examples.
402
+ * Report what percentage the slowest examples took from the total runtime.
403
+
404
+ Bug fixes
405
+
406
+ * Properly parse `SPEC_OPTS` options.
407
+ * `example.description` returns the location of the example if there is no
408
+ explicit description or matcher-generated description.
409
+ * RDoc fixes (Grzegorz Świrski)
410
+ * Do not modify example ancestry when dumping errors (Michael Grosser)
411
+
412
+ ### 2.9.0 / 2012-03-17
413
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.8.0...v2.9.0)
414
+
415
+ Enhancements
416
+
417
+ * Support for "X minutes X seconds" spec run duration in formatter. (uzzz)
418
+ * Strip whitespace from group and example names in doc formatter.
419
+ * Removed spork-0.9 shim. If you're using spork-0.8.x, you'll need to upgrade
420
+ to 0.9.0.
421
+
422
+ Bug fixes
423
+
424
+ * Restore `--full_backtrace` option
425
+ * Ensure that values passed to `config.filter_run` are respected when running
426
+ over DRb (using spork).
427
+ * Ensure shared example groups are reset after a run (as example groups are).
428
+ * Remove `rescue false` from calls to filters represented as Procs
429
+ * Ensure `described_class` gets the closest constant (pyromaniac)
430
+ * In "autorun", don't run the specs in the `at_exit` hook if there was an
431
+ exception (most likely due to a SyntaxError). (sunaku)
432
+ * Don't extend groups with modules already used to extend ancestor groups.
433
+ * `its` correctly memoizes nil or false values (Yamada Masaki)
434
+
435
+ ### 2.8.0 / 2012-01-04
436
+
437
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc2...v2.8.0)
438
+
439
+ Bug fixes
440
+
441
+ * For metadata filtering, restore passing the entire array to the proc, rather
442
+ than each item in the array (weidenfreak)
443
+ * Ensure each spec file is loaded only once
444
+ * Fixes a bug that caused all the examples in a file to be run when
445
+ referenced twice with line numbers in a command, e.g.
446
+ * `rspec path/to/file:37 path/to/file:42`
447
+
448
+ ### 2.8.0.rc2 / 2011-12-19
449
+
450
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc1...v2.8.0.rc2)
451
+
452
+ Enhancments
453
+
454
+ * new `--init` command (Peter Schröder)
455
+ * generates `spec/spec_helper.rb`
456
+ * deletes obsolete files (on confirmation)
457
+ * merged with and deprecates `--configure` command, which generated
458
+ `.rspec`
459
+ * use `require_relative` when available (Ian Leitch)
460
+ * `include_context` and `include_examples` accept params (Calvin Bascom)
461
+ * print the time for every example in the html formatter (Richie Vos)
462
+ * several tasty refactoring niblets (Sasha)
463
+ * `it "does something", :x => [:foo,'bar',/baz/] (Ivan Neverov)
464
+ * supports matching n command line tag values with an example or group
465
+
466
+ ### 2.8.0.rc1 / 2011-11-06
467
+
468
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.7.1...v2.8.0.rc1)
469
+
470
+ Enhancements
471
+
472
+ * `--order` (Justin Ko)
473
+ * run examples in random order: `--order rand`
474
+ * specify the seed: `--order rand:123`
475
+ * `--seed SEED`
476
+ * equivalent of `--order rand:SEED`
477
+ * SharedContext supports `let` (David Chelimsky)
478
+ * Filter improvements (David Chelimsky)
479
+ * override opposing tags from the command line
480
+ * override RSpec.configure tags from the command line
481
+ * `--line_number 37` overrides all other filters
482
+ * `path/to/file.rb:37` overrides all other filters
483
+ * refactor: consolidate filter management in a FilterManger object
484
+ * Eliminate Ruby warnings (Matijs van Zuijlen)
485
+ * Make reporter.report an API (David Chelimsky)
486
+ * supports extension tools like interative_rspec
487
+
488
+ Changes
489
+
490
+ * change `config.color_enabled` (getter/setter/predicate) to `color` to align
491
+ with `--[no]-color` CLI option.
492
+ * `color_enabled` is still supported for now, but will likley be deprecated
493
+ in a 2.x release so we can remove it in 3.0.
494
+
495
+ Bug fixes
496
+
497
+ * Make sure the `bar` in `--tag foo:bar` makes it to DRb (Aaron Gibralter)
498
+ * Fix bug where full descriptions of groups nested 3 deep were repeated.
499
+ * Restore report of time to run to start after files are loaded.
500
+ * fixes bug where run times were cumalitive in spork
501
+ * fixes compatibility with time-series metrics
502
+ * Don't error out when `config.mock_with` or `expect_with` is re-specifying the
503
+ current config (Myron Marston)
504
+
505
+ * Deprecations
506
+ * :alias option on `configuration.add_setting`. Use `:alias_with` on the
507
+ original setting declaration instead.
508
+
509
+ ### 2.7.1 / 2011-10-20
510
+
511
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.7.0...v2.7.1)
512
+
513
+ Bug fixes
514
+
515
+ * tell autotest the correct place to find the rspec executable
516
+
517
+ ### 2.7.0 / 2011-10-16
518
+
519
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.6.4...v2.7.0)
520
+
521
+ NOTE: RSpec's release policy dictates that there should not be any backward
522
+ incompatible changes in minor releases, but we're making an exception to
523
+ release a change to how RSpec interacts with other command line tools.
524
+
525
+ As of 2.7.0, you must explicity `require "rspec/autorun"` unless you use the
526
+ `rspec` command (which already does this for you).
527
+
528
+ Enhancements
529
+
530
+ * Add `example.exception` (David Chelimsky)
531
+ * `--default_path` command line option (Justin Ko)
532
+ * support multiple `--line_number` options (David J. Hamilton)
533
+ * also supports `path/to/file.rb:5:9` (runs examples on lines 5 and 9)
534
+ * Allow classes/modules to be used as shared example group identifiers (Arthur
535
+ Gunn)
536
+ * Friendly error message when shared context cannot be found (Sławosz
537
+ Sławiński)
538
+ * Clear formatters when resetting config (John Bintz)
539
+ * Add `xspecify` and xexample as temp-pending methods (David Chelimsky)
540
+ * Add `--no-drb` option (Iain Hecker)
541
+ * Provide more accurate run time by registering start time before code is
542
+ loaded (David Chelimsky)
543
+ * reverted in 2.8.0
544
+ * Rake task default pattern finds specs in symlinked dirs (Kelly Felkins)
545
+ * Rake task no longer does anything to invoke bundler since Bundler already
546
+ handles it for us. Thanks to Andre Arko for the tip.
547
+ * Add `--failure-exit-code` option (Chris Griego)
548
+
549
+ Bug fixes
550
+
551
+ * Include `Rake::DSL` to remove deprecation warnings in Rake > 0.8.7 (Pivotal
552
+ Casebook)
553
+ * Only eval `let` block once even if it returns `nil` (Adam Meehan)
554
+ * Fix `--pattern` option (wasn't being recognized) (David Chelimsky)
555
+ * Only implicitly `require "rspec/autorun"` with the `rspec` command (David
556
+ Chelimsky)
557
+ * Ensure that rspec's `at_exit` defines the exit code (Daniel Doubrovkine)
558
+ * Show the correct snippet in the HTML and TextMate formatters (Brian Faherty)
559
+
560
+ ### 2.6.4 / 2011-06-06
561
+
562
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.6.3...v2.6.4)
563
+
564
+ NOTE: RSpec's release policy dictates that there should not be new
565
+ functionality in patch releases, but this minor enhancement slipped in by
566
+ accident. As it doesn't add a new API, we decided to leave it in rather than
567
+ roll back this release.
568
+
569
+ Enhancements
570
+
571
+ * Add summary of commands to run individual failed examples.
572
+
573
+ Bug fixes
574
+
575
+ * Support exclusion filters in DRb. (Yann Lugrin)
576
+ * Fix --example escaping when run over DRb. (Elliot Winkler)
577
+ * Use standard ANSI codes for color formatting so colors work in a wider set of
578
+ color schemes.
579
+
580
+ ### 2.6.3 / 2011-05-24
581
+
582
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.6.2...v2.6.3)
583
+
584
+ Bug fixes
585
+
586
+ * Explicitly convert exit code to integer, avoiding TypeError when return
587
+ value of run is IO object proxied by `DRb::DRbObject` (Julian Scheid)
588
+ * Clarify behavior of `--example` command line option
589
+ * Build using a rubygems-1.6.2 to avoid downstream yaml parsing error
590
+
591
+ ### 2.6.2 / 2011-05-21
592
+
593
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.6.1...v2.6.2)
594
+
595
+ Bug fixes
596
+
597
+ * Warn rather than raise when HOME env var is not defined
598
+ * Properly merge command-line exclusions with default :if and :unless (joshcooper)
599
+
600
+ ### 2.6.1 / 2011-05-19
601
+
602
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.6.0...v2.6.1)
603
+
604
+ Bug fixes
605
+
606
+ * Don't extend nil when filters are nil
607
+ * `require 'rspec/autorun'` when running rcov.
608
+
609
+ ### 2.6.0 / 2011-05-12
610
+
611
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.5.1...v2.6.0)
612
+
613
+ Enhancements
614
+
615
+ * `shared_context` (Damian Nurzynski)
616
+ * extend groups matching specific metadata with:
617
+ * method definitions
618
+ * subject declarations
619
+ * let/let! declarations
620
+ * etc (anything you can do in a group)
621
+ * `its([:key])` works for any subject with #[]. (Peter Jaros)
622
+ * `treat_symbols_as_metadata_keys_with_true_values` (Myron Marston)
623
+ * Print a deprecation warning when you configure RSpec after defining an
624
+ example. All configuration should happen before any examples are defined.
625
+ (Myron Marston)
626
+ * Pass the exit status of a DRb run to the invoking process. This causes specs
627
+ run via DRb to not just return true or false. (Ilkka Laukkanen)
628
+ * Refactoring of `ConfigurationOptions#parse_options` (Rodrigo Rosenfeld Rosas)
629
+ * Report excluded filters in runner output (tip from andyl)
630
+ * Clean up messages for filters/tags.
631
+ * Restore --pattern/-P command line option from rspec-1
632
+ * Support false as well as true in config.full_backtrace= (Andreas Tolf
633
+ Tolfsen)
634
+
635
+ Bug fixes
636
+
637
+ * Don't stumble over an exception without a message (Hans Hasselberg)
638
+ * Remove non-ascii characters from comments that were choking rcov (Geoffrey
639
+ Byers)
640
+ * Fixed backtrace so it doesn't include lines from before the autorun at_exit
641
+ hook (Myron Marston)
642
+ * Include RSpec::Matchers when first example group is defined, rather than just
643
+ before running the examples. This works around an obscure bug in ruby 1.9
644
+ that can cause infinite recursion. (Myron Marston)
645
+ * Don't send `example_group_[started|finished]` to formatters for empty groups.
646
+ * Get specs passing on jruby (Sidu Ponnappa)
647
+ * Fix bug where mixing nested groups and outer-level examples gave
648
+ unpredictable :line_number behavior (Artur Małecki)
649
+ * Regexp.escape the argument to --example (tip from Elliot Winkler)
650
+ * Correctly pass/fail pending block with message expectations
651
+ * CommandLine returns exit status (0/1) instead of true/false
652
+ * Create path to formatter output file if it doesn't exist (marekj).
653
+
654
+
655
+ ### 2.5.1 / 2011-02-06
656
+
657
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.5.0...v2.5.1)
658
+
659
+ NOTE: this release breaks compatibility with rspec/autotest/bundler
660
+ integration, but does so in order to greatly simplify it.
661
+
662
+ With this release, if you want the generated autotest command to include
663
+ 'bundle exec', require Autotest's bundler plugin in a .autotest file in the
664
+ project's root directory or in your home directory:
665
+
666
+ require "autotest/bundler"
667
+
668
+ Now you can just type 'autotest' on the commmand line and it will work as you expect.
669
+
670
+ If you don't want 'bundle exec', there is nothing you have to do.
671
+
672
+ ### 2.5.0 / 2011-02-05
673
+
674
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.4.0...v2.5.0)
675
+
676
+ Enhancements
677
+
678
+ * Autotest::Rspec2 parses command line args passed to autotest after '--'
679
+ * --skip-bundler option for autotest command
680
+ * Autotest regexp fixes (Jon Rowe)
681
+ * Add filters to html and textmate formatters (Daniel Quimper)
682
+ * Explicit passing of block (need for JRuby 1.6) (John Firebaugh)
683
+
684
+ Bug fixes
685
+
686
+ * fix dom IDs in HTML formatter (Brian Faherty)
687
+ * fix bug with --drb + formatters when not running in drb
688
+ * include --tag options in drb args (monocle)
689
+ * fix regression so now SPEC_OPTS take precedence over CLI options again (Roman
690
+ Chernyatchik)
691
+ * only call its(:attribute) once (failing example from Brian Dunn)
692
+ * fix bizarre bug where rspec would hang after String.alias :to_int :to_i
693
+ (Damian Nurzynski)
694
+
695
+ Deprecations
696
+
697
+ * implicit inclusion of 'bundle exec' when Gemfile present (use autotest's
698
+ bundler plugin instead)
699
+
700
+ ### 2.4.0 / 2011-01-02
701
+
702
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.3.1...v2.4.0)
703
+
704
+ Enhancements
705
+
706
+ * start the debugger on -d so the stack trace is visible when it stops
707
+ (Clifford Heath)
708
+ * apply hook filtering to examples as well as groups (Myron Marston)
709
+ * support multiple formatters, each with their own output
710
+ * show exception classes in failure messages unless they come from RSpec
711
+ matchers or message expectations
712
+ * before(:all) { pending } sets all examples to pending
713
+
714
+ Bug fixes
715
+
716
+ * fix bug due to change in behavior of reject in Ruby 1.9.3-dev (Shota
717
+ Fukumori)
718
+ * fix bug when running in jruby: be explicit about passing block to super (John
719
+ Firebaugh)
720
+ * rake task doesn't choke on paths with quotes (Janmejay Singh)
721
+ * restore --options option from rspec-1
722
+ * require 'ostruct' to fix bug with its([key]) (Kim Burgestrand)
723
+ * --configure option generates .rspec file instead of autotest/discover.rb
724
+
725
+ ### 2.3.1 / 2010-12-16
726
+
727
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.3.0...v2.3.1)
728
+
729
+ Bug fixes
730
+
731
+ * send debugger warning message to $stdout if RSpec.configuration.error_stream
732
+ has not been defined yet.
733
+ * HTML Formatter _finally_ properly displays nested groups (Jarmo Pertman)
734
+ * eliminate some warnings when running RSpec's own suite (Jarmo Pertman)
735
+
736
+ ### 2.3.0 / 2010-12-12
737
+
738
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.2.1...v2.3.0)
739
+
740
+ Enhancements
741
+
742
+ * tell autotest to use "rspec2" if it sees a .rspec file in the project's root
743
+ directory
744
+ * replaces the need for ./autotest/discover.rb, which will not work with
745
+ all versions of ZenTest and/or autotest
746
+ * config.expect_with
747
+ * :rspec # => rspec/expectations
748
+ * :stdlib # => test/unit/assertions
749
+ * :rspec, :stdlib # => both
750
+
751
+ Bug fixes
752
+
753
+ * fix dev Gemfile to work on non-mac-os machines (Lake Denman)
754
+ * ensure explicit subject is only eval'd once (Laszlo Bacsi)
755
+
756
+ ### 2.2.1 / 2010-11-28
757
+
758
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.2.0...v2.2.1)
759
+
760
+ Bug fixes
761
+ * alias_method instead of override Kernel#method_missing (John Wilger)
762
+ * changed --autotest to --tty in generated command (MIKAMI Yoshiyuki)
763
+ * revert change to debugger (had introduced conflict with Rails)
764
+ * also restored --debugger/-debug option
765
+
766
+ ### 2.2.0 / 2010-11-28
767
+
768
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.1.0...v2.2.0)
769
+
770
+ Deprecations/changes
771
+
772
+ * --debug/-d on command line is deprecated and now has no effect
773
+ * win32console is now ignored; Windows users must use ANSICON for color support
774
+ (Bosko Ivanisevic)
775
+
776
+ Enhancements
777
+
778
+ * When developing locally rspec-core now works with the rspec-dev setup or your
779
+ local gems
780
+ * Raise exception with helpful message when rspec-1 is loaded alongside rspec-2
781
+ (Justin Ko)
782
+ * debugger statements _just work_ as long as ruby-debug is installed
783
+ * otherwise you get warned, but not fired
784
+ * Expose example.metadata in around hooks
785
+ * Performance improvments (much faster now)
786
+
787
+ Bug fixes
788
+
789
+ * Make sure --fail-fast makes it across drb
790
+ * Pass -Ilib:spec to rcov
791
+
792
+ ### 2.1.0 / 2010-11-07
793
+
794
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.0.1...v2.1.0)
795
+
796
+ Enhancments
797
+
798
+ * Add skip_bundler option to rake task to tell rake task to ignore the presence
799
+ of a Gemfile (jfelchner)
800
+ * Add gemfile option to rake task to tell rake task what Gemfile to look for
801
+ (defaults to 'Gemfile')
802
+ * Allow passing caller trace into Metadata to support extensions (Glenn
803
+ Vanderburg)
804
+ * Add deprecation warning for Spec::Runner.configure to aid upgrade from
805
+ RSpec-1
806
+ * Add deprecated Spec::Rake::SpecTask to aid upgrade from RSpec-1
807
+ * Add 'autospec' command with helpful message to aid upgrade from RSpec-1
808
+ * Add support for filtering with tags on CLI (Lailson Bandeira)
809
+ * Add a helpful message about RUBYOPT when require fails in bin/rspec (slyphon)
810
+ * Add "-Ilib" to the default rcov options (Tianyi Cui)
811
+ * Make the expectation framework configurable (default rspec, of course)
812
+ (Justin Ko)
813
+ * Add 'pending' to be conditional (Myron Marston)
814
+ * Add explicit support for :if and :unless as metadata keys for conditional run
815
+ of examples (Myron Marston)
816
+ * Add --fail-fast command line option (Jeff Kreeftmeijer)
817
+
818
+ Bug fixes
819
+
820
+ * Eliminate stack overflow with "subject { self }"
821
+ * Require 'rspec/core' in the Raketask (ensures it required when running rcov)
822
+
823
+ ### 2.0.1 / 2010-10-18
824
+
825
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0...v2.0.1)
826
+
827
+ Bug fixes
828
+
829
+ * Restore color when using spork + autotest
830
+ * Pending examples without docstrings render the correct message (Josep M.
831
+ Bach)
832
+ * Fixed bug where a failure in a spec file ending in anything but _spec.rb
833
+ would fail in a confusing way.
834
+ * Support backtrace lines from erb templates in html formatter (Alex Crichton)
835
+
836
+ ### 2.0.0 / 2010-10-10
837
+
838
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.rc...v2.0.0)
839
+
840
+ RSpec-1 compatibility
841
+
842
+ * Rake task uses ENV["SPEC"] as file list if present
843
+
844
+ Bug fixes
845
+
846
+ * Bug Fix: optparse --out foo.txt (Leonardo Bessa)
847
+ * Suppress color codes for non-tty output (except autotest)
848
+
849
+ ### 2.0.0.rc / 2010-10-05
850
+
851
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.22...v2.0.0.rc)
852
+
853
+ Enhancements
854
+
855
+ * implicitly require unknown formatters so you don't have to require the file
856
+ explicitly on the commmand line (Michael Grosser)
857
+ * add --out/-o option to assign output target
858
+ * added fail_fast configuration option to abort on first failure
859
+ * support a Hash subject (its([:key]) { should == value }) (Josep M. Bach)
860
+
861
+ Bug fixes
862
+
863
+ * Explicitly require rspec version to fix broken rdoc task (Hans de Graaff)
864
+ * Ignore backtrace lines that come from other languages, like Java or
865
+ Javascript (Charles Lowell)
866
+ * Rake task now does what is expected when setting (or not setting)
867
+ fail_on_error and verbose
868
+ * Fix bug in which before/after(:all) hooks were running on excluded nested
869
+ groups (Myron Marston)
870
+ * Fix before(:all) error handling so that it fails examples in nested groups,
871
+ too (Myron Marston)
872
+
873
+ ### 2.0.0.beta.22 / 2010-09-12
874
+
875
+ [full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.20...v2.0.0.beta.22)
876
+
877
+ Enhancements
878
+
879
+ * removed at_exit hook
880
+ * CTRL-C stops the run (almost) immediately
881
+ * first it cleans things up by running the appropriate after(:all) and
882
+ after(:suite) hooks
883
+ * then it reports on any examples that have already run
884
+ * cleaned up rake task
885
+ * generate correct task under variety of conditions
886
+ * options are more consistent
887
+ * deprecated redundant options
888
+ * run 'bundle exec autotest' when Gemfile is present
889
+ * support ERB in .rspec options files (Justin Ko)
890
+ * depend on bundler for development tasks (Myron Marston)
891
+ * add example_group_finished to formatters and reporter (Roman Chernyatchik)
892
+
893
+ Bug fixes
894
+
895
+ * support paths with spaces when using autotest (Andreas Neuhaus)
896
+ * fix module_exec with ruby 1.8.6 (Myron Marston)
897
+ * remove context method from top-level
898
+ * was conflicting with irb, for example
899
+ * errors in before(:all) are now reported correctly (Chad Humphries)
900
+
901
+ Removals
902
+
903
+ * removed -o --options-file command line option
904
+ * use ./.rspec and ~/.rspec