clickable_link 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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,100 @@
1
+ require 'rspec/mocks'
2
+
3
+ module RSpec
4
+ module Core
5
+ # Because rspec-core dog-foods itself, rspec-core's spec suite has
6
+ # examples that define example groups and examples and run them. The
7
+ # usual lifetime of an RSpec::Mocks::Proxy is for one example
8
+ # (the proxy cache gets cleared between each example), but since the
9
+ # specs in rspec-core's suite sometimes create test doubles and pass
10
+ # them to examples a spec defines and runs, the test double's proxy
11
+ # must live beyond the inner example: it must live for the scope
12
+ # of wherever it got defined. Here we implement the necessary semantics
13
+ # for rspec-core's specs:
14
+ #
15
+ # - #verify_all and #reset_all affect only mocks that were created
16
+ # within the current scope.
17
+ # - Mock proxies live for the duration of the scope in which they are
18
+ # created.
19
+ #
20
+ # Thus, mock proxies created in an inner example live for only that
21
+ # example, but mock proxies created in an outer example can be used
22
+ # in an inner example but will only be reset/verified when the outer
23
+ # example completes.
24
+ class SandboxedMockSpace < ::RSpec::Mocks::Space
25
+ def self.sandboxed
26
+ orig_space = RSpec::Mocks.space
27
+ RSpec::Mocks.space = RSpec::Core::SandboxedMockSpace.new
28
+
29
+ RSpec::Core::Example.class_eval do
30
+ alias_method :orig_run, :run
31
+ def run(*args)
32
+ RSpec::Mocks.space.sandboxed do
33
+ orig_run(*args)
34
+ end
35
+ end
36
+ end
37
+
38
+ yield
39
+ ensure
40
+ RSpec::Core::Example.class_eval do
41
+ remove_method :run
42
+ alias_method :run, :orig_run
43
+ remove_method :orig_run
44
+ end
45
+
46
+ RSpec::Mocks.space = orig_space
47
+ end
48
+
49
+ class Sandbox
50
+ attr_reader :proxies
51
+
52
+ def initialize
53
+ @proxies = Set.new
54
+ end
55
+
56
+ def verify_all
57
+ @proxies.each { |p| p.verify }
58
+ end
59
+
60
+ def reset_all
61
+ @proxies.each { |p| p.reset }
62
+ end
63
+ end
64
+
65
+ def initialize
66
+ @sandbox_stack = []
67
+ super
68
+ end
69
+
70
+ def sandboxed
71
+ @sandbox_stack << Sandbox.new
72
+ yield
73
+ ensure
74
+ @sandbox_stack.pop
75
+ end
76
+
77
+ def verify_all
78
+ return super unless sandbox = @sandbox_stack.last
79
+ sandbox.verify_all
80
+ end
81
+
82
+ def reset_all
83
+ return super unless sandbox = @sandbox_stack.last
84
+ sandbox.reset_all
85
+ end
86
+
87
+ def proxy_for(object)
88
+ new_proxy = !proxies.has_key?(object.__id__)
89
+ proxy = super
90
+
91
+ if new_proxy && sandbox = @sandbox_stack.last
92
+ sandbox.proxies << proxy
93
+ end
94
+
95
+ proxy
96
+ end
97
+ end
98
+ end
99
+ end
100
+
@@ -0,0 +1,41 @@
1
+ shared_examples_for "metadata hash builder" do
2
+ context "when RSpec.configuration.treat_symbols_as_metadata_keys_with_true_values is set to true" do
3
+ let(:hash) { metadata_hash(:foo, :bar, :bazz => 23) }
4
+
5
+ before(:each) do
6
+ RSpec.configure { |c| c.treat_symbols_as_metadata_keys_with_true_values = true }
7
+ end
8
+
9
+ it 'treats symbols as metadata keys with a true value' do
10
+ expect(hash[:foo]).to be(true)
11
+ expect(hash[:bar]).to be(true)
12
+ end
13
+
14
+ it 'still processes hash values normally' do
15
+ expect(hash[:bazz]).to be(23)
16
+ end
17
+ end
18
+
19
+ context "when RSpec.configuration.treat_symbols_as_metadata_keys_with_true_values is set to false" do
20
+ let(:warning_receiver) { Kernel }
21
+
22
+ before(:each) do
23
+ RSpec.configure { |c| c.treat_symbols_as_metadata_keys_with_true_values = false }
24
+ warning_receiver.stub(:warn)
25
+ end
26
+
27
+ it 'prints a deprecation warning about any symbols given as arguments' do
28
+ warning_receiver.should_receive(:warn).with(/In RSpec 3, these symbols will be treated as metadata keys/)
29
+ metadata_hash(:foo, :bar, :key => 'value')
30
+ end
31
+
32
+ it 'does not treat symbols as metadata keys' do
33
+ expect(metadata_hash(:foo, :bar, :key => 'value')).not_to include(:foo, :bar)
34
+ end
35
+
36
+ it 'does not print a warning if there are no symbol arguments' do
37
+ warning_receiver.should_not_receive(:warn)
38
+ metadata_hash(:foo => 23, :bar => 17)
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,44 @@
1
+ shared_context "spec files" do
2
+ def failing_spec_filename
3
+ @failing_spec_filename ||= File.expand_path(File.dirname(__FILE__)) + "/_failing_spec.rb"
4
+ end
5
+
6
+ def passing_spec_filename
7
+ @passing_spec_filename ||= File.expand_path(File.dirname(__FILE__)) + "/_passing_spec.rb"
8
+ end
9
+
10
+ def create_passing_spec_file
11
+ File.open(passing_spec_filename, 'w') do |f|
12
+ f.write %q{
13
+ describe "passing spec" do
14
+ it "passes" do
15
+ expect(1).to eq(1)
16
+ end
17
+ end
18
+ }
19
+ end
20
+ end
21
+
22
+ def create_failing_spec_file
23
+ File.open(failing_spec_filename, 'w') do |f|
24
+ f.write %q{
25
+ describe "failing spec" do
26
+ it "fails" do
27
+ expect(1).to eq(2)
28
+ end
29
+ end
30
+ }
31
+ end
32
+ end
33
+
34
+ before(:all) do
35
+ create_passing_spec_file
36
+ create_failing_spec_file
37
+ end
38
+
39
+ after(:all) do
40
+ File.delete(passing_spec_filename)
41
+ File.delete(failing_spec_filename)
42
+ end
43
+
44
+ end
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ -
3
+ README.md
4
+ License.txt
5
+ Changelog.md
@@ -0,0 +1,6 @@
1
+ --exclude features
2
+ --no-private
3
+ --markup markdown
4
+ -
5
+ Changelog.md
6
+ License.txt
@@ -0,0 +1,399 @@
1
+ ### 2.14.2 / 2013-08-14
2
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.14.1...v2.14.2)
3
+
4
+ Bug fixes
5
+
6
+ * Fix `be_<predicate>` matcher to not support operator chaining like the
7
+ `be` matcher does (e.g. `be == 5`). This led to some odd behaviors
8
+ since `be_<predicate> == anything` returned a `BeComparedTo` matcher
9
+ and was thus always truthy. This was a consequence of the implementation
10
+ (e.g. subclassing the basic `Be` matcher) and was not intended behavior.
11
+ (Myron Marston).
12
+ * Fix `change` matcher to compare using `==` in addition to `===`. This
13
+ is important for an expression like:
14
+ `expect {}.to change { a.class }.from(ClassA).to(ClassB)` because
15
+ `SomeClass === SomeClass` returns false. (Myron Marston)
16
+
17
+ ### 2.14.1 / 2013-08-08
18
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.14.0...2.14.1)
19
+
20
+ Bug fixes
21
+
22
+ * Ensure diff output uses the same encoding as the encoding of
23
+ the string being diff'd to prevent `Encoding::UndefinedConversionError`
24
+ errors (Jon Rowe).
25
+
26
+ ### 2.14.0 / 2013-07-06
27
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.14.0.rc1...v2.14.0)
28
+
29
+ Bug fixes
30
+
31
+ * Values that are not matchers use `#inspect`, rather than `#description` for
32
+ documentation output (Andy Lindeman, Sam Phippen).
33
+ * Make `expect(a).to be_within(x).percent_of(y)` work with negative y
34
+ (Katsuhiko Nishimra).
35
+ * Make the `be_predicate` matcher work as expected used with `expect{...}.to
36
+ change...` (Sam Phippen).
37
+
38
+ ### 2.14.0.rc1 / 2013-05-27
39
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.13.0...v2.14.0.rc1)
40
+
41
+ Enhancements
42
+
43
+ * Enhance `yield_control` so that you can specify an exact or relative
44
+ number of times: `expect { }.to yield_control.exactly(3).times`,
45
+ `expect { }.to yield_control.at_least(2).times`, etc (Bartek
46
+ Borkowski).
47
+ * Make the differ that is used when an expectation fails better handle arrays
48
+ by splitting each element of the array onto its own line. (Sam Phippen)
49
+ * Accept duck-typed strings that respond to `:to_str` as expectation messages.
50
+ (Toby Ovod-Everett)
51
+
52
+ Bug fixes
53
+
54
+ * Fix differ to not raise errors when dealing with differently-encoded
55
+ strings (Jon Rowe).
56
+ * Fix `expect(something).to be_within(x).percent_of(y)` where x and y are both
57
+ integers (Sam Phippen).
58
+ * Fix `have` matcher to handle the fact that on ruby 2.0,
59
+ `Enumerator#size` may return nil (Kenta Murata).
60
+ * Fix `expect { raise s }.to raise_error(s)` where s is an error instance
61
+ on ruby 2.0 (Sam Phippen).
62
+ * Fix `expect(object).to raise_error` passing. This now warns the user and
63
+ fails the spec (tomykaira).
64
+
65
+ Deprecations
66
+
67
+ * Deprecate `expect { }.not_to raise_error(SpecificErrorClass)` or
68
+ `expect { }.not_to raise_error("some specific message")`. Using
69
+ these was prone to hiding failures as they would allow _any other
70
+ error_ to pass. (Sam Phippen and David Chelimsky)
71
+
72
+ ### 2.13.0 / 2013-02-23
73
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.12.1...v2.13.0)
74
+
75
+ Enhancements
76
+
77
+ * Add support for percent deltas to `be_within` matcher:
78
+ `expect(value).to be_within(10).percent_of(expected)`
79
+ (Myron Marston).
80
+ * Add support to `include` matcher to allow it to be given a list
81
+ of matchers as the expecteds to match against (Luke Redpath).
82
+
83
+ Bug fixes
84
+
85
+ * Fix `change` matcher so that it dups strings in order to handle
86
+ mutated strings (Myron Marston).
87
+ * Fix `should be =~ /some regex/` / `expect(...).to be =~ /some regex/`.
88
+ Previously, these either failed with a confusing `undefined method
89
+ matches?' for false:FalseClass` error or were no-ops that didn't
90
+ actually verify anything (Myron Marston).
91
+ * Add compatibility for diff-lcs 1.2 and relax the version
92
+ constraint (Peter Goldstein).
93
+ * Fix DSL-generated matchers to allow multiple instances of the
94
+ same matcher in the same example to have different description
95
+ and failure messages based on the expected value (Myron Marston).
96
+ * Prevent `undefined method #split for Array` error when dumping
97
+ the diff of an array of multiline strings (Myron Marston).
98
+ * Don't blow up when comparing strings that are in an encoding
99
+ that is not ASCII compatible (Myron Marston).
100
+ * Remove confusing "Check the implementation of #==" message
101
+ printed for empty diffs (Myron Marston).
102
+
103
+ ### 2.12.1 / 2012-12-15
104
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.12.0...v2.12.1)
105
+
106
+ Bug fixes
107
+
108
+ * Improve the failure message for an expression like
109
+ `{}.should =~ {}`. (Myron Marston and Andy Lindeman)
110
+ * Provide a `match_regex` alias so that custom matchers
111
+ built using the matcher DSL can use it (since `match`
112
+ is a different method in that context).
113
+ (Steven Harman)
114
+
115
+ ### 2.12.0 / 2012-11-12
116
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.3...v2.12.0)
117
+
118
+ Enhancements
119
+
120
+ * Colorize diffs if the `--color` option is configured. (Alex Coplan)
121
+ * Include backtraces in unexpected errors handled by `raise_error`
122
+ matcher (Myron Marston)
123
+ * Print a warning when users accidentally pass a non-string argument
124
+ as an expectation message (Sam Phippen)
125
+ * `=~` and `match_array` matchers output a more useful error message when
126
+ the actual value is not an array (or an object that responds to `#to_ary`)
127
+ (Sam Phippen)
128
+
129
+ Bug fixes
130
+
131
+ * Fix `include` matcher so that `expect({}).to include(:a => nil)`
132
+ fails as it should (Sam Phippen).
133
+ * Fix `be_an_instance_of` matcher so that `Class#to_s` is used in the
134
+ description rather than `Class#inspect`, since some classes (like
135
+ `ActiveRecord::Base`) define a long, verbose `#inspect`.
136
+ (Tom Stuart)
137
+
138
+ ### 2.11.3 / 2012-09-04
139
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.2...v2.11.3)
140
+
141
+ Bug fixes
142
+
143
+ * Fix (and deprecate) `expect { }.should` syntax so that it works even
144
+ though it was never a documented or intended syntax. It worked as a
145
+ consequence of the implementation of `expect` in RSpec 2.10 and
146
+ earlier. (Myron Marston)
147
+ * Ensure #== is defined on built in matchers so that they can be composed.
148
+ For example:
149
+
150
+ expect {
151
+ user.emailed!
152
+ }.to change { user.last_emailed_at }.to be_within(1.second).of(Time.zone.now)
153
+
154
+ ### 2.11.2 / 2012-07-25
155
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.1...v2.11.2)
156
+
157
+ Bug fixes
158
+
159
+ * Define `should` and `should_not` on `Object` rather than `BasicObject`
160
+ on MacRuby. On MacRuby, `BasicObject` is defined but is not the root
161
+ of the object hierarchy. (Gabriel Gilder)
162
+
163
+ ### 2.11.1 / 2012-07-08
164
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.0...v2.11.1)
165
+
166
+ Bug fixes
167
+
168
+ * Constrain `actual` in `be_within` matcher to values that respond to `-` instead
169
+ of requiring a specific type.
170
+ * `Time`, for example, is a legit alternative.
171
+
172
+ ### 2.11.0 / 2012-07-07
173
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.10.0...v2.11.0)
174
+
175
+ Enhancements
176
+
177
+ * Expand `expect` syntax so that it supports expections on bare values
178
+ in addition to blocks (Myron Marston).
179
+ * Add configuration options to control available expectation syntaxes
180
+ (Myron Marston):
181
+ * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :expect }`
182
+ * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :should }`
183
+ * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = [:should, :expect] }`
184
+ * `RSpec.configuration.add_should_and_should_not_to Delegator`
185
+
186
+ Bug fixes
187
+
188
+ * Allow only `Numeric` values to be the "actual" in the `be_within` matcher.
189
+ This prevents confusing error messages. (Su Zhang @zhangsu)
190
+ * Define `should` and `should_not` on `BasicObject` rather than `Kernel`
191
+ on 1.9. This makes `should` and `should_not` work properly with
192
+ `BasicObject`-subclassed proxy objects like `Delegator`. (Myron
193
+ Marston)
194
+
195
+ ### 2.10.0 / 2012-05-03
196
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.9.1...v2.10.0)
197
+
198
+ Enhancements
199
+
200
+ * Add new `start_with` and `end_with` matchers (Jeremy Wadsack)
201
+ * Add new matchers for specifying yields (Myron Marston):
202
+ * `expect {...}.to yield_control`
203
+ * `expect {...}.to yield_with_args(1, 2, 3)`
204
+ * `expect {...}.to yield_with_no_args`
205
+ * `expect {...}.to yield_successive_args(1, 2, 3)`
206
+ * `match_unless_raises` takes multiple exception args
207
+
208
+ Bug fixes
209
+
210
+ * Fix `be_within` matcher to be inclusive of delta.
211
+ * Fix message-specific specs to pass on Rubinius (John Firebaugh)
212
+
213
+ ### 2.9.1 / 2012-04-03
214
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.9.0...v2.9.1)
215
+
216
+ Bug fixes
217
+
218
+ * Provide a helpful message if the diff between two objects is empty.
219
+ * Fix bug diffing single strings with multiline strings.
220
+ * Fix for error with using custom matchers inside other custom matchers
221
+ (mirasrael)
222
+ * Fix using execution context methods in nested DSL matchers (mirasrael)
223
+
224
+ ### 2.9.0 / 2012-03-17
225
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.8.0...v2.9.0)
226
+
227
+ Enhancements
228
+
229
+ * Move built-in matcher classes to RSpec::Matchers::BuiltIn to reduce pollution
230
+ of RSpec::Matchers (which is included in every example).
231
+ * Autoload files with matcher classes to improve load time.
232
+
233
+ Bug fixes
234
+
235
+ * Align `respond_to?` and `method_missing` in DSL-defined matchers.
236
+ * Clear out user-defined instance variables between invocations of DSL-defined
237
+ matchers.
238
+ * Dup the instance of a DSL generated matcher so its state is not changed by
239
+ subsequent invocations.
240
+ * Treat expected args consistently across positive and negative expectations
241
+ (thanks to Ralf Kistner for the heads up)
242
+
243
+ ### 2.8.0 / 2012-01-04
244
+
245
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.8.0.rc2...v2.8.0)
246
+
247
+ Enhancements
248
+
249
+ * Better diff output for Hash (Philippe Creux)
250
+ * Eliminate Ruby warnings (Olek Janiszewski)
251
+
252
+ ### 2.8.0.rc2 / 2011-12-19
253
+
254
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.8.0.rc1...v2.8.0.rc2)
255
+
256
+ No changes for this release. Just releasing with the other rspec gems.
257
+
258
+ ### 2.8.0.rc1 / 2011-11-06
259
+
260
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.7.0...v2.8.0.rc1)
261
+
262
+ Enhancements
263
+
264
+ * Use classes for the built-in matchers (they're faster).
265
+ * Eliminate Ruby warnings (Matijs van Zuijlen)
266
+
267
+ ### 2.7.0 / 2011-10-16
268
+
269
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.6.0...v2.7.0)
270
+
271
+ Enhancements
272
+
273
+ * `HaveMatcher` converts argument using `to_i` (Alex Bepple & Pat Maddox)
274
+ * Improved failure message for the `have_xxx` matcher (Myron Marston)
275
+ * `HaveMatcher` supports `count` (Matthew Bellantoni)
276
+ * Change matcher dups `Enumerable` before the action, supporting custom
277
+ `Enumerable` types like `CollectionProxy` in Rails (David Chelimsky)
278
+
279
+ Bug fixes
280
+
281
+ * Fix typo in `have(n).xyz` documentation (Jean Boussier)
282
+ * fix `safe_sort` for ruby 1.9.2 (`Kernel` now defines `<=>` for Object) (Peter
283
+ van Hardenberg)
284
+
285
+ ### 2.6.0 / 2011-05-12
286
+
287
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.5.0...v2.6.0)
288
+
289
+ Enhancements
290
+
291
+ * `change` matcher accepts regexps (Robert Davis)
292
+ * better descriptions for `have_xxx` matchers (Magnus Bergmark)
293
+ * `range.should cover(*values)` (Anders Furseth)
294
+
295
+ Bug fixes
296
+
297
+ * Removed non-ascii characters that were choking rcov (Geoffrey Byers)
298
+ * change matcher dups arrays and hashes so their before/after states can be
299
+ compared correctly.
300
+ * Fix the order of inclusion of RSpec::Matchers in Test::Unit::TestCase and
301
+ MiniTest::Unit::TestCase to prevent a SystemStackError (Myron Marston)
302
+
303
+ ### 2.5.0 / 2011-02-05
304
+
305
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.4.0...v2.5.0)
306
+
307
+ Enhancements
308
+
309
+ * `should exist` works with `exist?` or `exists?` (Myron Marston)
310
+ * `expect { ... }.not_to do_something` (in addition to `to_not`)
311
+
312
+ Documentation
313
+
314
+ * improved docs for raise_error matcher (James Almond)
315
+
316
+ ### 2.4.0 / 2011-01-02
317
+
318
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.3.0...v2.4.0)
319
+
320
+ No functional changes in this release, which was made to align with the
321
+ rspec-core-2.4.0 release.
322
+
323
+ Enhancements
324
+
325
+ * improved RDoc for change matcher (Jo Liss)
326
+
327
+ ### 2.3.0 / 2010-12-12
328
+
329
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.2.1...v2.3.0)
330
+
331
+ Enhancements
332
+
333
+ * diff strings when include matcher fails (Mike Sassak)
334
+
335
+ ### 2.2.0 / 2010-11-28
336
+
337
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.1.0...v2.2.0)
338
+
339
+ ### 2.1.0 / 2010-11-07
340
+
341
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.0.1...v2.1.0)
342
+
343
+ Enhancements
344
+
345
+ * `be_within(delta).of(expected)` matcher (Myron Marston)
346
+ * Lots of new Cucumber features (Myron Marston)
347
+ * Raise error if you try `should != expected` on Ruby-1.9 (Myron Marston)
348
+ * Improved failure messages from `throw_symbol` (Myron Marston)
349
+
350
+ Bug fixes
351
+
352
+ * Eliminate hard dependency on `RSpec::Core` (Myron Marston)
353
+ * `have_matcher` - use pluralize only when ActiveSupport inflections are indeed
354
+ defined (Josep M Bach)
355
+ * throw_symbol matcher no longer swallows exceptions (Myron Marston)
356
+ * fix matcher chaining to avoid name collisions (Myron Marston)
357
+
358
+ ### 2.0.0 / 2010-10-10
359
+
360
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.0.0.rc...v2.0.0)
361
+
362
+ Enhancements
363
+
364
+ * Add match_for_should_not method to matcher DSL (Myron Marston)
365
+
366
+ Bug fixes
367
+
368
+ * `respond_to` matcher works correctly with `should_not` with multiple methods
369
+ (Myron Marston)
370
+ * `include` matcher works correctly with `should_not` with multiple values
371
+ (Myron Marston)
372
+
373
+ ### 2.0.0.rc / 2010-10-05
374
+
375
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.0.0.beta.22...v2.0.0.rc)
376
+
377
+ Enhancements
378
+
379
+ * `require 'rspec/expectations'` in a T::U or MiniUnit suite (Josep M. Bach)
380
+
381
+ Bug fixes
382
+
383
+ * change by 0 passes/fails correctly (Len Smith)
384
+ * Add description to satisfy matcher
385
+
386
+ ### 2.0.0.beta.22 / 2010-09-12
387
+
388
+ [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.0.0.beta.20...v2.0.0.beta.22)
389
+
390
+ Enhancements
391
+
392
+ * diffing improvements
393
+ * diff multiline strings
394
+ * don't diff single line strings
395
+ * don't diff numbers (silly)
396
+ * diff regexp + multiline string
397
+
398
+ Bug fixes
399
+ * `should[_not]` change now handles boolean values correctly