clickable_link 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (637) hide show
  1. data/clickable_link.gemspec +2 -2
  2. data/lib/clickable_link/version.rb +1 -1
  3. data/vendor/bundle/ruby/1.9.1/bin/autospec +23 -0
  4. data/vendor/bundle/ruby/1.9.1/bin/htmldiff +25 -0
  5. data/vendor/bundle/ruby/1.9.1/bin/ldiff +25 -0
  6. data/vendor/bundle/ruby/1.9.1/bin/rake +23 -0
  7. data/vendor/bundle/ruby/1.9.1/bin/rspec +23 -0
  8. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/.autotest +3 -0
  9. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/.gemtest +0 -0
  10. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/.hoerc +2 -0
  11. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/.rspec +2 -0
  12. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/.travis.yml +22 -0
  13. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/Contributing.rdoc +64 -0
  14. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/Gemfile +20 -0
  15. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/History.rdoc +146 -0
  16. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/License.rdoc +39 -0
  17. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/Manifest.txt +38 -0
  18. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/README.rdoc +85 -0
  19. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/Rakefile +39 -0
  20. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/autotest/discover.rb +1 -0
  21. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/bin/htmldiff +32 -0
  22. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/bin/ldiff +6 -0
  23. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/docs/COPYING.txt +339 -0
  24. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/docs/artistic.txt +127 -0
  25. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/lib/diff-lcs.rb +3 -0
  26. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/lib/diff/lcs.rb +805 -0
  27. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/lib/diff/lcs/array.rb +7 -0
  28. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/lib/diff/lcs/block.rb +37 -0
  29. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/lib/diff/lcs/callbacks.rb +322 -0
  30. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/lib/diff/lcs/change.rb +177 -0
  31. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/lib/diff/lcs/htmldiff.rb +149 -0
  32. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/lib/diff/lcs/hunk.rb +276 -0
  33. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/lib/diff/lcs/internals.rb +301 -0
  34. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/lib/diff/lcs/ldiff.rb +195 -0
  35. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/lib/diff/lcs/string.rb +5 -0
  36. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/spec/change_spec.rb +65 -0
  37. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/spec/diff_spec.rb +47 -0
  38. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/spec/hunk_spec.rb +72 -0
  39. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/spec/issues_spec.rb +24 -0
  40. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/spec/lcs_spec.rb +54 -0
  41. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/spec/patch_spec.rb +414 -0
  42. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/spec/sdiff_spec.rb +202 -0
  43. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/spec/spec_helper.rb +290 -0
  44. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/spec/traverse_balanced_spec.rb +310 -0
  45. data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.2.4/spec/traverse_sequences_spec.rb +139 -0
  46. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/.gemtest +0 -0
  47. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/CHANGES +530 -0
  48. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/MIT-LICENSE +21 -0
  49. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/README.rdoc +187 -0
  50. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/Rakefile +375 -0
  51. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/TODO +21 -0
  52. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/bin/rake +33 -0
  53. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/install.rb +80 -0
  54. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake.rb +73 -0
  55. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/alt_system.rb +108 -0
  56. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/application.rb +728 -0
  57. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/backtrace.rb +20 -0
  58. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/clean.rb +55 -0
  59. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/cloneable.rb +16 -0
  60. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/compositepublisher.rb +21 -0
  61. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/ftptools.rb +139 -0
  62. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/publisher.rb +73 -0
  63. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/rubyforgepublisher.rb +16 -0
  64. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/sshpublisher.rb +50 -0
  65. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/sys.rb +2 -0
  66. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/default_loader.rb +10 -0
  67. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/dsl_definition.rb +157 -0
  68. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/early_time.rb +18 -0
  69. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/ext/core.rb +28 -0
  70. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/ext/module.rb +0 -0
  71. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/ext/string.rb +166 -0
  72. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/ext/time.rb +15 -0
  73. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/file_creation_task.rb +24 -0
  74. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/file_list.rb +416 -0
  75. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/file_task.rb +46 -0
  76. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/file_utils.rb +116 -0
  77. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/file_utils_ext.rb +144 -0
  78. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/gempackagetask.rb +2 -0
  79. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/invocation_chain.rb +57 -0
  80. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/invocation_exception_mixin.rb +16 -0
  81. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/linked_list.rb +103 -0
  82. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/loaders/makefile.rb +40 -0
  83. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/multi_task.rb +13 -0
  84. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/name_space.rb +25 -0
  85. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/packagetask.rb +190 -0
  86. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/pathmap.rb +1 -0
  87. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/phony.rb +15 -0
  88. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/private_reader.rb +20 -0
  89. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/promise.rb +99 -0
  90. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/pseudo_status.rb +29 -0
  91. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/rake_module.rb +37 -0
  92. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/rake_test_loader.rb +22 -0
  93. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/rdoctask.rb +2 -0
  94. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/ruby182_test_unit_fix.rb +27 -0
  95. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/rule_recursion_overflow_error.rb +20 -0
  96. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/runtest.rb +22 -0
  97. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/scope.rb +42 -0
  98. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/task.rb +378 -0
  99. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/task_argument_error.rb +7 -0
  100. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/task_arguments.rb +89 -0
  101. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/task_manager.rb +297 -0
  102. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/tasklib.rb +22 -0
  103. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/testtask.rb +201 -0
  104. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/thread_history_display.rb +48 -0
  105. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/thread_pool.rb +161 -0
  106. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/trace_output.rb +22 -0
  107. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/version.rb +9 -0
  108. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/win32.rb +56 -0
  109. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/file_creation.rb +34 -0
  110. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/helper.rb +128 -0
  111. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/support/rakefile_definitions.rb +444 -0
  112. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/support/ruby_runner.rb +33 -0
  113. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_private_reader.rb +42 -0
  114. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake.rb +40 -0
  115. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_application.rb +517 -0
  116. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_application_options.rb +457 -0
  117. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_backtrace.rb +113 -0
  118. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_clean.rb +46 -0
  119. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_definitions.rb +79 -0
  120. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_directory_task.rb +57 -0
  121. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_dsl.rb +40 -0
  122. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_early_time.rb +31 -0
  123. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_extension.rb +59 -0
  124. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_file_creation_task.rb +56 -0
  125. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_file_list.rb +627 -0
  126. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_file_list_path_map.rb +8 -0
  127. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_file_task.rb +122 -0
  128. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_file_utils.rb +309 -0
  129. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_ftp_file.rb +74 -0
  130. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_functional.rb +466 -0
  131. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_invocation_chain.rb +64 -0
  132. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_linked_list.rb +84 -0
  133. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_makefile_loader.rb +46 -0
  134. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_multi_task.rb +58 -0
  135. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_name_space.rb +43 -0
  136. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_package_task.rb +79 -0
  137. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_path_map.rb +168 -0
  138. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_path_map_explode.rb +34 -0
  139. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_path_map_partial.rb +18 -0
  140. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_pseudo_status.rb +21 -0
  141. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_rake_test_loader.rb +20 -0
  142. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_reduce_compat.rb +26 -0
  143. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_require.rb +40 -0
  144. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_rules.rb +362 -0
  145. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_scope.rb +44 -0
  146. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task.rb +376 -0
  147. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_argument_parsing.rb +103 -0
  148. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_arguments.rb +121 -0
  149. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_lib.rb +9 -0
  150. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_manager.rb +158 -0
  151. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_manager_argument_resolution.rb +19 -0
  152. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_with_arguments.rb +171 -0
  153. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_test_task.rb +119 -0
  154. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_thread_pool.rb +142 -0
  155. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_top_level_functions.rb +71 -0
  156. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_win32.rb +72 -0
  157. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_thread_history_display.rb +101 -0
  158. data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_trace_output.rb +52 -0
  159. data/vendor/bundle/ruby/1.9.1/gems/rspec-2.14.1/License.txt +24 -0
  160. data/vendor/bundle/ruby/1.9.1/gems/rspec-2.14.1/README.md +47 -0
  161. data/vendor/bundle/ruby/1.9.1/gems/rspec-2.14.1/lib/rspec.rb +3 -0
  162. data/vendor/bundle/ruby/1.9.1/gems/rspec-2.14.1/lib/rspec/version.rb +5 -0
  163. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/.document +5 -0
  164. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/.yardopts +6 -0
  165. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/Changelog.md +881 -0
  166. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/License.txt +24 -0
  167. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/README.md +261 -0
  168. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/exe/autospec +13 -0
  169. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/exe/rspec +25 -0
  170. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/Autotest.md +38 -0
  171. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/README.md +17 -0
  172. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/Upgrade.md +364 -0
  173. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/command_line/README.md +28 -0
  174. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/command_line/example_name_option.feature +97 -0
  175. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/command_line/exit_status.feature +82 -0
  176. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/command_line/format_option.feature +75 -0
  177. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/command_line/init.feature +18 -0
  178. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/command_line/line_number_appended_to_path.feature +140 -0
  179. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/command_line/line_number_option.feature +58 -0
  180. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/command_line/order.feature +29 -0
  181. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/command_line/pattern_option.feature +49 -0
  182. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/command_line/rake_task.feature +122 -0
  183. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/command_line/require_option.feature +43 -0
  184. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/command_line/ruby.feature +22 -0
  185. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/command_line/tag.feature +98 -0
  186. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/command_line/warnings_option.feature +29 -0
  187. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/alias_example_to.feature +48 -0
  188. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/backtrace_clean_patterns.feature +102 -0
  189. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/custom_settings.feature +84 -0
  190. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/default_path.feature +38 -0
  191. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/deprecation_stream.feature +58 -0
  192. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/fail_fast.feature +77 -0
  193. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/failure_exit_code.feature +36 -0
  194. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/order_and_seed.feature +3 -0
  195. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/output_stream.feature +24 -0
  196. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/pattern.feature +38 -0
  197. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/profile.feature +220 -0
  198. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/read_options_from_file.feature +90 -0
  199. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/run_all_when_everything_filtered.feature +76 -0
  200. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/show_failures_in_pending_blocks.feature +61 -0
  201. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/configuration/treat_symbols_as_metadata_keys_with_true_values.feature +52 -0
  202. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/example_groups/basic_structure.feature +55 -0
  203. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/example_groups/shared_context.feature +74 -0
  204. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/example_groups/shared_examples.feature +294 -0
  205. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/expectation_framework_integration/configure_expectation_framework.feature +102 -0
  206. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/filtering/exclusion_filters.feature +138 -0
  207. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/filtering/if_and_unless.feature +168 -0
  208. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/filtering/inclusion_filters.feature +105 -0
  209. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/formatters/configurable_colors.feature +31 -0
  210. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/formatters/custom_formatter.feature +36 -0
  211. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/formatters/json_formatter.feature +30 -0
  212. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/formatters/text_formatter.feature +46 -0
  213. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/helper_methods/arbitrary_methods.feature +40 -0
  214. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/helper_methods/let.feature +50 -0
  215. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/helper_methods/modules.feature +149 -0
  216. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/hooks/around_hooks.feature +343 -0
  217. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/hooks/before_and_after_hooks.feature +427 -0
  218. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/hooks/filtering.feature +234 -0
  219. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/metadata/current_example.feature +17 -0
  220. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/metadata/described_class.feature +17 -0
  221. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/metadata/user_defined.feature +113 -0
  222. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/mock_framework_integration/use_any_framework.feature +106 -0
  223. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/mock_framework_integration/use_flexmock.feature +96 -0
  224. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/mock_framework_integration/use_mocha.feature +97 -0
  225. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/mock_framework_integration/use_rr.feature +98 -0
  226. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/mock_framework_integration/use_rspec.feature +97 -0
  227. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/pending/pending_examples.feature +229 -0
  228. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/spec_files/arbitrary_file_suffix.feature +13 -0
  229. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/step_definitions/additional_cli_steps.rb +49 -0
  230. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/subject/attribute_of_subject.feature +124 -0
  231. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/subject/explicit_subject.feature +101 -0
  232. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/subject/implicit_receiver.feature +29 -0
  233. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/subject/implicit_subject.feature +63 -0
  234. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/support/env.rb +14 -0
  235. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/features/support/rubinius.rb +6 -0
  236. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/autotest/discover.rb +1 -0
  237. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/autotest/rspec2.rb +73 -0
  238. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/autorun.rb +2 -0
  239. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core.rb +169 -0
  240. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/backtrace_cleaner.rb +46 -0
  241. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/backward_compatibility.rb +55 -0
  242. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/command_line.rb +36 -0
  243. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/configuration.rb +1174 -0
  244. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/configuration_options.rb +156 -0
  245. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/deprecation.rb +31 -0
  246. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/drb_command_line.rb +26 -0
  247. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/drb_options.rb +87 -0
  248. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/dsl.rb +26 -0
  249. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/example.rb +331 -0
  250. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/example_group.rb +479 -0
  251. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/extensions/instance_eval_with_args.rb +44 -0
  252. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/extensions/kernel.rb +9 -0
  253. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/extensions/module_eval_with_args.rb +38 -0
  254. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/extensions/ordered.rb +27 -0
  255. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/filter_manager.rb +203 -0
  256. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/formatters.rb +55 -0
  257. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/formatters/base_formatter.rb +246 -0
  258. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/formatters/base_text_formatter.rb +329 -0
  259. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/formatters/deprecation_formatter.rb +39 -0
  260. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/formatters/documentation_formatter.rb +67 -0
  261. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/formatters/helpers.rb +110 -0
  262. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/formatters/html_formatter.rb +155 -0
  263. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/formatters/html_printer.rb +408 -0
  264. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/formatters/json_formatter.rb +70 -0
  265. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/formatters/progress_formatter.rb +32 -0
  266. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/formatters/snippet_extractor.rb +92 -0
  267. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/formatters/text_mate_formatter.rb +34 -0
  268. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/hooks.rb +519 -0
  269. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/memoized_helpers.rb +514 -0
  270. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/metadata.rb +299 -0
  271. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/metadata_hash_builder.rb +97 -0
  272. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/mocking/with_absolutely_nothing.rb +11 -0
  273. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/mocking/with_flexmock.rb +27 -0
  274. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/mocking/with_mocha.rb +52 -0
  275. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/mocking/with_rr.rb +27 -0
  276. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/mocking/with_rspec.rb +27 -0
  277. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/option_parser.rb +219 -0
  278. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/pending.rb +109 -0
  279. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/project_initializer.rb +86 -0
  280. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/rake_task.rb +206 -0
  281. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/reporter.rb +132 -0
  282. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/ruby_project.rb +44 -0
  283. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/runner.rb +87 -0
  284. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/shared_context.rb +55 -0
  285. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/shared_example_group.rb +185 -0
  286. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/shared_example_group/collection.rb +43 -0
  287. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/version.rb +8 -0
  288. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/lib/rspec/core/world.rb +127 -0
  289. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/autotest/discover_spec.rb +19 -0
  290. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/autotest/failed_results_re_spec.rb +45 -0
  291. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/autotest/rspec_spec.rb +133 -0
  292. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/command_line/order_spec.rb +204 -0
  293. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/backtrace_cleaner_spec.rb +68 -0
  294. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/command_line_spec.rb +108 -0
  295. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/command_line_spec_output.txt +0 -0
  296. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/configuration_options_spec.rb +417 -0
  297. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/configuration_spec.rb +1561 -0
  298. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/deprecation_spec.rb +46 -0
  299. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/deprecations_spec.rb +73 -0
  300. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/drb_command_line_spec.rb +102 -0
  301. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/drb_options_spec.rb +193 -0
  302. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/dsl_spec.rb +25 -0
  303. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/example_group_spec.rb +1187 -0
  304. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/example_spec.rb +439 -0
  305. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/filter_manager_spec.rb +246 -0
  306. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/base_formatter_spec.rb +108 -0
  307. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/base_text_formatter_spec.rb +494 -0
  308. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/deprecation_formatter_spec.rb +96 -0
  309. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/documentation_formatter_spec.rb +88 -0
  310. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/helpers_spec.rb +94 -0
  311. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html +404 -0
  312. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/html_formatted-1.8.7-rbx.html +477 -0
  313. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/html_formatted-1.8.7.html +414 -0
  314. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/html_formatted-1.9.2.html +425 -0
  315. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/html_formatted-1.9.3-jruby.html +404 -0
  316. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/html_formatted-1.9.3-rbx.html +477 -0
  317. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/html_formatted-1.9.3.html +425 -0
  318. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/html_formatted-2.0.0.html +425 -0
  319. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/html_formatter_spec.rb +95 -0
  320. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/json_formatter_spec.rb +115 -0
  321. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/progress_formatter_spec.rb +30 -0
  322. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/snippet_extractor_spec.rb +26 -0
  323. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html +395 -0
  324. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/text_mate_formatted-1.8.7-rbx.html +477 -0
  325. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html +414 -0
  326. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html +425 -0
  327. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/text_mate_formatted-1.9.3-jruby.html +404 -0
  328. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/text_mate_formatted-1.9.3-rbx.html +477 -0
  329. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/text_mate_formatted-1.9.3.html +425 -0
  330. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/text_mate_formatted-2.0.0.html +425 -0
  331. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/formatters/text_mate_formatter_spec.rb +96 -0
  332. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/hooks_filtering_spec.rb +227 -0
  333. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/hooks_spec.rb +267 -0
  334. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/kernel_extensions_spec.rb +9 -0
  335. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/memoized_helpers_spec.rb +688 -0
  336. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/metadata_spec.rb +491 -0
  337. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/option_parser_spec.rb +242 -0
  338. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/pending_example_spec.rb +220 -0
  339. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/project_initializer_spec.rb +130 -0
  340. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/rake_task_spec.rb +181 -0
  341. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/reporter_spec.rb +141 -0
  342. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/resources/a_bar.rb +0 -0
  343. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/resources/a_foo.rb +0 -0
  344. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/resources/a_spec.rb +1 -0
  345. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/resources/custom_example_group_runner.rb +14 -0
  346. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/resources/formatter_specs.rb +60 -0
  347. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/resources/utf8_encoded.rb +8 -0
  348. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/rspec_matchers_spec.rb +45 -0
  349. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/ruby_project_spec.rb +26 -0
  350. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/runner_spec.rb +82 -0
  351. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/shared_context_spec.rb +114 -0
  352. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/shared_example_group/collection_spec.rb +70 -0
  353. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/shared_example_group_spec.rb +120 -0
  354. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core/world_spec.rb +142 -0
  355. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/rspec/core_spec.rb +74 -0
  356. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/spec_helper.rb +132 -0
  357. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/support/config_options_helper.rb +15 -0
  358. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/support/helper_methods.rb +36 -0
  359. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/support/isolate_load_path_mutation.rb +6 -0
  360. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/support/isolated_directory.rb +10 -0
  361. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/support/isolated_home_directory.rb +16 -0
  362. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/support/matchers.rb +65 -0
  363. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/support/sandboxed_mock_space.rb +100 -0
  364. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/support/shared_example_groups.rb +41 -0
  365. data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/support/spec_files.rb +44 -0
  366. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/.document +5 -0
  367. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/.yardopts +6 -0
  368. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/Changelog.md +399 -0
  369. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/License.txt +23 -0
  370. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/README.md +184 -0
  371. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/README.md +48 -0
  372. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/Upgrade.md +53 -0
  373. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/README.md +90 -0
  374. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/be.feature +175 -0
  375. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/be_within.feature +48 -0
  376. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/cover.feature +47 -0
  377. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/end_with.feature +48 -0
  378. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/equality.feature +139 -0
  379. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/exist.feature +45 -0
  380. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/expect_change.feature +59 -0
  381. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/expect_error.feature +144 -0
  382. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/have.feature +109 -0
  383. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/include.feature +174 -0
  384. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/match.feature +52 -0
  385. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/operators.feature +227 -0
  386. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/predicates.feature +137 -0
  387. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/respond_to.feature +84 -0
  388. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/satisfy.feature +33 -0
  389. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/start_with.feature +48 -0
  390. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/throw_symbol.feature +91 -0
  391. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/types.feature +116 -0
  392. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/built_in_matchers/yield.feature +161 -0
  393. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/custom_matchers/access_running_example.feature +53 -0
  394. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/custom_matchers/define_diffable_matcher.feature +27 -0
  395. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/custom_matchers/define_matcher.feature +368 -0
  396. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/custom_matchers/define_matcher_outside_rspec.feature +38 -0
  397. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/custom_matchers/define_matcher_with_fluent_interface.feature +24 -0
  398. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/customized_message.feature +22 -0
  399. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/diffing.feature +85 -0
  400. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/implicit_docstrings.feature +52 -0
  401. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/step_definitions/additional_cli_steps.rb +22 -0
  402. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/support/env.rb +14 -0
  403. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/support/rubinius.rb +6 -0
  404. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/syntax_configuration.feature +71 -0
  405. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/features/test_frameworks/test_unit.feature +44 -0
  406. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec-expectations.rb +1 -0
  407. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/expectations.rb +47 -0
  408. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/expectations/deprecation.rb +17 -0
  409. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/expectations/differ.rb +140 -0
  410. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/expectations/errors.rb +9 -0
  411. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/expectations/expectation_target.rb +87 -0
  412. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/expectations/extensions.rb +2 -0
  413. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/expectations/extensions/array.rb +9 -0
  414. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/expectations/extensions/object.rb +29 -0
  415. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/expectations/fail_with.rb +79 -0
  416. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/expectations/handler.rb +68 -0
  417. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/expectations/syntax.rb +164 -0
  418. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/expectations/version.rb +9 -0
  419. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers.rb +697 -0
  420. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/be_close.rb +9 -0
  421. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in.rb +39 -0
  422. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/base_matcher.rb +68 -0
  423. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/be.rb +197 -0
  424. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/be_instance_of.rb +15 -0
  425. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/be_kind_of.rb +11 -0
  426. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/be_within.rb +55 -0
  427. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/change.rb +141 -0
  428. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/cover.rb +21 -0
  429. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/eq.rb +22 -0
  430. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/eql.rb +23 -0
  431. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/equal.rb +48 -0
  432. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/exist.rb +26 -0
  433. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/has.rb +48 -0
  434. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/have.rb +124 -0
  435. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/include.rb +61 -0
  436. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/match.rb +12 -0
  437. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/match_array.rb +51 -0
  438. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/raise_error.rb +123 -0
  439. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/respond_to.rb +74 -0
  440. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/satisfy.rb +30 -0
  441. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/start_and_end_with.rb +48 -0
  442. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/throw_symbol.rb +94 -0
  443. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/built_in/yield.rb +296 -0
  444. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/compatibility.rb +14 -0
  445. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/configuration.rb +108 -0
  446. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/dsl.rb +24 -0
  447. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/extensions/instance_eval_with_args.rb +39 -0
  448. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/generated_descriptions.rb +35 -0
  449. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/matcher.rb +300 -0
  450. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/method_missing.rb +12 -0
  451. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/operator_matcher.rb +109 -0
  452. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/pretty.rb +70 -0
  453. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/lib/rspec/matchers/test_unit_integration.rb +11 -0
  454. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/expectations/differ_spec.rb +203 -0
  455. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/expectations/expectation_target_spec.rb +82 -0
  456. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/expectations/extensions/kernel_spec.rb +67 -0
  457. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/expectations/fail_with_spec.rb +114 -0
  458. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/expectations/handler_spec.rb +227 -0
  459. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/expectations/syntax_spec.rb +139 -0
  460. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/base_matcher_spec.rb +62 -0
  461. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/be_close_spec.rb +22 -0
  462. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/be_instance_of_spec.rb +63 -0
  463. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/be_kind_of_spec.rb +41 -0
  464. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/be_spec.rb +522 -0
  465. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/be_within_spec.rb +137 -0
  466. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/change_spec.rb +567 -0
  467. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/configuration_spec.rb +206 -0
  468. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/cover_spec.rb +69 -0
  469. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/description_generation_spec.rb +190 -0
  470. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/dsl_spec.rb +57 -0
  471. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/eq_spec.rb +60 -0
  472. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/eql_spec.rb +41 -0
  473. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/equal_spec.rb +78 -0
  474. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/exist_spec.rb +124 -0
  475. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/has_spec.rb +122 -0
  476. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/have_spec.rb +455 -0
  477. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/include_matcher_integration_spec.rb +30 -0
  478. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/include_spec.rb +531 -0
  479. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/match_array_spec.rb +194 -0
  480. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/match_spec.rb +61 -0
  481. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/matcher_spec.rb +471 -0
  482. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/matchers_spec.rb +37 -0
  483. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/method_missing_spec.rb +28 -0
  484. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/operator_matcher_spec.rb +223 -0
  485. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/raise_error_spec.rb +485 -0
  486. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/respond_to_spec.rb +292 -0
  487. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/satisfy_spec.rb +44 -0
  488. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/start_with_end_with_spec.rb +186 -0
  489. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/throw_symbol_spec.rb +116 -0
  490. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/rspec/matchers/yield_spec.rb +514 -0
  491. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/spec_helper.rb +54 -0
  492. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/support/classes.rb +56 -0
  493. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/support/in_sub_process.rb +38 -0
  494. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/support/matchers.rb +22 -0
  495. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/support/ruby_version.rb +10 -0
  496. data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.14.2/spec/support/shared_examples.rb +13 -0
  497. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/.document +5 -0
  498. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/.yardopts +6 -0
  499. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/Changelog.md +410 -0
  500. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/License.txt +23 -0
  501. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/README.md +315 -0
  502. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/README.md +67 -0
  503. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/Scope.md +17 -0
  504. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/Upgrade.md +22 -0
  505. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/argument_matchers/README.md +27 -0
  506. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/argument_matchers/explicit.feature +59 -0
  507. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/argument_matchers/general_matchers.feature +85 -0
  508. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/argument_matchers/type_matchers.feature +26 -0
  509. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/message_expectations/README.md +73 -0
  510. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/message_expectations/allow_any_instance_of.feature +26 -0
  511. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/message_expectations/any_instance.feature +21 -0
  512. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/message_expectations/block_local_expectations.feature.pending +55 -0
  513. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/message_expectations/call_original.feature +24 -0
  514. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/message_expectations/expect_any_instance_of.feature +27 -0
  515. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/message_expectations/expect_message_using_expect.feature +107 -0
  516. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/message_expectations/expect_message_using_should_receive.feature +118 -0
  517. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/message_expectations/receive_counts.feature +209 -0
  518. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/message_expectations/warn_when_expectation_is_set_on_nil.feature +50 -0
  519. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/method_stubs/README.md +73 -0
  520. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/method_stubs/any_instance.feature +136 -0
  521. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/method_stubs/as_null_object.feature +40 -0
  522. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/method_stubs/simple_return_value_with_allow.feature +44 -0
  523. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/method_stubs/simple_return_value_with_stub.feature +64 -0
  524. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/method_stubs/stub_chain.feature +51 -0
  525. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/method_stubs/stub_implementation.feature +48 -0
  526. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/method_stubs/to_ary.feature +51 -0
  527. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/mutating_constants/README.md +82 -0
  528. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/mutating_constants/hiding_defined_constant.feature +64 -0
  529. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/mutating_constants/stub_defined_constant.feature +79 -0
  530. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/mutating_constants/stub_undefined_constant.feature +50 -0
  531. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/outside_rspec/configuration.feature +62 -0
  532. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/outside_rspec/standalone.feature +33 -0
  533. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/spies/spy_partial_mock_method.feature +34 -0
  534. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/spies/spy_pure_mock_method.feature +76 -0
  535. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/spies/spy_unstubbed_method.feature +18 -0
  536. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/step_definitions/additional_cli_steps.rb +11 -0
  537. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/support/env.rb +13 -0
  538. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/support/rubinius.rb +6 -0
  539. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/features/test_frameworks/test_unit.feature +43 -0
  540. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks.rb +92 -0
  541. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/any_instance/chain.rb +93 -0
  542. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/any_instance/expectation_chain.rb +42 -0
  543. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/any_instance/message_chains.rb +60 -0
  544. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/any_instance/recorder.rb +206 -0
  545. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/any_instance/stub_chain.rb +38 -0
  546. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
  547. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/argument_list_matcher.rb +97 -0
  548. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/argument_matchers.rb +238 -0
  549. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/configuration.rb +55 -0
  550. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/deprecation.rb +18 -0
  551. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/error_generator.rb +179 -0
  552. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/errors.rb +12 -0
  553. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/example_methods.rb +156 -0
  554. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/extensions/instance_exec.rb +34 -0
  555. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/extensions/marshal.rb +17 -0
  556. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/framework.rb +34 -0
  557. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/instance_method_stasher.rb +94 -0
  558. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/matchers/have_received.rb +93 -0
  559. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/matchers/receive.rb +96 -0
  560. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/message_expectation.rb +583 -0
  561. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/method_double.rb +265 -0
  562. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/mock.rb +7 -0
  563. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/mutate_const.rb +403 -0
  564. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/order_group.rb +40 -0
  565. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/proxy.rb +216 -0
  566. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/proxy_for_nil.rb +37 -0
  567. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/space.rb +87 -0
  568. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/standalone.rb +3 -0
  569. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/stub_chain.rb +51 -0
  570. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/syntax.rb +349 -0
  571. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/targets.rb +69 -0
  572. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/test_double.rb +135 -0
  573. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/rspec/mocks/version.rb +7 -0
  574. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/lib/spec/mocks.rb +4 -0
  575. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/and_call_original_spec.rb +243 -0
  576. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/and_yield_spec.rb +127 -0
  577. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/any_instance/message_chains_spec.rb +40 -0
  578. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/any_instance_spec.rb +963 -0
  579. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/any_number_of_times_spec.rb +36 -0
  580. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/argument_expectation_spec.rb +32 -0
  581. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/at_least_spec.rb +151 -0
  582. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/at_most_spec.rb +90 -0
  583. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/block_return_value_spec.rb +88 -0
  584. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/bug_report_10260_spec.rb +8 -0
  585. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/bug_report_10263_spec.rb +27 -0
  586. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/bug_report_11545_spec.rb +32 -0
  587. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/bug_report_496_spec.rb +17 -0
  588. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/bug_report_600_spec.rb +22 -0
  589. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/bug_report_7611_spec.rb +16 -0
  590. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/bug_report_8165_spec.rb +31 -0
  591. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/bug_report_830_spec.rb +21 -0
  592. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/bug_report_957_spec.rb +22 -0
  593. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/combining_implementation_instructions_spec.rb +205 -0
  594. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/configuration_spec.rb +150 -0
  595. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/double_spec.rb +24 -0
  596. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/extensions/marshal_spec.rb +54 -0
  597. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/failing_argument_matchers_spec.rb +110 -0
  598. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/hash_excluding_matcher_spec.rb +67 -0
  599. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/hash_including_matcher_spec.rb +90 -0
  600. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/instance_method_stasher_spec.rb +58 -0
  601. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/matchers/have_received_spec.rb +266 -0
  602. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/matchers/receive_spec.rb +328 -0
  603. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/methods_spec.rb +27 -0
  604. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/mock_ordering_spec.rb +103 -0
  605. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/mock_space_spec.rb +113 -0
  606. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/mock_spec.rb +798 -0
  607. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/multiple_return_value_spec.rb +132 -0
  608. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/mutate_const_spec.rb +501 -0
  609. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/nil_expectation_warning_spec.rb +68 -0
  610. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/null_object_mock_spec.rb +123 -0
  611. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/once_counts_spec.rb +52 -0
  612. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/options_hash_spec.rb +35 -0
  613. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/partial_mock_spec.rb +205 -0
  614. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/partial_mock_using_mocks_directly_spec.rb +95 -0
  615. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/passing_argument_matchers_spec.rb +142 -0
  616. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/precise_counts_spec.rb +68 -0
  617. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/record_messages_spec.rb +26 -0
  618. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/serialization_spec.rb +89 -0
  619. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/stash_spec.rb +46 -0
  620. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/stub_chain_spec.rb +154 -0
  621. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/stub_implementation_spec.rb +81 -0
  622. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/stub_spec.rb +353 -0
  623. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/stubbed_message_expectations_spec.rb +58 -0
  624. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/syntax_agnostic_message_matchers_spec.rb +81 -0
  625. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/test_double_spec.rb +67 -0
  626. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/to_ary_spec.rb +54 -0
  627. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks/twice_counts_spec.rb +66 -0
  628. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/rspec/mocks_spec.rb +65 -0
  629. data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.14.3/spec/spec_helper.rb +60 -0
  630. data/vendor/bundle/ruby/1.9.1/specifications/diff-lcs-1.2.4.gemspec +64 -0
  631. data/vendor/bundle/ruby/1.9.1/specifications/rake-10.1.0.gemspec +35 -0
  632. data/vendor/bundle/ruby/1.9.1/specifications/rspec-2.14.1.gemspec +39 -0
  633. data/vendor/bundle/ruby/1.9.1/specifications/rspec-core-2.14.5.gemspec +58 -0
  634. data/vendor/bundle/ruby/1.9.1/specifications/rspec-expectations-2.14.2.gemspec +40 -0
  635. data/vendor/bundle/ruby/1.9.1/specifications/rspec-mocks-2.14.3.gemspec +37 -0
  636. metadata +655 -13
  637. checksums.yaml +0 -7
@@ -0,0 +1,164 @@
1
+ module RSpec
2
+ module Expectations
3
+ # @api private
4
+ # Provides methods for enabling and disabling the available
5
+ # syntaxes provided by rspec-expectations.
6
+ module Syntax
7
+ extend self
8
+
9
+ # @method should
10
+ # Passes if `matcher` returns true. Available on every `Object`.
11
+ # @example
12
+ # actual.should eq expected
13
+ # actual.should match /expression/
14
+ # @param [Matcher]
15
+ # matcher
16
+ # @param [String] message optional message to display when the expectation fails
17
+ # @return [Boolean] true if the expectation succeeds (else raises)
18
+ # @see RSpec::Matchers
19
+
20
+ # @method should_not
21
+ # Passes if `matcher` returns false. Available on every `Object`.
22
+ # @example
23
+ # actual.should_not eq expected
24
+ # @param [Matcher]
25
+ # matcher
26
+ # @param [String] message optional message to display when the expectation fails
27
+ # @return [Boolean] false if the negative expectation succeeds (else raises)
28
+ # @see RSpec::Matchers
29
+
30
+ # @method expect
31
+ # Supports `expect(actual).to matcher` syntax by wrapping `actual` in an
32
+ # `ExpectationTarget`.
33
+ # @example
34
+ # expect(actual).to eq(expected)
35
+ # expect(actual).not_to eq(expected)
36
+ # @return [ExpectationTarget]
37
+ # @see ExpectationTarget#to
38
+ # @see ExpectationTarget#not_to
39
+
40
+ # @api private
41
+ # Determines where we add `should` and `should_not`.
42
+ def default_should_host
43
+ @default_should_host ||= ::Object.ancestors.last
44
+ end
45
+
46
+ # @api private
47
+ # Enables the `should` syntax.
48
+ def enable_should(syntax_host = default_should_host)
49
+ return if should_enabled?(syntax_host)
50
+
51
+ syntax_host.module_eval do
52
+ def should(matcher=nil, message=nil, &block)
53
+ ::RSpec::Expectations::PositiveExpectationHandler.handle_matcher(self, matcher, message, &block)
54
+ end
55
+
56
+ def should_not(matcher=nil, message=nil, &block)
57
+ ::RSpec::Expectations::NegativeExpectationHandler.handle_matcher(self, matcher, message, &block)
58
+ end
59
+ end
60
+
61
+ ::RSpec::Expectations::ExpectationTarget.enable_deprecated_should if expect_enabled?
62
+ end
63
+
64
+ # @api private
65
+ # Disables the `should` syntax.
66
+ def disable_should(syntax_host = default_should_host)
67
+ return unless should_enabled?(syntax_host)
68
+
69
+ syntax_host.module_eval do
70
+ undef should
71
+ undef should_not
72
+ end
73
+
74
+ ::RSpec::Expectations::ExpectationTarget.disable_deprecated_should
75
+ end
76
+
77
+ # @api private
78
+ # Enables the `expect` syntax.
79
+ def enable_expect(syntax_host = ::RSpec::Matchers)
80
+ return if expect_enabled?(syntax_host)
81
+
82
+ syntax_host.module_eval do
83
+ def expect(*target, &target_block)
84
+ target << target_block if block_given?
85
+ raise ArgumentError.new("You must pass an argument or a block to #expect but not both.") unless target.size == 1
86
+ ::RSpec::Expectations::ExpectationTarget.new(target.first)
87
+ end
88
+ end
89
+
90
+ ::RSpec::Expectations::ExpectationTarget.enable_deprecated_should if should_enabled?
91
+ end
92
+
93
+ # @api private
94
+ # Disables the `expect` syntax.
95
+ def disable_expect(syntax_host = ::RSpec::Matchers)
96
+ return unless expect_enabled?(syntax_host)
97
+
98
+ syntax_host.module_eval do
99
+ undef expect
100
+ end
101
+
102
+ ::RSpec::Expectations::ExpectationTarget.disable_deprecated_should
103
+ end
104
+
105
+ # @api private
106
+ # Indicates whether or not the `should` syntax is enabled.
107
+ def should_enabled?(syntax_host = default_should_host)
108
+ syntax_host.method_defined?(:should)
109
+ end
110
+
111
+ # @api private
112
+ # Indicates whether or not the `expect` syntax is enabled.
113
+ def expect_enabled?(syntax_host = ::RSpec::Matchers)
114
+ syntax_host.method_defined?(:expect)
115
+ end
116
+
117
+ # @api private
118
+ # Generates a positive expectation expression.
119
+ def positive_expression(target_expression, matcher_expression)
120
+ expression_generator.positive_expression(target_expression, matcher_expression)
121
+ end
122
+
123
+ # @api private
124
+ # Generates a negative expectation expression.
125
+ def negative_expression(target_expression, matcher_expression)
126
+ expression_generator.negative_expression(target_expression, matcher_expression)
127
+ end
128
+
129
+ # @api private
130
+ # Selects which expression generator to use based on the configured syntax.
131
+ def expression_generator
132
+ if expect_enabled?
133
+ ExpectExpressionGenerator
134
+ else
135
+ ShouldExpressionGenerator
136
+ end
137
+ end
138
+
139
+ # @api private
140
+ # Generates expectation expressions for the `should` syntax.
141
+ module ShouldExpressionGenerator
142
+ def self.positive_expression(target_expression, matcher_expression)
143
+ "#{target_expression}.should #{matcher_expression}"
144
+ end
145
+
146
+ def self.negative_expression(target_expression, matcher_expression)
147
+ "#{target_expression}.should_not #{matcher_expression}"
148
+ end
149
+ end
150
+
151
+ # @api private
152
+ # Generates expectation expressions for the `expect` syntax.
153
+ module ExpectExpressionGenerator
154
+ def self.positive_expression(target_expression, matcher_expression)
155
+ "expect(#{target_expression}).to #{matcher_expression}"
156
+ end
157
+
158
+ def self.negative_expression(target_expression, matcher_expression)
159
+ "expect(#{target_expression}).not_to #{matcher_expression}"
160
+ end
161
+ end
162
+ end
163
+ end
164
+ end
@@ -0,0 +1,9 @@
1
+ module RSpec
2
+ module Expectations
3
+ # @private
4
+ module Version
5
+ STRING = '2.14.2'
6
+ end
7
+ end
8
+ end
9
+
@@ -0,0 +1,697 @@
1
+ require 'rspec/matchers/extensions/instance_eval_with_args'
2
+ require 'rspec/matchers/pretty'
3
+
4
+ require 'rspec/matchers/built_in'
5
+ require 'rspec/matchers/matcher'
6
+ require 'rspec/matchers/operator_matcher'
7
+ require 'rspec/matchers/be_close'
8
+
9
+ require 'rspec/matchers/generated_descriptions'
10
+ require 'rspec/matchers/method_missing'
11
+ require 'rspec/matchers/compatibility'
12
+ require 'rspec/matchers/dsl'
13
+ require 'rspec/matchers/test_unit_integration'
14
+
15
+ module RSpec
16
+ # RSpec::Matchers provides a number of useful matchers we use to define
17
+ # expectations. A matcher is any object that responds to the following:
18
+ #
19
+ # matches?(actual)
20
+ # failure_message_for_should
21
+ #
22
+ # These methods are also part of the matcher protocol, but are optional:
23
+ #
24
+ # does_not_match?(actual)
25
+ # failure_message_for_should_not
26
+ # description
27
+ #
28
+ # ## Predicates
29
+ #
30
+ # In addition to matchers that are defined explicitly, RSpec will create
31
+ # custom matchers on the fly for any arbitrary predicate, giving your specs a
32
+ # much more natural language feel.
33
+ #
34
+ # A Ruby predicate is a method that ends with a "?" and returns true or false.
35
+ # Common examples are `empty?`, `nil?`, and `instance_of?`.
36
+ #
37
+ # All you need to do is write `expect(..).to be_` followed by the predicate
38
+ # without the question mark, and RSpec will figure it out from there.
39
+ # For example:
40
+ #
41
+ # expect([]).to be_empty # => [].empty?() | passes
42
+ # expect([]).not_to be_empty # => [].empty?() | fails
43
+ #
44
+ # In addtion to prefixing the predicate matchers with "be_", you can also use "be_a_"
45
+ # and "be_an_", making your specs read much more naturally:
46
+ #
47
+ # expect("a string").to be_an_instance_of(String) # =>"a string".instance_of?(String) # passes
48
+ #
49
+ # expect(3).to be_a_kind_of(Fixnum) # => 3.kind_of?(Numeric) | passes
50
+ # expect(3).to be_a_kind_of(Numeric) # => 3.kind_of?(Numeric) | passes
51
+ # expect(3).to be_an_instance_of(Fixnum) # => 3.instance_of?(Fixnum) | passes
52
+ # expect(3).not_to be_an_instance_of(Numeric) # => 3.instance_of?(Numeric) | fails
53
+ #
54
+ # RSpec will also create custom matchers for predicates like `has_key?`. To
55
+ # use this feature, just state that the object should have_key(:key) and RSpec will
56
+ # call has_key?(:key) on the target. For example:
57
+ #
58
+ # expect(:a => "A").to have_key(:a)
59
+ # expect(:a => "A").to have_key(:b) # fails
60
+ #
61
+ # You can use this feature to invoke any predicate that begins with "has_", whether it is
62
+ # part of the Ruby libraries (like `Hash#has_key?`) or a method you wrote on your own class.
63
+ #
64
+ # ## Custom Matchers
65
+ #
66
+ # When you find that none of the stock matchers provide a natural feeling
67
+ # expectation, you can very easily write your own using RSpec's matcher DSL
68
+ # or writing one from scratch.
69
+ #
70
+ # ### Matcher DSL
71
+ #
72
+ # Imagine that you are writing a game in which players can be in various
73
+ # zones on a virtual board. To specify that bob should be in zone 4, you
74
+ # could say:
75
+ #
76
+ # expect(bob.current_zone).to eql(Zone.new("4"))
77
+ #
78
+ # But you might find it more expressive to say:
79
+ #
80
+ # expect(bob).to be_in_zone("4")
81
+ #
82
+ # and/or
83
+ #
84
+ # expect(bob).not_to be_in_zone("3")
85
+ #
86
+ # You can create such a matcher like so:
87
+ #
88
+ # RSpec::Matchers.define :be_in_zone do |zone|
89
+ # match do |player|
90
+ # player.in_zone?(zone)
91
+ # end
92
+ # end
93
+ #
94
+ # This will generate a <tt>be_in_zone</tt> method that returns a matcher
95
+ # with logical default messages for failures. You can override the failure
96
+ # messages and the generated description as follows:
97
+ #
98
+ # RSpec::Matchers.define :be_in_zone do |zone|
99
+ # match do |player|
100
+ # player.in_zone?(zone)
101
+ # end
102
+ #
103
+ # failure_message_for_should do |player|
104
+ # # generate and return the appropriate string.
105
+ # end
106
+ #
107
+ # failure_message_for_should_not do |player|
108
+ # # generate and return the appropriate string.
109
+ # end
110
+ #
111
+ # description do
112
+ # # generate and return the appropriate string.
113
+ # end
114
+ # end
115
+ #
116
+ # Each of the message-generation methods has access to the block arguments
117
+ # passed to the <tt>create</tt> method (in this case, <tt>zone</tt>). The
118
+ # failure message methods (<tt>failure_message_for_should</tt> and
119
+ # <tt>failure_message_for_should_not</tt>) are passed the actual value (the
120
+ # receiver of <tt>expect(..)</tt> or <tt>expect(..).not_to</tt>).
121
+ #
122
+ # ### Custom Matcher from scratch
123
+ #
124
+ # You could also write a custom matcher from scratch, as follows:
125
+ #
126
+ # class BeInZone
127
+ # def initialize(expected)
128
+ # @expected = expected
129
+ # end
130
+ #
131
+ # def matches?(target)
132
+ # @target = target
133
+ # @target.current_zone.eql?(Zone.new(@expected))
134
+ # end
135
+ #
136
+ # def failure_message_for_should
137
+ # "expected #{@target.inspect} to be in Zone #{@expected}"
138
+ # end
139
+ #
140
+ # def failure_message_for_should_not
141
+ # "expected #{@target.inspect} not to be in Zone #{@expected}"
142
+ # end
143
+ # end
144
+ #
145
+ # ... and a method like this:
146
+ #
147
+ # def be_in_zone(expected)
148
+ # BeInZone.new(expected)
149
+ # end
150
+ #
151
+ # And then expose the method to your specs. This is normally done
152
+ # by including the method and the class in a module, which is then
153
+ # included in your spec:
154
+ #
155
+ # module CustomGameMatchers
156
+ # class BeInZone
157
+ # # ...
158
+ # end
159
+ #
160
+ # def be_in_zone(expected)
161
+ # # ...
162
+ # end
163
+ # end
164
+ #
165
+ # describe "Player behaviour" do
166
+ # include CustomGameMatchers
167
+ # # ...
168
+ # end
169
+ #
170
+ # or you can include in globally in a spec_helper.rb file <tt>require</tt>d
171
+ # from your spec file(s):
172
+ #
173
+ # RSpec::configure do |config|
174
+ # config.include(CustomGameMatchers)
175
+ # end
176
+ module Matchers
177
+ # @api private
178
+ def self.is_a_matcher?(obj)
179
+ return true if ::RSpec::Matchers::BuiltIn::BaseMatcher === obj
180
+ return false if obj.respond_to?(:i_respond_to_everything_so_im_not_really_a_matcher)
181
+ return false unless obj.respond_to?(:matches?)
182
+
183
+ obj.respond_to?(:failure_message_for_should) || obj.respond_to?(:failure_message)
184
+ end
185
+
186
+ # Passes if actual is truthy (anything but false or nil)
187
+ def be_true
188
+ BuiltIn::BeTrue.new
189
+ end
190
+
191
+ # Passes if actual is falsy (false or nil)
192
+ def be_false
193
+ BuiltIn::BeFalse.new
194
+ end
195
+
196
+ # Passes if actual is nil
197
+ def be_nil
198
+ BuiltIn::BeNil.new
199
+ end
200
+
201
+ # @example
202
+ # expect(actual).to be_true
203
+ # expect(actual).to be_false
204
+ # expect(actual).to be_nil
205
+ # expect(actual).to be_[arbitrary_predicate](*args)
206
+ # expect(actual).not_to be_nil
207
+ # expect(actual).not_to be_[arbitrary_predicate](*args)
208
+ #
209
+ # Given true, false, or nil, will pass if actual value is true, false or
210
+ # nil (respectively). Given no args means the caller should satisfy an if
211
+ # condition (to be or not to be).
212
+ #
213
+ # Predicates are any Ruby method that ends in a "?" and returns true or
214
+ # false. Given be_ followed by arbitrary_predicate (without the "?"),
215
+ # RSpec will match convert that into a query against the target object.
216
+ #
217
+ # The arbitrary_predicate feature will handle any predicate prefixed with
218
+ # "be_an_" (e.g. be_an_instance_of), "be_a_" (e.g. be_a_kind_of) or "be_"
219
+ # (e.g. be_empty), letting you choose the prefix that best suits the
220
+ # predicate.
221
+ def be(*args)
222
+ args.empty? ?
223
+ Matchers::BuiltIn::Be.new : equal(*args)
224
+ end
225
+
226
+ # passes if target.kind_of?(klass)
227
+ def be_a(klass)
228
+ be_a_kind_of(klass)
229
+ end
230
+
231
+ alias_method :be_an, :be_a
232
+
233
+ # Passes if actual.instance_of?(expected)
234
+ #
235
+ # @example
236
+ #
237
+ # expect(5).to be_an_instance_of(Fixnum)
238
+ # expect(5).not_to be_an_instance_of(Numeric)
239
+ # expect(5).not_to be_an_instance_of(Float)
240
+ def be_an_instance_of(expected)
241
+ BuiltIn::BeAnInstanceOf.new(expected)
242
+ end
243
+
244
+ alias_method :be_instance_of, :be_an_instance_of
245
+
246
+ # Passes if actual.kind_of?(expected)
247
+ #
248
+ # @example
249
+ #
250
+ # expect(5).to be_a_kind_of(Fixnum)
251
+ # expect(5).to be_a_kind_of(Numeric)
252
+ # expect(5).not_to be_a_kind_of(Float)
253
+ def be_a_kind_of(expected)
254
+ BuiltIn::BeAKindOf.new(expected)
255
+ end
256
+
257
+ alias_method :be_kind_of, :be_a_kind_of
258
+
259
+ # Passes if actual == expected +/- delta
260
+ #
261
+ # @example
262
+ #
263
+ # expect(result).to be_within(0.5).of(3.0)
264
+ # expect(result).not_to be_within(0.5).of(3.0)
265
+ def be_within(delta)
266
+ BuiltIn::BeWithin.new(delta)
267
+ end
268
+
269
+ # Applied to a proc, specifies that its execution will cause some value to
270
+ # change.
271
+ #
272
+ # @param [Object] receiver
273
+ # @param [Symbol] message the message to send the receiver
274
+ #
275
+ # You can either pass <tt>receiver</tt> and <tt>message</tt>, or a block,
276
+ # but not both.
277
+ #
278
+ # When passing a block, it must use the <tt>{ ... }</tt> format, not
279
+ # do/end, as <tt>{ ... }</tt> binds to the +change+ method, whereas do/end
280
+ # would errantly bind to the +expect(..)+ or +expect(..).not_to+ method.
281
+ #
282
+ # @example
283
+ #
284
+ # expect {
285
+ # team.add_player(player)
286
+ # }.to change(roster, :count)
287
+ #
288
+ # expect {
289
+ # team.add_player(player)
290
+ # }.to change(roster, :count).by(1)
291
+ #
292
+ # expect {
293
+ # team.add_player(player)
294
+ # }.to change(roster, :count).by_at_least(1)
295
+ #
296
+ # expect {
297
+ # team.add_player(player)
298
+ # }.to change(roster, :count).by_at_most(1)
299
+ #
300
+ # string = "string"
301
+ # expect {
302
+ # string.reverse!
303
+ # }.to change { string }.from("string").to("gnirts")
304
+ #
305
+ # string = "string"
306
+ # expect {
307
+ # string
308
+ # }.not_to change { string }
309
+ #
310
+ # expect {
311
+ # person.happy_birthday
312
+ # }.to change(person, :birthday).from(32).to(33)
313
+ #
314
+ # expect {
315
+ # employee.develop_great_new_social_networking_app
316
+ # }.to change(employee, :title).from("Mail Clerk").to("CEO")
317
+ #
318
+ # expect {
319
+ # doctor.leave_office
320
+ # }.to change(doctor, :sign).from(/is in/).to(/is out/)
321
+ #
322
+ # user = User.new(:type => "admin")
323
+ # expect {
324
+ # user.symbolize_type
325
+ # }.to change(user, :type).from(String).to(Symbol)
326
+ #
327
+ # == Notes
328
+ #
329
+ # Evaluates <tt>receiver.message</tt> or <tt>block</tt> before and after it
330
+ # evaluates the block passed to <tt>expect</tt>.
331
+ #
332
+ # <tt>expect( ... ).not_to change</tt> only supports the form with no subsequent
333
+ # calls to <tt>by</tt>, <tt>by_at_least</tt>, <tt>by_at_most</tt>,
334
+ # <tt>to</tt> or <tt>from</tt>.
335
+ def change(receiver=nil, message=nil, &block)
336
+ BuiltIn::Change.new(receiver, message, &block)
337
+ end
338
+
339
+ # Passes if actual covers expected. This works for
340
+ # Ranges. You can also pass in multiple args
341
+ # and it will only pass if all args are found in Range.
342
+ #
343
+ # @example
344
+ # expect(1..10).to cover(5)
345
+ # expect(1..10).to cover(4, 6)
346
+ # expect(1..10).to cover(4, 6, 11) # fails
347
+ # expect(1..10).not_to cover(11)
348
+ # expect(1..10).not_to cover(5) # fails
349
+ #
350
+ # ### Warning:: Ruby >= 1.9 only
351
+ def cover(*values)
352
+ BuiltIn::Cover.new(*values)
353
+ end if (1..2).respond_to?(:cover?)
354
+
355
+ # Matches if the actual value ends with the expected value(s). In the case
356
+ # of a string, matches against the last `expected.length` characters of the
357
+ # actual string. In the case of an array, matches against the last
358
+ # `expected.length` elements of the actual array.
359
+ #
360
+ # @example
361
+ #
362
+ # expect("this string").to end_with "string"
363
+ # expect([0, 1, 2, 3, 4]).to end_with 4
364
+ # expect([0, 2, 3, 4, 4]).to end_with 3, 4
365
+ def end_with(*expected)
366
+ BuiltIn::EndWith.new(*expected)
367
+ end
368
+
369
+ # Passes if <tt>actual == expected</tt>.
370
+ #
371
+ # See http://www.ruby-doc.org/core/classes/Object.html#M001057 for more
372
+ # information about equality in Ruby.
373
+ #
374
+ # @example
375
+ #
376
+ # expect(5).to eq(5)
377
+ # expect(5).not_to eq(3)
378
+ def eq(expected)
379
+ BuiltIn::Eq.new(expected)
380
+ end
381
+
382
+ # Passes if +actual.eql?(expected)+
383
+ #
384
+ # See http://www.ruby-doc.org/core/classes/Object.html#M001057 for more
385
+ # information about equality in Ruby.
386
+ #
387
+ # @example
388
+ #
389
+ # expect(5).to eql(5)
390
+ # expect(5).not_to eql(3)
391
+ def eql(expected)
392
+ BuiltIn::Eql.new(expected)
393
+ end
394
+
395
+ # Passes if <tt>actual.equal?(expected)</tt> (object identity).
396
+ #
397
+ # See http://www.ruby-doc.org/core/classes/Object.html#M001057 for more
398
+ # information about equality in Ruby.
399
+ #
400
+ # @example
401
+ #
402
+ # expect(5).to equal(5) # Fixnums are equal
403
+ # expect("5").not_to equal("5") # Strings that look the same are not the same object
404
+ def equal(expected)
405
+ BuiltIn::Equal.new(expected)
406
+ end
407
+
408
+ # Passes if `actual.exist?` or `actual.exists?`
409
+ #
410
+ # @example
411
+ # expect(File).to exist("path/to/file")
412
+ def exist(*args)
413
+ BuiltIn::Exist.new(*args)
414
+ end
415
+
416
+ # Passes if receiver is a collection with the submitted number of items OR
417
+ # if the receiver OWNS a collection with the submitted number of items.
418
+ #
419
+ # If the receiver OWNS the collection, you must use the name of the
420
+ # collection. So if a `Team` instance has a collection named `#players`,
421
+ # you must use that name to set the expectation.
422
+ #
423
+ # If the receiver IS the collection, you can use any name you like for
424
+ # `named_collection`. We'd recommend using either "elements", "members", or
425
+ # "items" as these are all standard ways of describing the things IN a
426
+ # collection.
427
+ #
428
+ # This also works for Strings, letting you set expectations about their
429
+ # lengths.
430
+ #
431
+ # @example
432
+ #
433
+ # # Passes if team.players.size == 11
434
+ # expect(team).to have(11).players
435
+ #
436
+ # # Passes if [1,2,3].length == 3
437
+ # expect([1,2,3]).to have(3).items #"items" is pure sugar
438
+ #
439
+ # # Passes if ['a', 'b', 'c'].count == 3
440
+ # expect([1,2,3]).to have(3).items #"items" is pure sugar
441
+ #
442
+ # # Passes if "this string".length == 11
443
+ # expect("this string").to have(11).characters #"characters" is pure sugar
444
+ def have(n)
445
+ BuiltIn::Have.new(n)
446
+ end
447
+ alias :have_exactly :have
448
+
449
+ # Exactly like have() with >=.
450
+ #
451
+ # @example
452
+ # expect("this").to have_at_least(3).letters
453
+ #
454
+ # ### Warning:
455
+ #
456
+ # `expect(..).not_to have_at_least` is not supported
457
+ def have_at_least(n)
458
+ BuiltIn::Have.new(n, :at_least)
459
+ end
460
+
461
+ # Exactly like have() with <=.
462
+ #
463
+ # @example
464
+ # expect("this").to have_at_most(4).letters
465
+ #
466
+ # ### Warning:
467
+ #
468
+ # `expect(..).not_to have_at_most` is not supported
469
+ def have_at_most(n)
470
+ BuiltIn::Have.new(n, :at_most)
471
+ end
472
+
473
+ # Passes if actual includes expected. This works for
474
+ # collections and Strings. You can also pass in multiple args
475
+ # and it will only pass if all args are found in collection.
476
+ #
477
+ # @example
478
+ #
479
+ # expect([1,2,3]).to include(3)
480
+ # expect([1,2,3]).to include(2,3)
481
+ # expect([1,2,3]).to include(2,3,4) # fails
482
+ # expect([1,2,3]).not_to include(4)
483
+ # expect("spread").to include("read")
484
+ # expect("spread").not_to include("red")
485
+ def include(*expected)
486
+ BuiltIn::Include.new(*expected)
487
+ end
488
+
489
+ # Given a Regexp or String, passes if actual.match(pattern)
490
+ #
491
+ # @example
492
+ #
493
+ # expect(email).to match(/^([^\s]+)((?:[-a-z0-9]+\.)+[a-z]{2,})$/i)
494
+ # expect(email).to match("@example.com")
495
+ # expect(zipcode).to match_regex(/\A\d{5}(-\d{4})?\z/)
496
+ # expect(zipcode).to match_regex("90210")
497
+ #
498
+ # @note Due to Ruby's method dispatch mechanism, using the `#match` matcher
499
+ # within a custom matcher defined via the matcher DSL
500
+ # (`RSpec::Matcher.define`) will result Ruby calling the wrong `#match`
501
+ # method and raising an `ArgumentError`. Instead, use the aliased
502
+ # `#match_regex` method.
503
+ def match(expected)
504
+ BuiltIn::Match.new(expected)
505
+ end
506
+
507
+ alias_method :match_regex, :match
508
+
509
+ # With no args, matches if any error is raised.
510
+ # With a named error, matches only if that specific error is raised.
511
+ # With a named error and messsage specified as a String, matches only if both match.
512
+ # With a named error and messsage specified as a Regexp, matches only if both match.
513
+ # Pass an optional block to perform extra verifications on the exception matched
514
+ #
515
+ # @example
516
+ #
517
+ # expect { do_something_risky }.to raise_error
518
+ # expect { do_something_risky }.to raise_error(PoorRiskDecisionError)
519
+ # expect { do_something_risky }.to raise_error(PoorRiskDecisionError) { |error| expect(error.data).to eq 42 }
520
+ # expect { do_something_risky }.to raise_error(PoorRiskDecisionError, "that was too risky")
521
+ # expect { do_something_risky }.to raise_error(PoorRiskDecisionError, /oo ri/)
522
+ #
523
+ # expect { do_something_risky }.not_to raise_error
524
+ # expect { do_something_risky }.not_to raise_error(PoorRiskDecisionError)
525
+ # expect { do_something_risky }.not_to raise_error(PoorRiskDecisionError, "that was too risky")
526
+ # expect { do_something_risky }.not_to raise_error(PoorRiskDecisionError, /oo ri/)
527
+ def raise_error(error=Exception, message=nil, &block)
528
+ BuiltIn::RaiseError.new(error, message, &block)
529
+ end
530
+
531
+ alias_method :raise_exception, :raise_error
532
+
533
+ # Matches if the target object responds to all of the names
534
+ # provided. Names can be Strings or Symbols.
535
+ #
536
+ # @example
537
+ #
538
+ # expect("string").to respond_to(:length)
539
+ #
540
+ def respond_to(*names)
541
+ BuiltIn::RespondTo.new(*names)
542
+ end
543
+
544
+ # Passes if the submitted block returns true. Yields target to the
545
+ # block.
546
+ #
547
+ # Generally speaking, this should be thought of as a last resort when
548
+ # you can't find any other way to specify the behaviour you wish to
549
+ # specify.
550
+ #
551
+ # If you do find yourself in such a situation, you could always write
552
+ # a custom matcher, which would likely make your specs more expressive.
553
+ #
554
+ # @example
555
+ #
556
+ # expect(5).to satisfy { |n| n > 3 }
557
+ def satisfy(&block)
558
+ BuiltIn::Satisfy.new(&block)
559
+ end
560
+
561
+ # Matches if the actual value starts with the expected value(s). In the
562
+ # case of a string, matches against the first `expected.length` characters
563
+ # of the actual string. In the case of an array, matches against the first
564
+ # `expected.length` elements of the actual array.
565
+ #
566
+ # @example
567
+ #
568
+ # expect("this string").to start_with "this s"
569
+ # expect([0, 1, 2, 3, 4]).to start_with 0
570
+ # expect([0, 2, 3, 4, 4]).to start_with 0, 1
571
+ def start_with(*expected)
572
+ BuiltIn::StartWith.new(*expected)
573
+ end
574
+
575
+ # Given no argument, matches if a proc throws any Symbol.
576
+ #
577
+ # Given a Symbol, matches if the given proc throws the specified Symbol.
578
+ #
579
+ # Given a Symbol and an arg, matches if the given proc throws the
580
+ # specified Symbol with the specified arg.
581
+ #
582
+ # @example
583
+ #
584
+ # expect { do_something_risky }.to throw_symbol
585
+ # expect { do_something_risky }.to throw_symbol(:that_was_risky)
586
+ # expect { do_something_risky }.to throw_symbol(:that_was_risky, 'culprit')
587
+ #
588
+ # expect { do_something_risky }.not_to throw_symbol
589
+ # expect { do_something_risky }.not_to throw_symbol(:that_was_risky)
590
+ # expect { do_something_risky }.not_to throw_symbol(:that_was_risky, 'culprit')
591
+ def throw_symbol(expected_symbol=nil, expected_arg=nil)
592
+ BuiltIn::ThrowSymbol.new(expected_symbol, expected_arg)
593
+ end
594
+
595
+ # Passes if the method called in the expect block yields, regardless
596
+ # of whether or not arguments are yielded.
597
+ #
598
+ # @example
599
+ #
600
+ # expect { |b| 5.tap(&b) }.to yield_control
601
+ # expect { |b| "a".to_sym(&b) }.not_to yield_control
602
+ #
603
+ # @note Your expect block must accept a parameter and pass it on to
604
+ # the method-under-test as a block.
605
+ # @note This matcher is not designed for use with methods that yield
606
+ # multiple times.
607
+ def yield_control
608
+ BuiltIn::YieldControl.new
609
+ end
610
+
611
+ # Passes if the method called in the expect block yields with
612
+ # no arguments. Fails if it does not yield, or yields with arguments.
613
+ #
614
+ # @example
615
+ #
616
+ # expect { |b| User.transaction(&b) }.to yield_with_no_args
617
+ # expect { |b| 5.tap(&b) }.not_to yield_with_no_args # because it yields with `5`
618
+ # expect { |b| "a".to_sym(&b) }.not_to yield_with_no_args # because it does not yield
619
+ #
620
+ # @note Your expect block must accept a parameter and pass it on to
621
+ # the method-under-test as a block.
622
+ # @note This matcher is not designed for use with methods that yield
623
+ # multiple times.
624
+ def yield_with_no_args
625
+ BuiltIn::YieldWithNoArgs.new
626
+ end
627
+
628
+ # Given no arguments, matches if the method called in the expect
629
+ # block yields with arguments (regardless of what they are or how
630
+ # many there are).
631
+ #
632
+ # Given arguments, matches if the method called in the expect block
633
+ # yields with arguments that match the given arguments.
634
+ #
635
+ # Argument matching is done using `===` (the case match operator)
636
+ # and `==`. If the expected and actual arguments match with either
637
+ # operator, the matcher will pass.
638
+ #
639
+ # @example
640
+ #
641
+ # expect { |b| 5.tap(&b) }.to yield_with_args # because #tap yields an arg
642
+ # expect { |b| 5.tap(&b) }.to yield_with_args(5) # because 5 == 5
643
+ # expect { |b| 5.tap(&b) }.to yield_with_args(Fixnum) # because Fixnum === 5
644
+ # expect { |b| File.open("f.txt", &b) }.to yield_with_args(/txt/) # because /txt/ === "f.txt"
645
+ #
646
+ # expect { |b| User.transaction(&b) }.not_to yield_with_args # because it yields no args
647
+ # expect { |b| 5.tap(&b) }.not_to yield_with_args(1, 2, 3)
648
+ #
649
+ # @note Your expect block must accept a parameter and pass it on to
650
+ # the method-under-test as a block.
651
+ # @note This matcher is not designed for use with methods that yield
652
+ # multiple times.
653
+ def yield_with_args(*args)
654
+ BuiltIn::YieldWithArgs.new(*args)
655
+ end
656
+
657
+ # Designed for use with methods that repeatedly yield (such as
658
+ # iterators). Passes if the method called in the expect block yields
659
+ # multiple times with arguments matching those given.
660
+ #
661
+ # Argument matching is done using `===` (the case match operator)
662
+ # and `==`. If the expected and actual arguments match with either
663
+ # operator, the matcher will pass.
664
+ #
665
+ # @example
666
+ #
667
+ # expect { |b| [1, 2, 3].each(&b) }.to yield_successive_args(1, 2, 3)
668
+ # expect { |b| { :a => 1, :b => 2 }.each(&b) }.to yield_successive_args([:a, 1], [:b, 2])
669
+ # expect { |b| [1, 2, 3].each(&b) }.not_to yield_successive_args(1, 2)
670
+ #
671
+ # @note Your expect block must accept a parameter and pass it on to
672
+ # the method-under-test as a block.
673
+ def yield_successive_args(*args)
674
+ BuiltIn::YieldSuccessiveArgs.new(*args)
675
+ end
676
+
677
+ # Passes if actual contains all of the expected regardless of order.
678
+ # This works for collections. Pass in multiple args and it will only
679
+ # pass if all args are found in collection.
680
+ #
681
+ # @note This is also available using the `=~` operator with `should`,
682
+ # but `=~` is not supported with `expect`.
683
+ #
684
+ # @note This matcher only supports positive expectations.
685
+ # expect(..).not_to match_array(other_array) is not supported.
686
+ #
687
+ # @example
688
+ #
689
+ # expect([1,2,3]).to match_array([1,2,3])
690
+ # expect([1,2,3]).to match_array([1,3,2])
691
+ def match_array(array)
692
+ BuiltIn::MatchArray.new(array)
693
+ end
694
+
695
+ OperatorMatcher.register(Enumerable, '=~', BuiltIn::MatchArray)
696
+ end
697
+ end