remq 0.0.1a → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (789) hide show
  1. data/Rakefile +8 -0
  2. data/Readme.md +31 -17
  3. data/lib/remq/version.rb +1 -1
  4. data/lib/remq.rb +130 -28
  5. data/remq.gemspec +2 -4
  6. data/spec/remq_spec.rb +68 -42
  7. data/vendor/bundle/bin/autospec +23 -0
  8. data/vendor/bundle/bin/htmldiff +25 -0
  9. data/vendor/bundle/bin/ldiff +25 -0
  10. data/vendor/bundle/bin/rake +23 -0
  11. data/vendor/bundle/bin/rspec +23 -0
  12. data/vendor/bundle/cache/diff-lcs-1.1.3.gem +0 -0
  13. data/vendor/bundle/cache/hiredis-0.4.5.gem +0 -0
  14. data/vendor/bundle/cache/multi_json-1.6.1.gem +0 -0
  15. data/vendor/bundle/cache/rake-10.0.3.gem +0 -0
  16. data/vendor/bundle/cache/redis-3.0.2.gem +0 -0
  17. data/vendor/bundle/cache/rspec-2.12.0.gem +0 -0
  18. data/vendor/bundle/cache/rspec-core-2.12.2.gem +0 -0
  19. data/vendor/bundle/cache/rspec-expectations-2.12.1.gem +0 -0
  20. data/vendor/bundle/cache/rspec-mocks-2.12.2.gem +0 -0
  21. data/vendor/bundle/gems/diff-lcs-1.1.3/History.rdoc +54 -0
  22. data/vendor/bundle/gems/diff-lcs-1.1.3/License.rdoc +38 -0
  23. data/vendor/bundle/gems/diff-lcs-1.1.3/Manifest.txt +27 -0
  24. data/vendor/bundle/gems/diff-lcs-1.1.3/README.rdoc +72 -0
  25. data/vendor/bundle/gems/diff-lcs-1.1.3/Rakefile +26 -0
  26. data/vendor/bundle/gems/diff-lcs-1.1.3/bin/htmldiff +32 -0
  27. data/vendor/bundle/gems/diff-lcs-1.1.3/bin/ldiff +6 -0
  28. data/vendor/bundle/gems/diff-lcs-1.1.3/diff-lcs.gemspec +51 -0
  29. data/vendor/bundle/gems/diff-lcs-1.1.3/docs/COPYING.txt +340 -0
  30. data/vendor/bundle/gems/diff-lcs-1.1.3/docs/artistic.html +289 -0
  31. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/array.rb +21 -0
  32. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/block.rb +51 -0
  33. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/callbacks.rb +322 -0
  34. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/change.rb +169 -0
  35. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/htmldiff.rb +151 -0
  36. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/hunk.rb +242 -0
  37. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/ldiff.rb +210 -0
  38. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/string.rb +19 -0
  39. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs.rb +1105 -0
  40. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff-lcs.rb +5 -0
  41. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/diff_spec.rb +35 -0
  42. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/lcs_spec.rb +36 -0
  43. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/patch_spec.rb +390 -0
  44. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/sdiff_spec.rb +204 -0
  45. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/spec_helper.rb +284 -0
  46. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/traverse_balanced_spec.rb +286 -0
  47. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/traverse_sequences_spec.rb +83 -0
  48. data/vendor/bundle/gems/hiredis-0.4.5/COPYING +28 -0
  49. data/vendor/bundle/gems/hiredis-0.4.5/Rakefile +45 -0
  50. data/vendor/bundle/gems/hiredis-0.4.5/ext/hiredis_ext/Makefile +213 -0
  51. data/vendor/bundle/gems/hiredis-0.4.5/ext/hiredis_ext/connection.c +472 -0
  52. data/vendor/bundle/gems/hiredis-0.4.5/ext/hiredis_ext/connection.o +0 -0
  53. data/vendor/bundle/gems/hiredis-0.4.5/ext/hiredis_ext/extconf.rb +17 -0
  54. data/vendor/bundle/gems/hiredis-0.4.5/ext/hiredis_ext/hiredis_ext.bundle +0 -0
  55. data/vendor/bundle/gems/hiredis-0.4.5/ext/hiredis_ext/hiredis_ext.c +13 -0
  56. data/vendor/bundle/gems/hiredis-0.4.5/ext/hiredis_ext/hiredis_ext.h +37 -0
  57. data/vendor/bundle/gems/hiredis-0.4.5/ext/hiredis_ext/hiredis_ext.o +0 -0
  58. data/vendor/bundle/gems/hiredis-0.4.5/ext/hiredis_ext/reader.c +114 -0
  59. data/vendor/bundle/gems/hiredis-0.4.5/ext/hiredis_ext/reader.o +0 -0
  60. data/vendor/bundle/gems/hiredis-0.4.5/lib/hiredis/connection.rb +10 -0
  61. data/vendor/bundle/gems/hiredis-0.4.5/lib/hiredis/errors.rb +5 -0
  62. data/vendor/bundle/gems/hiredis-0.4.5/lib/hiredis/ext/connection.rb +29 -0
  63. data/vendor/bundle/gems/hiredis-0.4.5/lib/hiredis/ext/hiredis_ext.bundle +0 -0
  64. data/vendor/bundle/gems/hiredis-0.4.5/lib/hiredis/ext/reader.rb +2 -0
  65. data/vendor/bundle/gems/hiredis-0.4.5/lib/hiredis/reader.rb +10 -0
  66. data/vendor/bundle/gems/hiredis-0.4.5/lib/hiredis/ruby/connection.rb +298 -0
  67. data/vendor/bundle/gems/hiredis-0.4.5/lib/hiredis/ruby/reader.rb +183 -0
  68. data/vendor/bundle/gems/hiredis-0.4.5/lib/hiredis/version.rb +3 -0
  69. data/vendor/bundle/gems/hiredis-0.4.5/lib/hiredis.rb +2 -0
  70. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/COPYING +29 -0
  71. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/Makefile +148 -0
  72. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/async.c +604 -0
  73. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/async.h +125 -0
  74. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/async.o +0 -0
  75. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/dict.c +338 -0
  76. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/dict.h +126 -0
  77. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/fmacros.h +16 -0
  78. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/hiredis.c +1283 -0
  79. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/hiredis.h +204 -0
  80. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/hiredis.o +0 -0
  81. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/libhiredis.a +0 -0
  82. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/net.c +279 -0
  83. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/net.h +47 -0
  84. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/net.o +0 -0
  85. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/sds.c +605 -0
  86. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/sds.h +88 -0
  87. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/sds.o +0 -0
  88. data/vendor/bundle/gems/hiredis-0.4.5/vendor/hiredis/test.c +653 -0
  89. data/vendor/bundle/gems/multi_json-1.6.1/CHANGELOG.md +121 -0
  90. data/vendor/bundle/gems/multi_json-1.6.1/CONTRIBUTING.md +46 -0
  91. data/vendor/bundle/gems/multi_json-1.6.1/Gemfile +31 -0
  92. data/vendor/bundle/gems/multi_json-1.6.1/LICENSE.md +20 -0
  93. data/vendor/bundle/gems/multi_json-1.6.1/README.md +105 -0
  94. data/vendor/bundle/gems/multi_json-1.6.1/Rakefile +12 -0
  95. data/vendor/bundle/gems/multi_json-1.6.1/lib/multi_json/adapters/gson.rb +20 -0
  96. data/vendor/bundle/gems/multi_json-1.6.1/lib/multi_json/adapters/json_common.rb +35 -0
  97. data/vendor/bundle/gems/multi_json-1.6.1/lib/multi_json/adapters/json_gem.rb +12 -0
  98. data/vendor/bundle/gems/multi_json-1.6.1/lib/multi_json/adapters/json_pure.rb +12 -0
  99. data/vendor/bundle/gems/multi_json-1.6.1/lib/multi_json/adapters/nsjsonserialization.rb +35 -0
  100. data/vendor/bundle/gems/multi_json-1.6.1/lib/multi_json/adapters/oj.rb +29 -0
  101. data/vendor/bundle/gems/multi_json-1.6.1/lib/multi_json/adapters/ok_json.rb +58 -0
  102. data/vendor/bundle/gems/multi_json-1.6.1/lib/multi_json/adapters/yajl.rb +20 -0
  103. data/vendor/bundle/gems/multi_json-1.6.1/lib/multi_json/vendor/okjson.rb +602 -0
  104. data/vendor/bundle/gems/multi_json-1.6.1/lib/multi_json/version.rb +3 -0
  105. data/vendor/bundle/gems/multi_json-1.6.1/lib/multi_json.rb +137 -0
  106. data/vendor/bundle/gems/multi_json-1.6.1/multi_json.gemspec +22 -0
  107. data/vendor/bundle/gems/multi_json-1.6.1/spec/adapter_shared_example.rb +162 -0
  108. data/vendor/bundle/gems/multi_json-1.6.1/spec/helper.rb +45 -0
  109. data/vendor/bundle/gems/multi_json-1.6.1/spec/json_common_shared_example.rb +36 -0
  110. data/vendor/bundle/gems/multi_json-1.6.1/spec/multi_json_spec.rb +151 -0
  111. data/vendor/bundle/gems/rake-10.0.3/CHANGES +526 -0
  112. data/vendor/bundle/gems/rake-10.0.3/MIT-LICENSE +21 -0
  113. data/vendor/bundle/gems/rake-10.0.3/README.rdoc +187 -0
  114. data/vendor/bundle/gems/rake-10.0.3/Rakefile +374 -0
  115. data/vendor/bundle/gems/rake-10.0.3/TODO +21 -0
  116. data/vendor/bundle/gems/rake-10.0.3/bin/rake +33 -0
  117. data/vendor/bundle/gems/rake-10.0.3/doc/command_line_usage.rdoc +152 -0
  118. data/vendor/bundle/gems/rake-10.0.3/doc/example/Rakefile1 +38 -0
  119. data/vendor/bundle/gems/rake-10.0.3/doc/example/Rakefile2 +35 -0
  120. data/vendor/bundle/gems/rake-10.0.3/doc/example/a.c +6 -0
  121. data/vendor/bundle/gems/rake-10.0.3/doc/example/b.c +6 -0
  122. data/vendor/bundle/gems/rake-10.0.3/doc/example/main.c +11 -0
  123. data/vendor/bundle/gems/rake-10.0.3/doc/glossary.rdoc +51 -0
  124. data/vendor/bundle/gems/rake-10.0.3/doc/jamis.rb +591 -0
  125. data/vendor/bundle/gems/rake-10.0.3/doc/proto_rake.rdoc +127 -0
  126. data/vendor/bundle/gems/rake-10.0.3/doc/rake.1.gz +0 -0
  127. data/vendor/bundle/gems/rake-10.0.3/doc/rakefile.rdoc +557 -0
  128. data/vendor/bundle/gems/rake-10.0.3/doc/rational.rdoc +151 -0
  129. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.4.14.rdoc +23 -0
  130. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.4.15.rdoc +35 -0
  131. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.5.0.rdoc +53 -0
  132. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.5.3.rdoc +78 -0
  133. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.5.4.rdoc +46 -0
  134. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.6.0.rdoc +141 -0
  135. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.7.0.rdoc +119 -0
  136. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.7.1.rdoc +59 -0
  137. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.7.2.rdoc +121 -0
  138. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.7.3.rdoc +47 -0
  139. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.8.0.rdoc +114 -0
  140. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.8.2.rdoc +165 -0
  141. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.8.3.rdoc +112 -0
  142. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.8.4.rdoc +147 -0
  143. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.8.5.rdoc +53 -0
  144. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.8.6.rdoc +55 -0
  145. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.8.7.rdoc +55 -0
  146. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.0.rdoc +112 -0
  147. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.1.rdoc +52 -0
  148. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.2.2.rdoc +55 -0
  149. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.2.rdoc +49 -0
  150. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.3.rdoc +102 -0
  151. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.4.rdoc +110 -0
  152. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.5.rdoc +114 -0
  153. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.6.rdoc +127 -0
  154. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-10.0.0.rdoc +178 -0
  155. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-10.0.1.rdoc +187 -0
  156. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-10.0.2.rdoc +191 -0
  157. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-10.0.3.rdoc +191 -0
  158. data/vendor/bundle/gems/rake-10.0.3/install.rb +90 -0
  159. data/vendor/bundle/gems/rake-10.0.3/lib/rake/alt_system.rb +109 -0
  160. data/vendor/bundle/gems/rake-10.0.3/lib/rake/application.rb +669 -0
  161. data/vendor/bundle/gems/rake-10.0.3/lib/rake/backtrace.rb +18 -0
  162. data/vendor/bundle/gems/rake-10.0.3/lib/rake/clean.rb +32 -0
  163. data/vendor/bundle/gems/rake-10.0.3/lib/rake/cloneable.rb +16 -0
  164. data/vendor/bundle/gems/rake-10.0.3/lib/rake/contrib/compositepublisher.rb +21 -0
  165. data/vendor/bundle/gems/rake-10.0.3/lib/rake/contrib/ftptools.rb +151 -0
  166. data/vendor/bundle/gems/rake-10.0.3/lib/rake/contrib/publisher.rb +73 -0
  167. data/vendor/bundle/gems/rake-10.0.3/lib/rake/contrib/rubyforgepublisher.rb +16 -0
  168. data/vendor/bundle/gems/rake-10.0.3/lib/rake/contrib/sshpublisher.rb +50 -0
  169. data/vendor/bundle/gems/rake-10.0.3/lib/rake/contrib/sys.rb +1 -0
  170. data/vendor/bundle/gems/rake-10.0.3/lib/rake/default_loader.rb +10 -0
  171. data/vendor/bundle/gems/rake-10.0.3/lib/rake/dsl_definition.rb +156 -0
  172. data/vendor/bundle/gems/rake-10.0.3/lib/rake/early_time.rb +18 -0
  173. data/vendor/bundle/gems/rake-10.0.3/lib/rake/ext/core.rb +27 -0
  174. data/vendor/bundle/gems/rake-10.0.3/lib/rake/ext/module.rb +0 -0
  175. data/vendor/bundle/gems/rake-10.0.3/lib/rake/ext/string.rb +168 -0
  176. data/vendor/bundle/gems/rake-10.0.3/lib/rake/ext/time.rb +15 -0
  177. data/vendor/bundle/gems/rake-10.0.3/lib/rake/file_creation_task.rb +24 -0
  178. data/vendor/bundle/gems/rake-10.0.3/lib/rake/file_list.rb +410 -0
  179. data/vendor/bundle/gems/rake-10.0.3/lib/rake/file_task.rb +47 -0
  180. data/vendor/bundle/gems/rake-10.0.3/lib/rake/file_utils.rb +114 -0
  181. data/vendor/bundle/gems/rake-10.0.3/lib/rake/file_utils_ext.rb +146 -0
  182. data/vendor/bundle/gems/rake-10.0.3/lib/rake/gempackagetask.rb +1 -0
  183. data/vendor/bundle/gems/rake-10.0.3/lib/rake/invocation_chain.rb +51 -0
  184. data/vendor/bundle/gems/rake-10.0.3/lib/rake/invocation_exception_mixin.rb +16 -0
  185. data/vendor/bundle/gems/rake-10.0.3/lib/rake/loaders/makefile.rb +40 -0
  186. data/vendor/bundle/gems/rake-10.0.3/lib/rake/multi_task.rb +13 -0
  187. data/vendor/bundle/gems/rake-10.0.3/lib/rake/name_space.rb +25 -0
  188. data/vendor/bundle/gems/rake-10.0.3/lib/rake/packagetask.rb +185 -0
  189. data/vendor/bundle/gems/rake-10.0.3/lib/rake/pathmap.rb +1 -0
  190. data/vendor/bundle/gems/rake-10.0.3/lib/rake/phony.rb +15 -0
  191. data/vendor/bundle/gems/rake-10.0.3/lib/rake/private_reader.rb +20 -0
  192. data/vendor/bundle/gems/rake-10.0.3/lib/rake/promise.rb +99 -0
  193. data/vendor/bundle/gems/rake-10.0.3/lib/rake/pseudo_status.rb +24 -0
  194. data/vendor/bundle/gems/rake-10.0.3/lib/rake/rake_module.rb +37 -0
  195. data/vendor/bundle/gems/rake-10.0.3/lib/rake/rake_test_loader.rb +22 -0
  196. data/vendor/bundle/gems/rake-10.0.3/lib/rake/rdoctask.rb +1 -0
  197. data/vendor/bundle/gems/rake-10.0.3/lib/rake/ruby182_test_unit_fix.rb +25 -0
  198. data/vendor/bundle/gems/rake-10.0.3/lib/rake/rule_recursion_overflow_error.rb +20 -0
  199. data/vendor/bundle/gems/rake-10.0.3/lib/rake/runtest.rb +22 -0
  200. data/vendor/bundle/gems/rake-10.0.3/lib/rake/task.rb +350 -0
  201. data/vendor/bundle/gems/rake-10.0.3/lib/rake/task_argument_error.rb +7 -0
  202. data/vendor/bundle/gems/rake-10.0.3/lib/rake/task_arguments.rb +78 -0
  203. data/vendor/bundle/gems/rake-10.0.3/lib/rake/task_manager.rb +296 -0
  204. data/vendor/bundle/gems/rake-10.0.3/lib/rake/tasklib.rb +22 -0
  205. data/vendor/bundle/gems/rake-10.0.3/lib/rake/testtask.rb +198 -0
  206. data/vendor/bundle/gems/rake-10.0.3/lib/rake/thread_history_display.rb +48 -0
  207. data/vendor/bundle/gems/rake-10.0.3/lib/rake/thread_pool.rb +155 -0
  208. data/vendor/bundle/gems/rake-10.0.3/lib/rake/trace_output.rb +19 -0
  209. data/vendor/bundle/gems/rake-10.0.3/lib/rake/version.rb +13 -0
  210. data/vendor/bundle/gems/rake-10.0.3/lib/rake/win32.rb +55 -0
  211. data/vendor/bundle/gems/rake-10.0.3/lib/rake.rb +71 -0
  212. data/vendor/bundle/gems/rake-10.0.3/test/file_creation.rb +34 -0
  213. data/vendor/bundle/gems/rake-10.0.3/test/helper.rb +562 -0
  214. data/vendor/bundle/gems/rake-10.0.3/test/test_private_reader.rb +42 -0
  215. data/vendor/bundle/gems/rake-10.0.3/test/test_rake.rb +40 -0
  216. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_application.rb +515 -0
  217. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_application_options.rb +443 -0
  218. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_backtrace.rb +89 -0
  219. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_clean.rb +14 -0
  220. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_definitions.rb +80 -0
  221. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_directory_task.rb +57 -0
  222. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_dsl.rb +40 -0
  223. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_early_time.rb +31 -0
  224. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_extension.rb +59 -0
  225. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_file_creation_task.rb +56 -0
  226. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_file_list.rb +628 -0
  227. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_file_list_path_map.rb +8 -0
  228. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_file_task.rb +122 -0
  229. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_file_utils.rb +305 -0
  230. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_ftp_file.rb +59 -0
  231. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_functional.rb +496 -0
  232. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_invocation_chain.rb +52 -0
  233. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_makefile_loader.rb +44 -0
  234. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_multi_task.rb +59 -0
  235. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_name_space.rb +43 -0
  236. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_package_task.rb +79 -0
  237. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_path_map.rb +157 -0
  238. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_path_map_explode.rb +34 -0
  239. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_path_map_partial.rb +18 -0
  240. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_pseudo_status.rb +21 -0
  241. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_rake_test_loader.rb +21 -0
  242. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_reduce_compat.rb +30 -0
  243. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_require.rb +40 -0
  244. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_rules.rb +327 -0
  245. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_task.rb +316 -0
  246. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_task_argument_parsing.rb +103 -0
  247. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_task_arguments.rb +88 -0
  248. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_task_lib.rb +9 -0
  249. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_task_manager.rb +157 -0
  250. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_task_manager_argument_resolution.rb +19 -0
  251. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_task_with_arguments.rb +171 -0
  252. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_test_task.rb +120 -0
  253. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_thread_pool.rb +123 -0
  254. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_top_level_functions.rb +71 -0
  255. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_win32.rb +72 -0
  256. data/vendor/bundle/gems/rake-10.0.3/test/test_thread_history_display.rb +91 -0
  257. data/vendor/bundle/gems/rake-10.0.3/test/test_trace_output.rb +43 -0
  258. data/vendor/bundle/gems/redis-3.0.2/CHANGELOG.md +238 -0
  259. data/vendor/bundle/gems/redis-3.0.2/LICENSE +20 -0
  260. data/vendor/bundle/gems/redis-3.0.2/README.md +232 -0
  261. data/vendor/bundle/gems/redis-3.0.2/Rakefile +392 -0
  262. data/vendor/bundle/gems/redis-3.0.2/benchmarking/logging.rb +62 -0
  263. data/vendor/bundle/gems/redis-3.0.2/benchmarking/pipeline.rb +51 -0
  264. data/vendor/bundle/gems/redis-3.0.2/benchmarking/speed.rb +21 -0
  265. data/vendor/bundle/gems/redis-3.0.2/benchmarking/suite.rb +24 -0
  266. data/vendor/bundle/gems/redis-3.0.2/benchmarking/worker.rb +71 -0
  267. data/vendor/bundle/gems/redis-3.0.2/examples/basic.rb +15 -0
  268. data/vendor/bundle/gems/redis-3.0.2/examples/dist_redis.rb +43 -0
  269. data/vendor/bundle/gems/redis-3.0.2/examples/incr-decr.rb +17 -0
  270. data/vendor/bundle/gems/redis-3.0.2/examples/list.rb +26 -0
  271. data/vendor/bundle/gems/redis-3.0.2/examples/pubsub.rb +37 -0
  272. data/vendor/bundle/gems/redis-3.0.2/examples/sets.rb +36 -0
  273. data/vendor/bundle/gems/redis-3.0.2/examples/unicorn/config.ru +3 -0
  274. data/vendor/bundle/gems/redis-3.0.2/examples/unicorn/unicorn.rb +20 -0
  275. data/vendor/bundle/gems/redis-3.0.2/lib/redis/client.rb +401 -0
  276. data/vendor/bundle/gems/redis-3.0.2/lib/redis/connection/command_helper.rb +44 -0
  277. data/vendor/bundle/gems/redis-3.0.2/lib/redis/connection/hiredis.rb +63 -0
  278. data/vendor/bundle/gems/redis-3.0.2/lib/redis/connection/registry.rb +12 -0
  279. data/vendor/bundle/gems/redis-3.0.2/lib/redis/connection/ruby.rb +285 -0
  280. data/vendor/bundle/gems/redis-3.0.2/lib/redis/connection/synchrony.rb +124 -0
  281. data/vendor/bundle/gems/redis-3.0.2/lib/redis/connection.rb +9 -0
  282. data/vendor/bundle/gems/redis-3.0.2/lib/redis/distributed.rb +816 -0
  283. data/vendor/bundle/gems/redis-3.0.2/lib/redis/errors.rb +40 -0
  284. data/vendor/bundle/gems/redis-3.0.2/lib/redis/hash_ring.rb +131 -0
  285. data/vendor/bundle/gems/redis-3.0.2/lib/redis/pipeline.rb +130 -0
  286. data/vendor/bundle/gems/redis-3.0.2/lib/redis/subscribe.rb +79 -0
  287. data/vendor/bundle/gems/redis-3.0.2/lib/redis/version.rb +3 -0
  288. data/vendor/bundle/gems/redis-3.0.2/lib/redis.rb +2233 -0
  289. data/vendor/bundle/gems/redis-3.0.2/redis.gemspec +41 -0
  290. data/vendor/bundle/gems/redis-3.0.2/test/blocking_commands_test.rb +42 -0
  291. data/vendor/bundle/gems/redis-3.0.2/test/command_map_test.rb +30 -0
  292. data/vendor/bundle/gems/redis-3.0.2/test/commands_on_hashes_test.rb +21 -0
  293. data/vendor/bundle/gems/redis-3.0.2/test/commands_on_lists_test.rb +20 -0
  294. data/vendor/bundle/gems/redis-3.0.2/test/commands_on_sets_test.rb +77 -0
  295. data/vendor/bundle/gems/redis-3.0.2/test/commands_on_sorted_sets_test.rb +109 -0
  296. data/vendor/bundle/gems/redis-3.0.2/test/commands_on_strings_test.rb +83 -0
  297. data/vendor/bundle/gems/redis-3.0.2/test/commands_on_value_types_test.rb +99 -0
  298. data/vendor/bundle/gems/redis-3.0.2/test/connection_handling_test.rb +189 -0
  299. data/vendor/bundle/gems/redis-3.0.2/test/distributed_blocking_commands_test.rb +46 -0
  300. data/vendor/bundle/gems/redis-3.0.2/test/distributed_commands_on_hashes_test.rb +10 -0
  301. data/vendor/bundle/gems/redis-3.0.2/test/distributed_commands_on_lists_test.rb +22 -0
  302. data/vendor/bundle/gems/redis-3.0.2/test/distributed_commands_on_sets_test.rb +83 -0
  303. data/vendor/bundle/gems/redis-3.0.2/test/distributed_commands_on_sorted_sets_test.rb +18 -0
  304. data/vendor/bundle/gems/redis-3.0.2/test/distributed_commands_on_strings_test.rb +48 -0
  305. data/vendor/bundle/gems/redis-3.0.2/test/distributed_commands_on_value_types_test.rb +87 -0
  306. data/vendor/bundle/gems/redis-3.0.2/test/distributed_commands_requiring_clustering_test.rb +148 -0
  307. data/vendor/bundle/gems/redis-3.0.2/test/distributed_connection_handling_test.rb +23 -0
  308. data/vendor/bundle/gems/redis-3.0.2/test/distributed_internals_test.rb +41 -0
  309. data/vendor/bundle/gems/redis-3.0.2/test/distributed_key_tags_test.rb +52 -0
  310. data/vendor/bundle/gems/redis-3.0.2/test/distributed_persistence_control_commands_test.rb +26 -0
  311. data/vendor/bundle/gems/redis-3.0.2/test/distributed_publish_subscribe_test.rb +92 -0
  312. data/vendor/bundle/gems/redis-3.0.2/test/distributed_remote_server_control_commands_test.rb +66 -0
  313. data/vendor/bundle/gems/redis-3.0.2/test/distributed_scripting_test.rb +102 -0
  314. data/vendor/bundle/gems/redis-3.0.2/test/distributed_sorting_test.rb +20 -0
  315. data/vendor/bundle/gems/redis-3.0.2/test/distributed_test.rb +58 -0
  316. data/vendor/bundle/gems/redis-3.0.2/test/distributed_transactions_test.rb +32 -0
  317. data/vendor/bundle/gems/redis-3.0.2/test/encoding_test.rb +18 -0
  318. data/vendor/bundle/gems/redis-3.0.2/test/error_replies_test.rb +59 -0
  319. data/vendor/bundle/gems/redis-3.0.2/test/helper.rb +194 -0
  320. data/vendor/bundle/gems/redis-3.0.2/test/helper_test.rb +22 -0
  321. data/vendor/bundle/gems/redis-3.0.2/test/internals_test.rb +301 -0
  322. data/vendor/bundle/gems/redis-3.0.2/test/lint/blocking_commands.rb +124 -0
  323. data/vendor/bundle/gems/redis-3.0.2/test/lint/hashes.rb +162 -0
  324. data/vendor/bundle/gems/redis-3.0.2/test/lint/lists.rb +143 -0
  325. data/vendor/bundle/gems/redis-3.0.2/test/lint/sets.rb +96 -0
  326. data/vendor/bundle/gems/redis-3.0.2/test/lint/sorted_sets.rb +238 -0
  327. data/vendor/bundle/gems/redis-3.0.2/test/lint/strings.rb +157 -0
  328. data/vendor/bundle/gems/redis-3.0.2/test/lint/value_types.rb +106 -0
  329. data/vendor/bundle/gems/redis-3.0.2/test/persistence_control_commands_test.rb +26 -0
  330. data/vendor/bundle/gems/redis-3.0.2/test/pipelining_commands_test.rb +195 -0
  331. data/vendor/bundle/gems/redis-3.0.2/test/publish_subscribe_test.rb +153 -0
  332. data/vendor/bundle/gems/redis-3.0.2/test/remote_server_control_commands_test.rb +117 -0
  333. data/vendor/bundle/gems/redis-3.0.2/test/scripting_test.rb +78 -0
  334. data/vendor/bundle/gems/redis-3.0.2/test/sorting_test.rb +45 -0
  335. data/vendor/bundle/gems/redis-3.0.2/test/support/connection/hiredis.rb +1 -0
  336. data/vendor/bundle/gems/redis-3.0.2/test/support/connection/ruby.rb +1 -0
  337. data/vendor/bundle/gems/redis-3.0.2/test/support/connection/synchrony.rb +17 -0
  338. data/vendor/bundle/gems/redis-3.0.2/test/support/redis_mock.rb +110 -0
  339. data/vendor/bundle/gems/redis-3.0.2/test/support/wire/synchrony.rb +24 -0
  340. data/vendor/bundle/gems/redis-3.0.2/test/support/wire/thread.rb +5 -0
  341. data/vendor/bundle/gems/redis-3.0.2/test/synchrony_driver.rb +88 -0
  342. data/vendor/bundle/gems/redis-3.0.2/test/test.conf +9 -0
  343. data/vendor/bundle/gems/redis-3.0.2/test/thread_safety_test.rb +32 -0
  344. data/vendor/bundle/gems/redis-3.0.2/test/transactions_test.rb +260 -0
  345. data/vendor/bundle/gems/redis-3.0.2/test/unknown_commands_test.rb +14 -0
  346. data/vendor/bundle/gems/redis-3.0.2/test/url_param_test.rb +132 -0
  347. data/vendor/bundle/gems/rspec-2.12.0/License.txt +24 -0
  348. data/vendor/bundle/gems/rspec-2.12.0/README.md +47 -0
  349. data/vendor/bundle/gems/rspec-2.12.0/lib/rspec/version.rb +5 -0
  350. data/vendor/bundle/gems/rspec-2.12.0/lib/rspec.rb +4 -0
  351. data/vendor/bundle/gems/rspec-core-2.12.2/Changelog.md +655 -0
  352. data/vendor/bundle/gems/rspec-core-2.12.2/License.txt +24 -0
  353. data/vendor/bundle/gems/rspec-core-2.12.2/README.md +257 -0
  354. data/vendor/bundle/gems/rspec-core-2.12.2/exe/autospec +13 -0
  355. data/vendor/bundle/gems/rspec-core-2.12.2/exe/rspec +25 -0
  356. data/vendor/bundle/gems/rspec-core-2.12.2/features/Autotest.md +38 -0
  357. data/vendor/bundle/gems/rspec-core-2.12.2/features/README.md +17 -0
  358. data/vendor/bundle/gems/rspec-core-2.12.2/features/Upgrade.md +364 -0
  359. data/vendor/bundle/gems/rspec-core-2.12.2/features/command_line/README.md +28 -0
  360. data/vendor/bundle/gems/rspec-core-2.12.2/features/command_line/example_name_option.feature +101 -0
  361. data/vendor/bundle/gems/rspec-core-2.12.2/features/command_line/exit_status.feature +82 -0
  362. data/vendor/bundle/gems/rspec-core-2.12.2/features/command_line/format_option.feature +81 -0
  363. data/vendor/bundle/gems/rspec-core-2.12.2/features/command_line/init.feature +18 -0
  364. data/vendor/bundle/gems/rspec-core-2.12.2/features/command_line/line_number_appended_to_path.feature +140 -0
  365. data/vendor/bundle/gems/rspec-core-2.12.2/features/command_line/line_number_option.feature +58 -0
  366. data/vendor/bundle/gems/rspec-core-2.12.2/features/command_line/order.feature +29 -0
  367. data/vendor/bundle/gems/rspec-core-2.12.2/features/command_line/pattern_option.feature +31 -0
  368. data/vendor/bundle/gems/rspec-core-2.12.2/features/command_line/rake_task.feature +122 -0
  369. data/vendor/bundle/gems/rspec-core-2.12.2/features/command_line/ruby.feature +22 -0
  370. data/vendor/bundle/gems/rspec-core-2.12.2/features/command_line/tag.feature +91 -0
  371. data/vendor/bundle/gems/rspec-core-2.12.2/features/configuration/alias_example_to.feature +48 -0
  372. data/vendor/bundle/gems/rspec-core-2.12.2/features/configuration/custom_settings.feature +84 -0
  373. data/vendor/bundle/gems/rspec-core-2.12.2/features/configuration/default_path.feature +38 -0
  374. data/vendor/bundle/gems/rspec-core-2.12.2/features/configuration/fail_fast.feature +77 -0
  375. data/vendor/bundle/gems/rspec-core-2.12.2/features/configuration/read_options_from_file.feature +87 -0
  376. data/vendor/bundle/gems/rspec-core-2.12.2/features/example_groups/basic_structure.feature +55 -0
  377. data/vendor/bundle/gems/rspec-core-2.12.2/features/example_groups/shared_context.feature +74 -0
  378. data/vendor/bundle/gems/rspec-core-2.12.2/features/example_groups/shared_examples.feature +222 -0
  379. data/vendor/bundle/gems/rspec-core-2.12.2/features/expectation_framework_integration/configure_expectation_framework.feature +102 -0
  380. data/vendor/bundle/gems/rspec-core-2.12.2/features/filtering/exclusion_filters.feature +139 -0
  381. data/vendor/bundle/gems/rspec-core-2.12.2/features/filtering/if_and_unless.feature +168 -0
  382. data/vendor/bundle/gems/rspec-core-2.12.2/features/filtering/inclusion_filters.feature +105 -0
  383. data/vendor/bundle/gems/rspec-core-2.12.2/features/filtering/run_all_when_everything_filtered.feature +46 -0
  384. data/vendor/bundle/gems/rspec-core-2.12.2/features/formatters/custom_formatter.feature +36 -0
  385. data/vendor/bundle/gems/rspec-core-2.12.2/features/formatters/json_formatter.feature +30 -0
  386. data/vendor/bundle/gems/rspec-core-2.12.2/features/formatters/text_formatter.feature +46 -0
  387. data/vendor/bundle/gems/rspec-core-2.12.2/features/helper_methods/arbitrary_methods.feature +40 -0
  388. data/vendor/bundle/gems/rspec-core-2.12.2/features/helper_methods/let.feature +50 -0
  389. data/vendor/bundle/gems/rspec-core-2.12.2/features/helper_methods/modules.feature +149 -0
  390. data/vendor/bundle/gems/rspec-core-2.12.2/features/hooks/around_hooks.feature +343 -0
  391. data/vendor/bundle/gems/rspec-core-2.12.2/features/hooks/before_and_after_hooks.feature +427 -0
  392. data/vendor/bundle/gems/rspec-core-2.12.2/features/hooks/filtering.feature +234 -0
  393. data/vendor/bundle/gems/rspec-core-2.12.2/features/metadata/current_example.feature +17 -0
  394. data/vendor/bundle/gems/rspec-core-2.12.2/features/metadata/described_class.feature +17 -0
  395. data/vendor/bundle/gems/rspec-core-2.12.2/features/metadata/user_defined.feature +113 -0
  396. data/vendor/bundle/gems/rspec-core-2.12.2/features/mock_framework_integration/use_any_framework.feature +106 -0
  397. data/vendor/bundle/gems/rspec-core-2.12.2/features/mock_framework_integration/use_flexmock.feature +96 -0
  398. data/vendor/bundle/gems/rspec-core-2.12.2/features/mock_framework_integration/use_mocha.feature +97 -0
  399. data/vendor/bundle/gems/rspec-core-2.12.2/features/mock_framework_integration/use_rr.feature +98 -0
  400. data/vendor/bundle/gems/rspec-core-2.12.2/features/mock_framework_integration/use_rspec.feature +97 -0
  401. data/vendor/bundle/gems/rspec-core-2.12.2/features/pending/pending_examples.feature +229 -0
  402. data/vendor/bundle/gems/rspec-core-2.12.2/features/spec_files/arbitrary_file_suffix.feature +13 -0
  403. data/vendor/bundle/gems/rspec-core-2.12.2/features/step_definitions/additional_cli_steps.rb +32 -0
  404. data/vendor/bundle/gems/rspec-core-2.12.2/features/subject/attribute_of_subject.feature +124 -0
  405. data/vendor/bundle/gems/rspec-core-2.12.2/features/subject/explicit_subject.feature +82 -0
  406. data/vendor/bundle/gems/rspec-core-2.12.2/features/subject/implicit_receiver.feature +29 -0
  407. data/vendor/bundle/gems/rspec-core-2.12.2/features/subject/implicit_subject.feature +63 -0
  408. data/vendor/bundle/gems/rspec-core-2.12.2/features/support/env.rb +12 -0
  409. data/vendor/bundle/gems/rspec-core-2.12.2/lib/autotest/discover.rb +1 -0
  410. data/vendor/bundle/gems/rspec-core-2.12.2/lib/autotest/rspec2.rb +73 -0
  411. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/autorun.rb +2 -0
  412. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/backward_compatibility.rb +65 -0
  413. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/command_line.rb +36 -0
  414. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/configuration.rb +1057 -0
  415. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/configuration_options.rb +144 -0
  416. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/deprecation.rb +36 -0
  417. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/drb_command_line.rb +26 -0
  418. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/drb_options.rb +87 -0
  419. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/dsl.rb +26 -0
  420. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/example.rb +331 -0
  421. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/example_group.rb +476 -0
  422. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/extensions/instance_eval_with_args.rb +44 -0
  423. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/extensions/kernel.rb +9 -0
  424. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/extensions/module_eval_with_args.rb +38 -0
  425. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/extensions/ordered.rb +27 -0
  426. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/filter_manager.rb +203 -0
  427. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/formatters/base_formatter.rb +237 -0
  428. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/formatters/base_text_formatter.rb +225 -0
  429. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/formatters/documentation_formatter.rb +67 -0
  430. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/formatters/helpers.rb +103 -0
  431. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/formatters/html_formatter.rb +154 -0
  432. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/formatters/html_printer.rb +407 -0
  433. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/formatters/json_formatter.rb +73 -0
  434. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/formatters/progress_formatter.rb +32 -0
  435. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/formatters/snippet_extractor.rb +92 -0
  436. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/formatters/text_mate_formatter.rb +34 -0
  437. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/formatters.rb +55 -0
  438. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/hooks.rb +495 -0
  439. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/let.rb +110 -0
  440. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/load_path.rb +3 -0
  441. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/metadata.rb +293 -0
  442. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/metadata_hash_builder.rb +97 -0
  443. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/mocking/with_absolutely_nothing.rb +11 -0
  444. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/mocking/with_flexmock.rb +27 -0
  445. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/mocking/with_mocha.rb +52 -0
  446. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/mocking/with_rr.rb +27 -0
  447. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/mocking/with_rspec.rb +27 -0
  448. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/option_parser.rb +202 -0
  449. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/pending.rb +101 -0
  450. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/project_initializer.rb +86 -0
  451. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/rake_task.rb +202 -0
  452. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/reporter.rb +102 -0
  453. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/ruby_project.rb +44 -0
  454. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/runner.rb +87 -0
  455. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/shared_context.rb +49 -0
  456. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/shared_example_group.rb +144 -0
  457. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/subject.rb +223 -0
  458. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/version.rb +7 -0
  459. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core/world.rb +128 -0
  460. data/vendor/bundle/gems/rspec-core-2.12.2/lib/rspec/core.rb +147 -0
  461. data/vendor/bundle/gems/rspec-core-2.12.2/spec/autotest/discover_spec.rb +19 -0
  462. data/vendor/bundle/gems/rspec-core-2.12.2/spec/autotest/failed_results_re_spec.rb +45 -0
  463. data/vendor/bundle/gems/rspec-core-2.12.2/spec/autotest/rspec_spec.rb +128 -0
  464. data/vendor/bundle/gems/rspec-core-2.12.2/spec/command_line/order_spec.rb +204 -0
  465. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/command_line_spec.rb +108 -0
  466. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/command_line_spec_output.txt +0 -0
  467. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/configuration_options_spec.rb +384 -0
  468. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/configuration_spec.rb +1371 -0
  469. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/deprecations_spec.rb +75 -0
  470. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/drb_command_line_spec.rb +102 -0
  471. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/drb_options_spec.rb +180 -0
  472. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/dsl_spec.rb +25 -0
  473. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/example_group_spec.rb +1144 -0
  474. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/example_spec.rb +402 -0
  475. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/filter_manager_spec.rb +246 -0
  476. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/base_formatter_spec.rb +108 -0
  477. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/base_text_formatter_spec.rb +367 -0
  478. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/documentation_formatter_spec.rb +88 -0
  479. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/helpers_spec.rb +78 -0
  480. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html +410 -0
  481. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/html_formatted-1.8.7-rbx.html +462 -0
  482. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/html_formatted-1.8.7.html +409 -0
  483. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/html_formatted-1.9.2-jruby.html +410 -0
  484. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/html_formatted-1.9.2.html +416 -0
  485. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/html_formatted-1.9.3-jruby.html +410 -0
  486. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/html_formatted-1.9.3-rbx.html +462 -0
  487. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/html_formatted-1.9.3.html +416 -0
  488. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/html_formatter_spec.rb +90 -0
  489. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/json_formatter_spec.rb +110 -0
  490. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/progress_formatter_spec.rb +30 -0
  491. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/snippet_extractor_spec.rb +26 -0
  492. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html +410 -0
  493. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/text_mate_formatted-1.8.7-rbx.html +462 -0
  494. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html +409 -0
  495. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/text_mate_formatted-1.9.2-jruby.html +410 -0
  496. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html +416 -0
  497. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/text_mate_formatted-1.9.3-jruby.html +410 -0
  498. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/text_mate_formatted-1.9.3-rbx.html +462 -0
  499. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/text_mate_formatted-1.9.3.html +416 -0
  500. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/formatters/text_mate_formatter_spec.rb +91 -0
  501. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/hooks_filtering_spec.rb +227 -0
  502. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/hooks_spec.rb +250 -0
  503. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/kernel_extensions_spec.rb +9 -0
  504. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/let_spec.rb +55 -0
  505. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/metadata_spec.rb +486 -0
  506. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/option_parser_spec.rb +208 -0
  507. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/pending_example_spec.rb +220 -0
  508. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/project_initializer_spec.rb +130 -0
  509. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/rake_task_spec.rb +181 -0
  510. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/reporter_spec.rb +120 -0
  511. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/resources/a_bar.rb +0 -0
  512. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/resources/a_foo.rb +0 -0
  513. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/resources/a_spec.rb +1 -0
  514. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/resources/custom_example_group_runner.rb +14 -0
  515. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/resources/formatter_specs.rb +60 -0
  516. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/resources/utf8_encoded.rb +8 -0
  517. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/rspec_matchers_spec.rb +45 -0
  518. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/ruby_project_spec.rb +24 -0
  519. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/runner_spec.rb +82 -0
  520. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/shared_context_spec.rb +67 -0
  521. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/shared_example_group_spec.rb +96 -0
  522. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/subject_spec.rb +255 -0
  523. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core/world_spec.rb +144 -0
  524. data/vendor/bundle/gems/rspec-core-2.12.2/spec/rspec/core_spec.rb +35 -0
  525. data/vendor/bundle/gems/rspec-core-2.12.2/spec/spec_helper.rb +128 -0
  526. data/vendor/bundle/gems/rspec-core-2.12.2/spec/support/config_options_helper.rb +15 -0
  527. data/vendor/bundle/gems/rspec-core-2.12.2/spec/support/helper_methods.rb +18 -0
  528. data/vendor/bundle/gems/rspec-core-2.12.2/spec/support/isolated_directory.rb +10 -0
  529. data/vendor/bundle/gems/rspec-core-2.12.2/spec/support/isolated_home_directory.rb +16 -0
  530. data/vendor/bundle/gems/rspec-core-2.12.2/spec/support/matchers.rb +65 -0
  531. data/vendor/bundle/gems/rspec-core-2.12.2/spec/support/shared_example_groups.rb +41 -0
  532. data/vendor/bundle/gems/rspec-core-2.12.2/spec/support/spec_files.rb +44 -0
  533. data/vendor/bundle/gems/rspec-expectations-2.12.1/Changelog.md +297 -0
  534. data/vendor/bundle/gems/rspec-expectations-2.12.1/License.txt +23 -0
  535. data/vendor/bundle/gems/rspec-expectations-2.12.1/README.md +228 -0
  536. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/README.md +49 -0
  537. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/Upgrade.md +53 -0
  538. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/README.md +90 -0
  539. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/be.feature +173 -0
  540. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/be_within.feature +46 -0
  541. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/cover.feature +45 -0
  542. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/end_with.feature +46 -0
  543. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/equality.feature +145 -0
  544. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/exist.feature +43 -0
  545. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/expect_change.feature +59 -0
  546. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/expect_error.feature +138 -0
  547. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/have.feature +103 -0
  548. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/include.feature +121 -0
  549. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/match.feature +50 -0
  550. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/operators.feature +221 -0
  551. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/predicates.feature +129 -0
  552. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/respond_to.feature +78 -0
  553. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/satisfy.feature +31 -0
  554. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/start_with.feature +46 -0
  555. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/throw_symbol.feature +85 -0
  556. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/types.feature +114 -0
  557. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/yield.feature +146 -0
  558. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/custom_matchers/access_running_example.feature +53 -0
  559. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/custom_matchers/define_diffable_matcher.feature +27 -0
  560. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/custom_matchers/define_matcher.feature +368 -0
  561. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/custom_matchers/define_matcher_outside_rspec.feature +38 -0
  562. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/custom_matchers/define_matcher_with_fluent_interface.feature +24 -0
  563. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/customized_message.feature +22 -0
  564. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/diffing.feature +85 -0
  565. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/implicit_docstrings.feature +52 -0
  566. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/step_definitions/additional_cli_steps.rb +22 -0
  567. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/support/env.rb +5 -0
  568. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/syntax_configuration.feature +68 -0
  569. data/vendor/bundle/gems/rspec-expectations-2.12.1/features/test_frameworks/test_unit.feature +46 -0
  570. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/expectations/deprecation.rb +38 -0
  571. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/expectations/differ.rb +115 -0
  572. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/expectations/errors.rb +9 -0
  573. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/expectations/expectation_target.rb +88 -0
  574. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/expectations/extensions/array.rb +9 -0
  575. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/expectations/extensions/object.rb +39 -0
  576. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/expectations/extensions.rb +2 -0
  577. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/expectations/fail_with.rb +55 -0
  578. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/expectations/handler.rb +63 -0
  579. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/expectations/syntax.rb +118 -0
  580. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/expectations/version.rb +8 -0
  581. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/expectations.rb +47 -0
  582. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/be_close.rb +9 -0
  583. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/base_matcher.rb +68 -0
  584. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/be.rb +185 -0
  585. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/be_instance_of.rb +15 -0
  586. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/be_kind_of.rb +11 -0
  587. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/be_within.rb +46 -0
  588. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/change.rb +133 -0
  589. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/cover.rb +21 -0
  590. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/eq.rb +22 -0
  591. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/eql.rb +23 -0
  592. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/equal.rb +44 -0
  593. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/exist.rb +26 -0
  594. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/has.rb +48 -0
  595. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/have.rb +108 -0
  596. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/include.rb +53 -0
  597. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/match.rb +12 -0
  598. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/match_array.rb +51 -0
  599. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/raise_error.rb +107 -0
  600. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/respond_to.rb +74 -0
  601. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/satisfy.rb +30 -0
  602. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/start_and_end_with.rb +48 -0
  603. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/throw_symbol.rb +94 -0
  604. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in/yield.rb +221 -0
  605. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/built_in.rb +39 -0
  606. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/compatibility.rb +14 -0
  607. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/configuration.rb +108 -0
  608. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/dsl.rb +24 -0
  609. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/extensions/instance_eval_with_args.rb +39 -0
  610. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/generated_descriptions.rb +35 -0
  611. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/matcher.rb +299 -0
  612. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/method_missing.rb +12 -0
  613. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/operator_matcher.rb +109 -0
  614. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers/pretty.rb +60 -0
  615. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec/matchers.rb +699 -0
  616. data/vendor/bundle/gems/rspec-expectations-2.12.1/lib/rspec-expectations.rb +1 -0
  617. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/expectations/differ_spec.rb +177 -0
  618. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/expectations/expectation_target_spec.rb +65 -0
  619. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/expectations/extensions/kernel_spec.rb +67 -0
  620. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/expectations/fail_with_spec.rb +70 -0
  621. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/expectations/handler_spec.rb +206 -0
  622. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/expectations/syntax_spec.rb +35 -0
  623. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/base_matcher_spec.rb +60 -0
  624. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/be_close_spec.rb +22 -0
  625. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/be_instance_of_spec.rb +57 -0
  626. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/be_kind_of_spec.rb +37 -0
  627. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/be_spec.rb +452 -0
  628. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/be_within_spec.rb +80 -0
  629. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/change_spec.rb +528 -0
  630. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/configuration_spec.rb +234 -0
  631. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/cover_spec.rb +69 -0
  632. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/description_generation_spec.rb +176 -0
  633. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/dsl_spec.rb +57 -0
  634. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/eq_spec.rb +54 -0
  635. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/eql_spec.rb +41 -0
  636. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/equal_spec.rb +60 -0
  637. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/exist_spec.rb +110 -0
  638. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/has_spec.rb +118 -0
  639. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/have_spec.rb +431 -0
  640. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/include_spec.rb +373 -0
  641. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/match_array_spec.rb +153 -0
  642. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/match_spec.rb +61 -0
  643. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/matcher_spec.rb +434 -0
  644. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/matchers_spec.rb +31 -0
  645. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/method_missing_spec.rb +24 -0
  646. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/operator_matcher_spec.rb +244 -0
  647. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/raise_error_spec.rb +395 -0
  648. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/respond_to_spec.rb +295 -0
  649. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/satisfy_spec.rb +44 -0
  650. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/start_with_end_with_spec.rb +182 -0
  651. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/throw_symbol_spec.rb +116 -0
  652. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/rspec/matchers/yield_spec.rb +437 -0
  653. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/spec_helper.rb +27 -0
  654. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/support/classes.rb +56 -0
  655. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/support/in_sub_process.rb +31 -0
  656. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/support/matchers.rb +22 -0
  657. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/support/ruby_version.rb +10 -0
  658. data/vendor/bundle/gems/rspec-expectations-2.12.1/spec/support/shared_examples.rb +13 -0
  659. data/vendor/bundle/gems/rspec-mocks-2.12.2/Changelog.md +268 -0
  660. data/vendor/bundle/gems/rspec-mocks-2.12.2/License.txt +23 -0
  661. data/vendor/bundle/gems/rspec-mocks-2.12.2/README.md +301 -0
  662. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/README.md +67 -0
  663. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/Scope.md +17 -0
  664. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/Upgrade.md +22 -0
  665. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/argument_matchers/README.md +27 -0
  666. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/argument_matchers/explicit.feature +60 -0
  667. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/argument_matchers/general_matchers.feature +85 -0
  668. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/argument_matchers/type_matchers.feature +27 -0
  669. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/message_expectations/README.md +73 -0
  670. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/message_expectations/any_instance.feature +21 -0
  671. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/message_expectations/block_local_expectations.feature.pending +55 -0
  672. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/message_expectations/call_original.feature +24 -0
  673. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/message_expectations/expect_message.feature +94 -0
  674. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/message_expectations/receive_counts.feature +209 -0
  675. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/message_expectations/warn_when_expectation_is_set_on_nil.feature +50 -0
  676. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/method_stubs/README.md +47 -0
  677. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/method_stubs/any_instance.feature +132 -0
  678. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/method_stubs/as_null_object.feature +35 -0
  679. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/method_stubs/simple_return_value.feature +64 -0
  680. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/method_stubs/stub_chain.feature +51 -0
  681. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/method_stubs/stub_implementation.feature +26 -0
  682. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/method_stubs/to_ary.feature +47 -0
  683. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/mutating_constants/README.md +82 -0
  684. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/mutating_constants/hiding_defined_constant.feature +64 -0
  685. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/mutating_constants/stub_defined_constant.feature +79 -0
  686. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/mutating_constants/stub_undefined_constant.feature +50 -0
  687. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/outside_rspec/configuration.feature +82 -0
  688. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/outside_rspec/standalone.feature +33 -0
  689. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/step_definitions/additional_cli_steps.rb +4 -0
  690. data/vendor/bundle/gems/rspec-mocks-2.12.2/features/support/env.rb +6 -0
  691. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/any_instance/chain.rb +78 -0
  692. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/any_instance/expectation_chain.rb +57 -0
  693. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/any_instance/message_chains.rb +60 -0
  694. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/any_instance/recorder.rb +199 -0
  695. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/any_instance/stub_chain.rb +37 -0
  696. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/any_instance/stub_chain_chain.rb +25 -0
  697. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/any_instance.rb +81 -0
  698. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/argument_list_matcher.rb +93 -0
  699. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/argument_matchers.rb +238 -0
  700. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/configuration.rb +28 -0
  701. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/error_generator.rb +120 -0
  702. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/errors.rb +12 -0
  703. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/example_methods.rb +120 -0
  704. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/extensions/instance_exec.rb +34 -0
  705. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/extensions/marshal.rb +23 -0
  706. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/extensions/psych.rb +23 -0
  707. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/framework.rb +22 -0
  708. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/instance_method_stasher.rb +85 -0
  709. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/message_expectation.rb +503 -0
  710. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/method_double.rb +280 -0
  711. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/methods.rb +155 -0
  712. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/mock.rb +7 -0
  713. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/mutate_const.rb +415 -0
  714. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/order_group.rb +40 -0
  715. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/proxy.rb +205 -0
  716. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/serialization.rb +34 -0
  717. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/space.rb +34 -0
  718. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/standalone.rb +3 -0
  719. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/test_double.rb +103 -0
  720. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks/version.rb +7 -0
  721. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/rspec/mocks.rb +63 -0
  722. data/vendor/bundle/gems/rspec-mocks-2.12.2/lib/spec/mocks.rb +6 -0
  723. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/and_call_original_spec.rb +225 -0
  724. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/and_yield_spec.rb +114 -0
  725. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/any_instance/message_chains_spec.rb +40 -0
  726. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/any_instance_spec.rb +888 -0
  727. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/any_number_of_times_spec.rb +30 -0
  728. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/argument_expectation_spec.rb +34 -0
  729. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/at_least_spec.rb +142 -0
  730. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/at_most_spec.rb +90 -0
  731. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/block_return_value_spec.rb +53 -0
  732. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/bug_report_10260_spec.rb +8 -0
  733. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/bug_report_10263_spec.rb +27 -0
  734. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/bug_report_11545_spec.rb +32 -0
  735. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/bug_report_496_spec.rb +17 -0
  736. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/bug_report_600_spec.rb +22 -0
  737. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/bug_report_7611_spec.rb +16 -0
  738. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/bug_report_8165_spec.rb +31 -0
  739. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/bug_report_830_spec.rb +21 -0
  740. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/bug_report_957_spec.rb +22 -0
  741. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/configuration_spec.rb +26 -0
  742. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/double_spec.rb +12 -0
  743. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/failing_argument_matchers_spec.rb +94 -0
  744. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/hash_excluding_matcher_spec.rb +67 -0
  745. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/hash_including_matcher_spec.rb +90 -0
  746. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/instance_method_stasher_spec.rb +58 -0
  747. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/mock_ordering_spec.rb +103 -0
  748. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/mock_space_spec.rb +58 -0
  749. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/mock_spec.rb +734 -0
  750. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/multiple_return_value_spec.rb +119 -0
  751. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/mutate_const_spec.rb +481 -0
  752. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/nil_expectation_warning_spec.rb +56 -0
  753. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/null_object_mock_spec.rb +107 -0
  754. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/once_counts_spec.rb +52 -0
  755. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/options_hash_spec.rb +35 -0
  756. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/partial_mock_spec.rb +196 -0
  757. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/partial_mock_using_mocks_directly_spec.rb +95 -0
  758. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/passing_argument_matchers_spec.rb +142 -0
  759. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/precise_counts_spec.rb +68 -0
  760. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/record_messages_spec.rb +26 -0
  761. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/serialization_spec.rb +110 -0
  762. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/stash_spec.rb +54 -0
  763. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/stub_chain_spec.rb +154 -0
  764. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/stub_implementation_spec.rb +81 -0
  765. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/stub_spec.rb +266 -0
  766. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/stubbed_message_expectations_spec.rb +47 -0
  767. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/test_double_spec.rb +57 -0
  768. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/to_ary_spec.rb +40 -0
  769. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks/twice_counts_spec.rb +66 -0
  770. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/rspec/mocks_spec.rb +67 -0
  771. data/vendor/bundle/gems/rspec-mocks-2.12.2/spec/spec_helper.rb +36 -0
  772. data/vendor/bundle/specifications/diff-lcs-1.1.3.gemspec +35 -0
  773. data/vendor/bundle/specifications/hiredis-0.4.5.gemspec +30 -0
  774. data/vendor/bundle/specifications/multi_json-1.6.1.gemspec +30 -0
  775. data/vendor/bundle/specifications/rake-10.0.3.gemspec +34 -0
  776. data/vendor/bundle/specifications/redis-3.0.2.gemspec +28 -0
  777. data/vendor/bundle/specifications/rspec-2.12.0.gemspec +39 -0
  778. data/vendor/bundle/specifications/rspec-core-2.12.2.gemspec +58 -0
  779. data/vendor/bundle/specifications/rspec-expectations-2.12.1.gemspec +40 -0
  780. data/vendor/bundle/specifications/rspec-mocks-2.12.2.gemspec +37 -0
  781. data/vendor/remq/Readme.md +30 -16
  782. data/vendor/remq/VERSION +1 -0
  783. data/vendor/remq/scripts/consume.lua +24 -38
  784. data/vendor/remq/scripts/flush.lua +33 -0
  785. data/vendor/remq/scripts/publish.lua +10 -7
  786. metadata +806 -29
  787. data/lib/remq/coder.rb +0 -30
  788. data/lib/remq/multi_json_coder.rb +0 -39
  789. data/vendor/remq/scripts/purge.lua +0 -18
@@ -0,0 +1,1105 @@
1
+ # -*- ruby encoding: utf-8 -*-
2
+
3
+ module Diff
4
+ # = Diff::LCS 1.1.3
5
+ # Computes "intelligent" differences between two sequenced Enumerables.
6
+ # This is an implementation of the McIlroy-Hunt "diff" algorithm for
7
+ # Enumerable objects that include Diffable.
8
+ #
9
+ # Based on Mario I. Wolczko's Smalltalk version (1.2, 1993) and Ned Konz's
10
+ # Perl version (Algorithm::Diff 1.15).
11
+ #
12
+ # == Synopsis
13
+ # require 'diff/lcs'
14
+ #
15
+ # seq1 = %w(a b c e h j l m n p)
16
+ # seq2 = %w(b c d e f j k l m r s t)
17
+ #
18
+ # lcs = Diff::LCS.LCS(seq1, seq2)
19
+ # diffs = Diff::LCS.diff(seq1, seq2)
20
+ # sdiff = Diff::LCS.sdiff(seq1, seq2)
21
+ # seq = Diff::LCS.traverse_sequences(seq1, seq2, callback_obj)
22
+ # bal = Diff::LCS.traverse_balanced(seq1, seq2, callback_obj)
23
+ # seq2 == Diff::LCS.patch(seq1, diffs)
24
+ # seq2 == Diff::LCS.patch!(seq1, diffs)
25
+ # seq1 == Diff::LCS.unpatch(seq2, diffs)
26
+ # seq1 == Diff::LCS.unpatch!(seq2, diffs)
27
+ # seq2 == Diff::LCS.patch(seq1, sdiff)
28
+ # seq2 == Diff::LCS.patch!(seq1, sdiff)
29
+ # seq1 == Diff::LCS.unpatch(seq2, sdiff)
30
+ # seq1 == Diff::LCS.unpatch!(seq2, sdiff)
31
+ #
32
+ # Alternatively, objects can be extended with Diff::LCS:
33
+ #
34
+ # seq1.extend(Diff::LCS)
35
+ # lcs = seq1.lcs(seq2)
36
+ # diffs = seq1.diff(seq2)
37
+ # sdiff = seq1.sdiff(seq2)
38
+ # seq = seq1.traverse_sequences(seq2, callback_obj)
39
+ # bal = seq1.traverse_balanced(seq2, callback_obj)
40
+ # seq2 == seq1.patch(diffs)
41
+ # seq2 == seq1.patch!(diffs)
42
+ # seq1 == seq2.unpatch(diffs)
43
+ # seq1 == seq2.unpatch!(diffs)
44
+ # seq2 == seq1.patch(sdiff)
45
+ # seq2 == seq1.patch!(sdiff)
46
+ # seq1 == seq2.unpatch(sdiff)
47
+ # seq1 == seq2.unpatch!(sdiff)
48
+ #
49
+ # Default extensions are provided for Array and String objects through the
50
+ # use of 'diff/lcs/array' and 'diff/lcs/string'.
51
+ #
52
+ # == Introduction (by Mark-Jason Dominus)
53
+ #
54
+ # <em>The following text is from the Perl documentation. The only changes
55
+ # have been to make the text appear better in Rdoc</em>.
56
+ #
57
+ # I once read an article written by the authors of +diff+; they said that
58
+ # they hard worked very hard on the algorithm until they found the right
59
+ # one.
60
+ #
61
+ # I think what they ended up using (and I hope someone will correct me,
62
+ # because I am not very confident about this) was the `longest common
63
+ # subsequence' method. In the LCS problem, you have two sequences of
64
+ # items:
65
+ #
66
+ # a b c d f g h j q z
67
+ # a b c d e f g i j k r x y z
68
+ #
69
+ # and you want to find the longest sequence of items that is present in
70
+ # both original sequences in the same order. That is, you want to find a
71
+ # new sequence *S* which can be obtained from the first sequence by
72
+ # deleting some items, and from the second sequence by deleting other
73
+ # items. You also want *S* to be as long as possible. In this case *S* is:
74
+ #
75
+ # a b c d f g j z
76
+ #
77
+ # From there it's only a small step to get diff-like output:
78
+ #
79
+ # e h i k q r x y
80
+ # + - + + - + + +
81
+ #
82
+ # This module solves the LCS problem. It also includes a canned function
83
+ # to generate +diff+-like output.
84
+ #
85
+ # It might seem from the example above that the LCS of two sequences is
86
+ # always pretty obvious, but that's not always the case, especially when
87
+ # the two sequences have many repeated elements. For example, consider
88
+ #
89
+ # a x b y c z p d q
90
+ # a b c a x b y c z
91
+ #
92
+ # A naive approach might start by matching up the +a+ and +b+ that appear
93
+ # at the beginning of each sequence, like this:
94
+ #
95
+ # a x b y c z p d q
96
+ # a b c a b y c z
97
+ #
98
+ # This finds the common subsequence +a b c z+. But actually, the LCS is
99
+ # +a x b y c z+:
100
+ #
101
+ # a x b y c z p d q
102
+ # a b c a x b y c z
103
+ #
104
+ # == Author
105
+ # This version is by Austin Ziegler <austin@rubyforge.org>.
106
+ #
107
+ # It is based on the Perl Algorithm::Diff (1.15) by Ned Konz , copyright
108
+ # &copy; 2000&ndash;2002 and the Smalltalk diff version by Mario I.
109
+ # Wolczko, copyright &copy; 1993. Documentation includes work by
110
+ # Mark-Jason Dominus.
111
+ #
112
+ # == Licence
113
+ # Copyright &copy; 2004 Austin Ziegler
114
+ # This program is free software; you can redistribute it and/or modify it
115
+ # under the same terms as Ruby, or alternatively under the Perl Artistic
116
+ # licence.
117
+ #
118
+ # == Credits
119
+ # Much of the documentation is taken directly from the Perl
120
+ # Algorithm::Diff implementation and was written originally by Mark-Jason
121
+ # Dominus and later by Ned Konz. The basic Ruby implementation was
122
+ # re-ported from the Smalltalk implementation, available at
123
+ # ftp://st.cs.uiuc.edu/pub/Smalltalk/MANCHESTER/manchester/4.0/diff.st
124
+ #
125
+ # #sdiff and #traverse_balanced were written for the Perl version by Mike
126
+ # Schilli <m@perlmeister.com>.
127
+ #
128
+ # "The algorithm is described in <em>A Fast Algorithm for Computing
129
+ # Longest Common Subsequences</em>, CACM, vol.20, no.5, pp.350-353, May
130
+ # 1977, with a few minor improvements to improve the speed."
131
+ module LCS
132
+ VERSION = '1.1.3'
133
+ end
134
+ end
135
+
136
+ require 'diff/lcs/callbacks'
137
+
138
+ module Diff::LCS
139
+ # Returns an Array containing the longest common subsequence(s) between
140
+ # +self+ and +other+. See Diff::LCS#LCS.
141
+ #
142
+ # lcs = seq1.lcs(seq2)
143
+ def lcs(other, &block) #:yields self[ii] if there are matched subsequences:
144
+ Diff::LCS.LCS(self, other, &block)
145
+ end
146
+
147
+ # Returns the difference set between +self+ and +other+. See
148
+ # Diff::LCS#diff.
149
+ def diff(other, callbacks = nil, &block)
150
+ Diff::LCS::diff(self, other, callbacks, &block)
151
+ end
152
+
153
+ # Returns the balanced ("side-by-side") difference set between +self+ and
154
+ # +other+. See Diff::LCS#sdiff.
155
+ def sdiff(other, callbacks = nil, &block)
156
+ Diff::LCS::sdiff(self, other, callbacks, &block)
157
+ end
158
+
159
+ # Traverses the discovered longest common subsequences between +self+ and
160
+ # +other+. See Diff::LCS#traverse_sequences.
161
+ def traverse_sequences(other, callbacks = nil, &block)
162
+ traverse_sequences(self, other, callbacks ||
163
+ Diff::LCS::YieldingCallbacks, &block)
164
+ end
165
+
166
+ # Traverses the discovered longest common subsequences between +self+ and
167
+ # +other+ using the alternate, balanced algorithm. See
168
+ # Diff::LCS#traverse_balanced.
169
+ def traverse_balanced(other, callbacks = nil, &block)
170
+ traverse_balanced(self, other, callbacks ||
171
+ Diff::LCS::YieldingCallbacks, &block)
172
+ end
173
+
174
+ # Attempts to patch a copy of +self+ with the provided +patchset+. See
175
+ # Diff::LCS#patch.
176
+ def patch(patchset)
177
+ Diff::LCS::patch(self.dup, patchset)
178
+ end
179
+
180
+ # Attempts to unpatch a copy of +self+ with the provided +patchset+. See
181
+ # Diff::LCS#patch.
182
+ def unpatch(patchset)
183
+ Diff::LCS::unpatch(self.dup, patchset)
184
+ end
185
+
186
+ # Attempts to patch +self+ with the provided +patchset+. See
187
+ # Diff::LCS#patch!. Does no autodiscovery.
188
+ def patch!(patchset)
189
+ Diff::LCS::patch!(self, patchset)
190
+ end
191
+
192
+ # Attempts to unpatch +self+ with the provided +patchset+. See
193
+ # Diff::LCS#unpatch. Does no autodiscovery.
194
+ def unpatch!(patchset)
195
+ Diff::LCS::unpatch!(self, patchset)
196
+ end
197
+ end
198
+
199
+ module Diff::LCS
200
+ class << self
201
+ # Given two sequenced Enumerables, LCS returns an Array containing their
202
+ # longest common subsequences.
203
+ #
204
+ # lcs = Diff::LCS.LCS(seq1, seq2)
205
+ #
206
+ # This array whose contents is such that:
207
+ #
208
+ # lcs.each_with_index do |ee, ii|
209
+ # assert(ee.nil? || (seq1[ii] == seq2[ee]))
210
+ # end
211
+ #
212
+ # If a block is provided, the matching subsequences will be yielded from
213
+ # +seq1+ in turn and may be modified before they are placed into the
214
+ # returned Array of subsequences.
215
+ def LCS(seq1, seq2, &block) #:yields seq1[ii] for each matched:
216
+ matches = Diff::LCS.__lcs(seq1, seq2)
217
+ ret = []
218
+ matches.each_with_index do |ee, ii|
219
+ unless matches[ii].nil?
220
+ if block_given?
221
+ ret << (yield seq1[ii])
222
+ else
223
+ ret << seq1[ii]
224
+ end
225
+ end
226
+ end
227
+ ret
228
+ end
229
+
230
+ # Diff::LCS.diff computes the smallest set of additions and deletions
231
+ # necessary to turn the first sequence into the second, and returns a
232
+ # description of these changes.
233
+ #
234
+ # See Diff::LCS::DiffCallbacks for the default behaviour. An alternate
235
+ # behaviour may be implemented with Diff::LCS::ContextDiffCallbacks. If
236
+ # a Class argument is provided for +callbacks+, #diff will attempt to
237
+ # initialise it. If the +callbacks+ object (possibly initialised)
238
+ # responds to #finish, it will be called.
239
+ def diff(seq1, seq2, callbacks = nil, &block) # :yields diff changes:
240
+ callbacks ||= Diff::LCS::DiffCallbacks
241
+ if callbacks.kind_of?(Class)
242
+ cb = callbacks.new rescue callbacks
243
+ callbacks = cb
244
+ end
245
+ traverse_sequences(seq1, seq2, callbacks)
246
+ callbacks.finish if callbacks.respond_to?(:finish)
247
+
248
+ if block_given?
249
+ res = callbacks.diffs.map do |hunk|
250
+ if hunk.kind_of?(Array)
251
+ hunk = hunk.map { |hunk_block| yield hunk_block }
252
+ else
253
+ yield hunk
254
+ end
255
+ end
256
+ res
257
+ else
258
+ callbacks.diffs
259
+ end
260
+ end
261
+
262
+ # Diff::LCS.sdiff computes all necessary components to show two sequences
263
+ # and their minimized differences side by side, just like the Unix
264
+ # utility <em>sdiff</em> does:
265
+ #
266
+ # old < -
267
+ # same same
268
+ # before | after
269
+ # - > new
270
+ #
271
+ # See Diff::LCS::SDiffCallbacks for the default behaviour. An alternate
272
+ # behaviour may be implemented with Diff::LCS::ContextDiffCallbacks. If
273
+ # a Class argument is provided for +callbacks+, #diff will attempt to
274
+ # initialise it. If the +callbacks+ object (possibly initialised)
275
+ # responds to #finish, it will be called.
276
+ def sdiff(seq1, seq2, callbacks = nil, &block) #:yields diff changes:
277
+ callbacks ||= Diff::LCS::SDiffCallbacks
278
+ if callbacks.kind_of?(Class)
279
+ cb = callbacks.new rescue callbacks
280
+ callbacks = cb
281
+ end
282
+ traverse_balanced(seq1, seq2, callbacks)
283
+ callbacks.finish if callbacks.respond_to?(:finish)
284
+
285
+ if block_given?
286
+ res = callbacks.diffs.map do |hunk|
287
+ if hunk.kind_of?(Array)
288
+ hunk = hunk.map { |hunk_block| yield hunk_block }
289
+ else
290
+ yield hunk
291
+ end
292
+ end
293
+ res
294
+ else
295
+ callbacks.diffs
296
+ end
297
+ end
298
+
299
+ # Diff::LCS.traverse_sequences is the most general facility provided by this
300
+ # module; +diff+ and +LCS+ are implemented as calls to it.
301
+ #
302
+ # The arguments to #traverse_sequences are the two sequences to
303
+ # traverse, and a callback object, like this:
304
+ #
305
+ # traverse_sequences(seq1, seq2, Diff::LCS::ContextDiffCallbacks.new)
306
+ #
307
+ # #diff is implemented with #traverse_sequences.
308
+ #
309
+ # == Callback Methods
310
+ # Optional callback methods are <em>emphasized</em>.
311
+ #
312
+ # callbacks#match:: Called when +a+ and +b+ are pointing
313
+ # to common elements in +A+ and +B+.
314
+ # callbacks#discard_a:: Called when +a+ is pointing to an
315
+ # element not in +B+.
316
+ # callbacks#discard_b:: Called when +b+ is pointing to an
317
+ # element not in +A+.
318
+ # <em>callbacks#finished_a</em>:: Called when +a+ has reached the end of
319
+ # sequence +A+.
320
+ # <em>callbacks#finished_b</em>:: Called when +b+ has reached the end of
321
+ # sequence +B+.
322
+ #
323
+ # == Algorithm
324
+ # a---+
325
+ # v
326
+ # A = a b c e h j l m n p
327
+ # B = b c d e f j k l m r s t
328
+ # ^
329
+ # b---+
330
+ #
331
+ # If there are two arrows (+a+ and +b+) pointing to elements of
332
+ # sequences +A+ and +B+, the arrows will initially point to the first
333
+ # elements of their respective sequences. #traverse_sequences will
334
+ # advance the arrows through the sequences one element at a time,
335
+ # calling a method on the user-specified callback object before each
336
+ # advance. It will advance the arrows in such a way that if there are
337
+ # elements <tt>A[ii]</tt> and <tt>B[jj]</tt> which are both equal and
338
+ # part of the longest common subsequence, there will be some moment
339
+ # during the execution of #traverse_sequences when arrow +a+ is pointing
340
+ # to <tt>A[ii]</tt> and arrow +b+ is pointing to <tt>B[jj]</tt>. When
341
+ # this happens, #traverse_sequences will call <tt>callbacks#match</tt>
342
+ # and then it will advance both arrows.
343
+ #
344
+ # Otherwise, one of the arrows is pointing to an element of its sequence
345
+ # that is not part of the longest common subsequence.
346
+ # #traverse_sequences will advance that arrow and will call
347
+ # <tt>callbacks#discard_a</tt> or <tt>callbacks#discard_b</tt>, depending
348
+ # on which arrow it advanced. If both arrows point to elements that are
349
+ # not part of the longest common subsequence, then #traverse_sequences
350
+ # will advance one of them and call the appropriate callback, but it is
351
+ # not specified which it will call.
352
+ #
353
+ # The methods for <tt>callbacks#match</tt>, <tt>callbacks#discard_a</tt>,
354
+ # and <tt>callbacks#discard_b</tt> are invoked with an event comprising
355
+ # the action ("=", "+", or "-", respectively), the indicies +ii+ and
356
+ # +jj+, and the elements <tt>A[ii]</tt> and <tt>B[jj]</tt>. Return
357
+ # values are discarded by #traverse_sequences.
358
+ #
359
+ # === End of Sequences
360
+ # If arrow +a+ reaches the end of its sequence before arrow +b+ does,
361
+ # #traverse_sequence will try to call <tt>callbacks#finished_a</tt> with
362
+ # the last index and element of +A+ (<tt>A[-1]</tt>) and the current
363
+ # index and element of +B+ (<tt>B[jj]</tt>). If
364
+ # <tt>callbacks#finished_a</tt> does not exist, then
365
+ # <tt>callbacks#discard_b</tt> will be called on each element of +B+
366
+ # until the end of the sequence is reached (the call
367
+ # will be done with <tt>A[-1]</tt> and <tt>B[jj]</tt> for each element).
368
+ #
369
+ # If +b+ reaches the end of +B+ before +a+ reaches the end of +A+,
370
+ # <tt>callbacks#finished_b</tt> will be called with the current index
371
+ # and element of +A+ (<tt>A[ii]</tt>) and the last index and element of
372
+ # +B+ (<tt>A[-1]</tt>). Again, if <tt>callbacks#finished_b</tt> does not
373
+ # exist on the callback object, then <tt>callbacks#discard_a</tt> will
374
+ # be called on each element of +A+ until the end of the sequence is
375
+ # reached (<tt>A[ii]</tt> and <tt>B[-1]</tt>).
376
+ #
377
+ # There is a chance that one additional <tt>callbacks#discard_a</tt> or
378
+ # <tt>callbacks#discard_b</tt> will be called after the end of the
379
+ # sequence is reached, if +a+ has not yet reached the end of +A+ or +b+
380
+ # has not yet reached the end of +B+.
381
+ def traverse_sequences(seq1, seq2, callbacks = Diff::LCS::SequenceCallbacks, &block) #:yields change events:
382
+ matches = Diff::LCS.__lcs(seq1, seq2)
383
+
384
+ run_finished_a = run_finished_b = false
385
+ string = seq1.kind_of?(String)
386
+
387
+ a_size = seq1.size
388
+ b_size = seq2.size
389
+ ai = bj = 0
390
+
391
+ (0 .. matches.size).each do |ii|
392
+ b_line = matches[ii]
393
+
394
+ ax = string ? seq1[ii, 1] : seq1[ii]
395
+ bx = string ? seq2[bj, 1] : seq2[bj]
396
+
397
+ if b_line.nil?
398
+ unless ax.nil?
399
+ event = Diff::LCS::ContextChange.new('-', ii, ax, bj, bx)
400
+ event = yield event if block_given?
401
+ callbacks.discard_a(event)
402
+ end
403
+ else
404
+ loop do
405
+ break unless bj < b_line
406
+ bx = string ? seq2[bj, 1] : seq2[bj]
407
+ event = Diff::LCS::ContextChange.new('+', ii, ax, bj, bx)
408
+ event = yield event if block_given?
409
+ callbacks.discard_b(event)
410
+ bj += 1
411
+ end
412
+ bx = string ? seq2[bj, 1] : seq2[bj]
413
+ event = Diff::LCS::ContextChange.new('=', ii, ax, bj, bx)
414
+ event = yield event if block_given?
415
+ callbacks.match(event)
416
+ bj += 1
417
+ end
418
+ ai = ii
419
+ end
420
+ ai += 1
421
+
422
+ # The last entry (if any) processed was a match. +ai+ and +bj+ point
423
+ # just past the last matching lines in their sequences.
424
+ while (ai < a_size) or (bj < b_size)
425
+ # last A?
426
+ if ai == a_size and bj < b_size
427
+ if callbacks.respond_to?(:finished_a) and not run_finished_a
428
+ ax = string ? seq1[-1, 1] : seq1[-1]
429
+ bx = string ? seq2[bj, 1] : seq2[bj]
430
+ event = Diff::LCS::ContextChange.new('>', (a_size - 1), ax, bj, bx)
431
+ event = yield event if block_given?
432
+ callbacks.finished_a(event)
433
+ run_finished_a = true
434
+ else
435
+ ax = string ? seq1[ai, 1] : seq1[ai]
436
+ loop do
437
+ bx = string ? seq2[bj, 1] : seq2[bj]
438
+ event = Diff::LCS::ContextChange.new('+', ai, ax, bj, bx)
439
+ event = yield event if block_given?
440
+ callbacks.discard_b(event)
441
+ bj += 1
442
+ break unless bj < b_size
443
+ end
444
+ end
445
+ end
446
+
447
+ # last B?
448
+ if bj == b_size and ai < a_size
449
+ if callbacks.respond_to?(:finished_b) and not run_finished_b
450
+ ax = string ? seq1[ai, 1] : seq1[ai]
451
+ bx = string ? seq2[-1, 1] : seq2[-1]
452
+ event = Diff::LCS::ContextChange.new('<', ai, ax, (b_size - 1), bx)
453
+ event = yield event if block_given?
454
+ callbacks.finished_b(event)
455
+ run_finished_b = true
456
+ else
457
+ bx = string ? seq2[bj, 1] : seq2[bj]
458
+ loop do
459
+ ax = string ? seq1[ai, 1] : seq1[ai]
460
+ event = Diff::LCS::ContextChange.new('-', ai, ax, bj, bx)
461
+ event = yield event if block_given?
462
+ callbacks.discard_a(event)
463
+ ai += 1
464
+ break unless bj < b_size
465
+ end
466
+ end
467
+ end
468
+
469
+ if ai < a_size
470
+ ax = string ? seq1[ai, 1] : seq1[ai]
471
+ bx = string ? seq2[bj, 1] : seq2[bj]
472
+ event = Diff::LCS::ContextChange.new('-', ai, ax, bj, bx)
473
+ event = yield event if block_given?
474
+ callbacks.discard_a(event)
475
+ ai += 1
476
+ end
477
+
478
+ if bj < b_size
479
+ ax = string ? seq1[ai, 1] : seq1[ai]
480
+ bx = string ? seq2[bj, 1] : seq2[bj]
481
+ event = Diff::LCS::ContextChange.new('+', ai, ax, bj, bx)
482
+ event = yield event if block_given?
483
+ callbacks.discard_b(event)
484
+ bj += 1
485
+ end
486
+ end
487
+ end
488
+
489
+ # #traverse_balanced is an alternative to #traverse_sequences. It
490
+ # uses a different algorithm to iterate through the entries in the
491
+ # computed longest common subsequence. Instead of viewing the changes as
492
+ # insertions or deletions from one of the sequences, #traverse_balanced
493
+ # will report <em>changes</em> between the sequences. To represent a
494
+ #
495
+ # The arguments to #traverse_balanced are the two sequences to traverse
496
+ # and a callback object, like this:
497
+ #
498
+ # traverse_balanced(seq1, seq2, Diff::LCS::ContextDiffCallbacks.new)
499
+ #
500
+ # #sdiff is implemented with #traverse_balanced.
501
+ #
502
+ # == Callback Methods
503
+ # Optional callback methods are <em>emphasized</em>.
504
+ #
505
+ # callbacks#match:: Called when +a+ and +b+ are pointing
506
+ # to common elements in +A+ and +B+.
507
+ # callbacks#discard_a:: Called when +a+ is pointing to an
508
+ # element not in +B+.
509
+ # callbacks#discard_b:: Called when +b+ is pointing to an
510
+ # element not in +A+.
511
+ # <em>callbacks#change</em>:: Called when +a+ and +b+ are pointing
512
+ # to the same relative position, but
513
+ # <tt>A[a]</tt> and <tt>B[b]</tt> are
514
+ # not the same; a <em>change</em> has
515
+ # occurred.
516
+ #
517
+ # #traverse_balanced might be a bit slower than #traverse_sequences,
518
+ # noticable only while processing huge amounts of data.
519
+ #
520
+ # The +sdiff+ function of this module is implemented as call to
521
+ # #traverse_balanced.
522
+ #
523
+ # == Algorithm
524
+ # a---+
525
+ # v
526
+ # A = a b c e h j l m n p
527
+ # B = b c d e f j k l m r s t
528
+ # ^
529
+ # b---+
530
+ #
531
+ # === Matches
532
+ # If there are two arrows (+a+ and +b+) pointing to elements of
533
+ # sequences +A+ and +B+, the arrows will initially point to the first
534
+ # elements of their respective sequences. #traverse_sequences will
535
+ # advance the arrows through the sequences one element at a time,
536
+ # calling a method on the user-specified callback object before each
537
+ # advance. It will advance the arrows in such a way that if there are
538
+ # elements <tt>A[ii]</tt> and <tt>B[jj]</tt> which are both equal and
539
+ # part of the longest common subsequence, there will be some moment
540
+ # during the execution of #traverse_sequences when arrow +a+ is pointing
541
+ # to <tt>A[ii]</tt> and arrow +b+ is pointing to <tt>B[jj]</tt>. When
542
+ # this happens, #traverse_sequences will call <tt>callbacks#match</tt>
543
+ # and then it will advance both arrows.
544
+ #
545
+ # === Discards
546
+ # Otherwise, one of the arrows is pointing to an element of its sequence
547
+ # that is not part of the longest common subsequence.
548
+ # #traverse_sequences will advance that arrow and will call
549
+ # <tt>callbacks#discard_a</tt> or <tt>callbacks#discard_b</tt>,
550
+ # depending on which arrow it advanced.
551
+ #
552
+ # === Changes
553
+ # If both +a+ and +b+ point to elements that are not part of the longest
554
+ # common subsequence, then #traverse_sequences will try to call
555
+ # <tt>callbacks#change</tt> and advance both arrows. If
556
+ # <tt>callbacks#change</tt> is not implemented, then
557
+ # <tt>callbacks#discard_a</tt> and <tt>callbacks#discard_b</tt> will be
558
+ # called in turn.
559
+ #
560
+ # The methods for <tt>callbacks#match</tt>, <tt>callbacks#discard_a</tt>,
561
+ # <tt>callbacks#discard_b</tt>, and <tt>callbacks#change</tt> are
562
+ # invoked with an event comprising the action ("=", "+", "-", or "!",
563
+ # respectively), the indicies +ii+ and +jj+, and the elements
564
+ # <tt>A[ii]</tt> and <tt>B[jj]</tt>. Return values are discarded by
565
+ # #traverse_balanced.
566
+ #
567
+ # === Context
568
+ # Note that +ii+ and +jj+ may not be the same index position, even if
569
+ # +a+ and +b+ are considered to be pointing to matching or changed
570
+ # elements.
571
+ def traverse_balanced(seq1, seq2, callbacks = Diff::LCS::BalancedCallbacks)
572
+ matches = Diff::LCS.__lcs(seq1, seq2)
573
+ a_size = seq1.size
574
+ b_size = seq2.size
575
+ ai = bj = mb = 0
576
+ ma = -1
577
+ string = seq1.kind_of?(String)
578
+
579
+ # Process all the lines in the match vector.
580
+ loop do
581
+ # Find next match indices +ma+ and +mb+
582
+ loop do
583
+ ma += 1
584
+ break unless ma < matches.size and matches[ma].nil?
585
+ end
586
+
587
+ break if ma >= matches.size # end of matches?
588
+ mb = matches[ma]
589
+
590
+ # Change(seq2)
591
+ while (ai < ma) or (bj < mb)
592
+ ax = string ? seq1[ai, 1] : seq1[ai]
593
+ bx = string ? seq2[bj, 1] : seq2[bj]
594
+
595
+ case [(ai < ma), (bj < mb)]
596
+ when [true, true]
597
+ if callbacks.respond_to?(:change)
598
+ event = Diff::LCS::ContextChange.new('!', ai, ax, bj, bx)
599
+ event = yield event if block_given?
600
+ callbacks.change(event)
601
+ ai += 1
602
+ bj += 1
603
+ else
604
+ event = Diff::LCS::ContextChange.new('-', ai, ax, bj, bx)
605
+ event = yield event if block_given?
606
+ callbacks.discard_a(event)
607
+ ai += 1
608
+ ax = string ? seq1[ai, 1] : seq1[ai]
609
+ event = Diff::LCS::ContextChange.new('+', ai, ax, bj, bx)
610
+ event = yield event if block_given?
611
+ callbacks.discard_b(event)
612
+ bj += 1
613
+ end
614
+ when [true, false]
615
+ event = Diff::LCS::ContextChange.new('-', ai, ax, bj, bx)
616
+ event = yield event if block_given?
617
+ callbacks.discard_a(event)
618
+ ai += 1
619
+ when [false, true]
620
+ event = Diff::LCS::ContextChange.new('+', ai, ax, bj, bx)
621
+ event = yield event if block_given?
622
+ callbacks.discard_b(event)
623
+ bj += 1
624
+ end
625
+ end
626
+
627
+ # Match
628
+ ax = string ? seq1[ai, 1] : seq1[ai]
629
+ bx = string ? seq2[bj, 1] : seq2[bj]
630
+ event = Diff::LCS::ContextChange.new('=', ai, ax, bj, bx)
631
+ event = yield event if block_given?
632
+ callbacks.match(event)
633
+ ai += 1
634
+ bj += 1
635
+ end
636
+
637
+ while (ai < a_size) or (bj < b_size)
638
+ ax = string ? seq1[ai, 1] : seq1[ai]
639
+ bx = string ? seq2[bj, 1] : seq2[bj]
640
+
641
+ case [(ai < a_size), (bj < b_size)]
642
+ when [true, true]
643
+ if callbacks.respond_to?(:change)
644
+ event = Diff::LCS::ContextChange.new('!', ai, ax, bj, bx)
645
+ event = yield event if block_given?
646
+ callbacks.change(event)
647
+ ai += 1
648
+ bj += 1
649
+ else
650
+ event = Diff::LCS::ContextChange.new('-', ai, ax, bj, bx)
651
+ event = yield event if block_given?
652
+ callbacks.discard_a(event)
653
+ ai += 1
654
+ ax = string ? seq1[ai, 1] : seq1[ai]
655
+ event = Diff::LCS::ContextChange.new('+', ai, ax, bj, bx)
656
+ event = yield event if block_given?
657
+ callbacks.discard_b(event)
658
+ bj += 1
659
+ end
660
+ when [true, false]
661
+ event = Diff::LCS::ContextChange.new('-', ai, ax, bj, bx)
662
+ event = yield event if block_given?
663
+ callbacks.discard_a(event)
664
+ ai += 1
665
+ when [false, true]
666
+ event = Diff::LCS::ContextChange.new('+', ai, ax, bj, bx)
667
+ event = yield event if block_given?
668
+ callbacks.discard_b(event)
669
+ bj += 1
670
+ end
671
+ end
672
+ end
673
+
674
+ PATCH_MAP = { #:nodoc:
675
+ :patch => { '+' => '+', '-' => '-', '!' => '!', '=' => '=' },
676
+ :unpatch => { '+' => '-', '-' => '+', '!' => '!', '=' => '=' }
677
+ }
678
+
679
+ # Given a patchset, convert the current version to the new
680
+ # version. If +direction+ is not specified (must be
681
+ # <tt>:patch</tt> or <tt>:unpatch</tt>), then discovery of the
682
+ # direction of the patch will be attempted.
683
+ def patch(src, patchset, direction = nil)
684
+ string = src.kind_of?(String)
685
+ # Start with a new empty type of the source's class
686
+ res = src.class.new
687
+
688
+ # Normalize the patchset.
689
+ patchset = __normalize_patchset(patchset)
690
+
691
+ direction ||= Diff::LCS.__diff_direction(src, patchset)
692
+ direction ||= :patch
693
+
694
+ ai = bj = 0
695
+
696
+ patchset.each do |change|
697
+ # Both Change and ContextChange support #action
698
+ action = PATCH_MAP[direction][change.action]
699
+
700
+ case change
701
+ when Diff::LCS::ContextChange
702
+ case direction
703
+ when :patch
704
+ el = change.new_element
705
+ op = change.old_position
706
+ np = change.new_position
707
+ when :unpatch
708
+ el = change.old_element
709
+ op = change.new_position
710
+ np = change.old_position
711
+ end
712
+
713
+ case action
714
+ when '-' # Remove details from the old string
715
+ while ai < op
716
+ res << (string ? src[ai, 1] : src[ai])
717
+ ai += 1
718
+ bj += 1
719
+ end
720
+ ai += 1
721
+ when '+'
722
+ while bj < np
723
+ res << (string ? src[ai, 1] : src[ai])
724
+ ai += 1
725
+ bj += 1
726
+ end
727
+
728
+ res << el
729
+ bj += 1
730
+ when '='
731
+ # This only appears in sdiff output with the SDiff callback.
732
+ # Therefore, we only need to worry about dealing with a single
733
+ # element.
734
+ res << el
735
+
736
+ ai += 1
737
+ bj += 1
738
+ when '!'
739
+ while ai < op
740
+ res << (string ? src[ai, 1] : src[ai])
741
+ ai += 1
742
+ bj += 1
743
+ end
744
+
745
+ bj += 1
746
+ ai += 1
747
+
748
+ res << el
749
+ end
750
+ when Diff::LCS::Change
751
+ case action
752
+ when '-'
753
+ while ai < change.position
754
+ res << (string ? src[ai, 1] : src[ai])
755
+ ai += 1
756
+ bj += 1
757
+ end
758
+ ai += 1
759
+ when '+'
760
+ while bj < change.position
761
+ res << (string ? src[ai, 1] : src[ai])
762
+ ai += 1
763
+ bj += 1
764
+ end
765
+
766
+ bj += 1
767
+
768
+ res << change.element
769
+ end
770
+ end
771
+ end
772
+
773
+ while ai < src.size
774
+ res << (string ? src[ai, 1] : src[ai])
775
+ ai += 1
776
+ bj += 1
777
+ end
778
+
779
+ res
780
+ end
781
+
782
+ # Given a set of patchset, convert the current version to the prior
783
+ # version. Does no auto-discovery.
784
+ def unpatch!(src, patchset)
785
+ Diff::LCS.patch(src, patchset, :unpatch)
786
+ end
787
+
788
+ # Given a set of patchset, convert the current version to the next
789
+ # version. Does no auto-discovery.
790
+ def patch!(src, patchset)
791
+ Diff::LCS.patch(src, patchset, :patch)
792
+ end
793
+
794
+ # private
795
+ # Compute the longest common subsequence between the sequenced
796
+ # Enumerables +a+ and +b+. The result is an array whose contents is such
797
+ # that
798
+ #
799
+ # result = Diff::LCS.__lcs(a, b)
800
+ # result.each_with_index do |e, ii|
801
+ # assert_equal(a[ii], b[e]) unless e.nil?
802
+ # end
803
+ #
804
+ # Note: This will be deprecated as a public function in a future release.
805
+ def __lcs(a, b)
806
+ a_start = b_start = 0
807
+ a_finish = a.size - 1
808
+ b_finish = b.size - 1
809
+ vector = []
810
+
811
+ # Prune off any common elements at the beginning...
812
+ while (a_start <= a_finish) and
813
+ (b_start <= b_finish) and
814
+ (a[a_start] == b[b_start])
815
+ vector[a_start] = b_start
816
+ a_start += 1
817
+ b_start += 1
818
+ end
819
+
820
+ # Now the end...
821
+ while (a_start <= a_finish) and
822
+ (b_start <= b_finish) and
823
+ (a[a_finish] == b[b_finish])
824
+ vector[a_finish] = b_finish
825
+ a_finish -= 1
826
+ b_finish -= 1
827
+ end
828
+
829
+ # Now, compute the equivalence classes of positions of elements.
830
+ b_matches = Diff::LCS.__position_hash(b, b_start .. b_finish)
831
+
832
+ thresh = []
833
+ links = []
834
+
835
+ (a_start .. a_finish).each do |ii|
836
+ ai = a.kind_of?(String) ? a[ii, 1] : a[ii]
837
+ bm = b_matches[ai]
838
+ kk = nil
839
+ bm.reverse_each do |jj|
840
+ if kk and (thresh[kk] > jj) and (thresh[kk - 1] < jj)
841
+ thresh[kk] = jj
842
+ else
843
+ kk = Diff::LCS.__replace_next_larger(thresh, jj, kk)
844
+ end
845
+ links[kk] = [ (kk > 0) ? links[kk - 1] : nil, ii, jj ] unless kk.nil?
846
+ end
847
+ end
848
+
849
+ unless thresh.empty?
850
+ link = links[thresh.size - 1]
851
+ while not link.nil?
852
+ vector[link[1]] = link[2]
853
+ link = link[0]
854
+ end
855
+ end
856
+
857
+ vector
858
+ end
859
+
860
+ # Find the place at which +value+ would normally be inserted into the
861
+ # Enumerable. If that place is already occupied by +value+, do nothing
862
+ # and return +nil+. If the place does not exist (i.e., it is off the end
863
+ # of the Enumerable), add it to the end. Otherwise, replace the element
864
+ # at that point with +value+. It is assumed that the Enumerable's values
865
+ # are numeric.
866
+ #
867
+ # This operation preserves the sort order.
868
+ #
869
+ # Note: This will be deprecated as a public function in a future release.
870
+ def __replace_next_larger(enum, value, last_index = nil)
871
+ # Off the end?
872
+ if enum.empty? or (value > enum[-1])
873
+ enum << value
874
+ return enum.size - 1
875
+ end
876
+
877
+ # Binary search for the insertion point
878
+ last_index ||= enum.size
879
+ first_index = 0
880
+ while (first_index <= last_index)
881
+ ii = (first_index + last_index) >> 1
882
+
883
+ found = enum[ii]
884
+
885
+ if value == found
886
+ return nil
887
+ elsif value > found
888
+ first_index = ii + 1
889
+ else
890
+ last_index = ii - 1
891
+ end
892
+ end
893
+
894
+ # The insertion point is in first_index; overwrite the next larger
895
+ # value.
896
+ enum[first_index] = value
897
+ return first_index
898
+ end
899
+
900
+ # If +vector+ maps the matching elements of another collection onto this
901
+ # Enumerable, compute the inverse +vector+ that maps this Enumerable
902
+ # onto the collection. (Currently unused.)
903
+ #
904
+ # Note: This will be deprecated as a public function in a future release.
905
+ def __inverse_vector(a, vector)
906
+ inverse = a.dup
907
+ (0 ... vector.size).each do |ii|
908
+ inverse[vector[ii]] = ii unless vector[ii].nil?
909
+ end
910
+ inverse
911
+ end
912
+
913
+ # Returns a hash mapping each element of an Enumerable to the set of
914
+ # positions it occupies in the Enumerable, optionally restricted to the
915
+ # elements specified in the range of indexes specified by +interval+.
916
+ #
917
+ # Note: This will be deprecated as a public function in a future release.
918
+ def __position_hash(enum, interval = 0 .. -1)
919
+ hash = Hash.new { |hh, kk| hh[kk] = [] }
920
+ interval.each do |ii|
921
+ kk = enum.kind_of?(String) ? enum[ii, 1] : enum[ii]
922
+ hash[kk] << ii
923
+ end
924
+ hash
925
+ end
926
+
927
+ # Examine the patchset and the source to see in which direction the
928
+ # patch should be applied.
929
+ #
930
+ # WARNING: By default, this examines the whole patch, so this could take
931
+ # some time. This also works better with Diff::LCS::ContextChange or
932
+ # Diff::LCS::Change as its source, as an array will cause the creation
933
+ # of one of the above.
934
+ #
935
+ # Note: This will be deprecated as a public function in a future release.
936
+ def __diff_direction(src, patchset, limit = nil)
937
+ count = left = left_miss = right = right_miss = 0
938
+ string = src.kind_of?(String)
939
+
940
+ patchset.each do |change|
941
+ count += 1
942
+
943
+ case change
944
+ when Diff::LCS::Change
945
+ # With a simplistic change, we can't tell the difference between
946
+ # the left and right on '!' actions, so we ignore those. On '='
947
+ # actions, if there's a miss, we miss both left and right.
948
+ element = string ? src[change.position, 1] : src[change.position]
949
+
950
+ case change.action
951
+ when '-'
952
+ if element == change.element
953
+ left += 1
954
+ else
955
+ left_miss += 1
956
+ end
957
+ when '+'
958
+ if element == change.element
959
+ right += 1
960
+ else
961
+ right_miss += 1
962
+ end
963
+ when '='
964
+ if element != change.element
965
+ left_miss += 1
966
+ right_miss += 1
967
+ end
968
+ end
969
+ when Diff::LCS::ContextChange
970
+ case change.action
971
+ when '-' # Remove details from the old string
972
+ element = string ? src[change.old_position, 1] : src[change.old_position]
973
+ if element == change.old_element
974
+ left += 1
975
+ else
976
+ left_miss += 1
977
+ end
978
+ when '+'
979
+ element = string ? src[change.new_position, 1] : src[change.new_position]
980
+ if element == change.new_element
981
+ right += 1
982
+ else
983
+ right_miss += 1
984
+ end
985
+ when '='
986
+ le = string ? src[change.old_position, 1] : src[change.old_position]
987
+ re = string ? src[change.new_position, 1] : src[change.new_position]
988
+
989
+ left_miss += 1 if le != change.old_element
990
+ right_miss += 1 if re != change.new_element
991
+ when '!'
992
+ element = string ? src[change.old_position, 1] : src[change.old_position]
993
+ if element == change.old_element
994
+ left += 1
995
+ else
996
+ element = string ? src[change.new_position, 1] : src[change.new_position]
997
+ if element == change.new_element
998
+ right += 1
999
+ else
1000
+ left_miss += 1
1001
+ right_miss += 1
1002
+ end
1003
+ end
1004
+ end
1005
+ end
1006
+
1007
+ break if (not limit.nil?) && (count > limit)
1008
+ end
1009
+
1010
+ no_left = (left == 0) and (left_miss >= 0)
1011
+ no_right = (right == 0) and (right_miss >= 0)
1012
+
1013
+ case [no_left, no_right]
1014
+ when [false, true]
1015
+ return :patch
1016
+ when [true, false]
1017
+ return :unpatch
1018
+ else
1019
+ raise "The provided patchset does not appear to apply to the provided value as either source or destination value."
1020
+ end
1021
+ end
1022
+
1023
+ # Normalize the patchset. A patchset is always a sequence of changes, but
1024
+ # how those changes are represented may vary, depending on how they were
1025
+ # generated. In all cases we support, we also support the array
1026
+ # representation of the changes. The formats are:
1027
+ #
1028
+ # [ # patchset <- Diff::LCS.diff(a, b)
1029
+ # [ # one or more hunks
1030
+ # Diff::LCS::Change # one or more changes
1031
+ # ] ]
1032
+ #
1033
+ # [ # patchset, equivalent to the above
1034
+ # [ # one or more hunks
1035
+ # [ action, line, value ] # one or more changes
1036
+ # ] ]
1037
+ #
1038
+ # [ # patchset <- Diff::LCS.diff(a, b, Diff::LCS::ContextDiffCallbacks)
1039
+ # # OR <- Diff::LCS.sdiff(a, b, Diff::LCS::ContextDiffCallbacks)
1040
+ # [ # one or more hunks
1041
+ # Diff::LCS::ContextChange # one or more changes
1042
+ # ] ]
1043
+ #
1044
+ # [ # patchset, equivalent to the above
1045
+ # [ # one or more hunks
1046
+ # [ action, [ old line, old value ], [ new line, new value ] ]
1047
+ # # one or more changes
1048
+ # ] ]
1049
+ #
1050
+ # [ # patchset <- Diff::LCS.sdiff(a, b)
1051
+ # # OR <- Diff::LCS.diff(a, b, Diff::LCS::SDiffCallbacks)
1052
+ # Diff::LCS::ContextChange # one or more changes
1053
+ # ]
1054
+ #
1055
+ # [ # patchset, equivalent to the above
1056
+ # [ action, [ old line, old value ], [ new line, new value ] ]
1057
+ # # one or more changes
1058
+ # ]
1059
+ #
1060
+ # The result of this will be either of the following.
1061
+ #
1062
+ # [ # patchset
1063
+ # Diff::LCS::ContextChange # one or more changes
1064
+ # ]
1065
+ #
1066
+ # [ # patchset
1067
+ # Diff::LCS::Change # one or more changes
1068
+ # ]
1069
+ #
1070
+ # If either of the above is provided, it will be returned as such.
1071
+ #
1072
+ # Note: This will be deprecated as a public function in a future release.
1073
+ def __normalize_patchset(patchset)
1074
+ patchset.map do |hunk|
1075
+ case hunk
1076
+ when Diff::LCS::ContextChange, Diff::LCS::Change
1077
+ hunk
1078
+ when Array
1079
+ if (not hunk[0].kind_of?(Array)) and hunk[1].kind_of?(Array) and hunk[2].kind_of?(Array)
1080
+ Diff::LCS::ContextChange.from_a(hunk)
1081
+ else
1082
+ hunk.map do |change|
1083
+ case change
1084
+ when Diff::LCS::ContextChange, Diff::LCS::Change
1085
+ change
1086
+ when Array
1087
+ # change[1] will ONLY be an array in a ContextChange#to_a call.
1088
+ # In Change#to_a, it represents the line (singular).
1089
+ if change[1].kind_of?(Array)
1090
+ Diff::LCS::ContextChange.from_a(change)
1091
+ else
1092
+ Diff::LCS::Change.from_a(change)
1093
+ end
1094
+ end
1095
+ end
1096
+ end
1097
+ else
1098
+ raise ArgumentError, "Cannot normalise a hunk of class #{hunk.class}."
1099
+ end
1100
+ end.flatten
1101
+ end
1102
+ end
1103
+ end
1104
+
1105
+ # vim: ft=ruby