vim-jar 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +4 -0
- data/.rspec +2 -0
- data/.rvmrc +1 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +44 -0
- data/README.md +25 -0
- data/Rakefile +2 -0
- data/TODO.otl +28 -0
- data/bin/vim-jar +62 -0
- data/bundler/ruby/1.8/bin/autospec +19 -0
- data/bundler/ruby/1.8/bin/autotest +21 -0
- data/bundler/ruby/1.8/bin/htmldiff +19 -0
- data/bundler/ruby/1.8/bin/ldiff +19 -0
- data/bundler/ruby/1.8/bin/multigem +21 -0
- data/bundler/ruby/1.8/bin/multiruby +21 -0
- data/bundler/ruby/1.8/bin/multiruby_setup +21 -0
- data/bundler/ruby/1.8/bin/rdebug +19 -0
- data/bundler/ruby/1.8/bin/rspec +19 -0
- data/bundler/ruby/1.8/bin/unit_diff +21 -0
- data/bundler/ruby/1.8/bin/vim-jar +19 -0
- data/bundler/ruby/1.8/bin/zentest +21 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/History.txt +392 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/Manifest.txt +12 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/README.txt +139 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/Rakefile +38 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/demo/fastmath.rb +27 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/demo/hello.rb +13 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/example.rb +86 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/example2.rb +34 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/lib/inline.rb +878 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/test/test_inline.rb +1051 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/tutorial/example1.rb +63 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/tutorial/example2.rb +96 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/.autotest +21 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/History.txt +709 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/Manifest.txt +35 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/README.txt +109 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/Rakefile +59 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/articles/Article.css +721 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/articles/getting_started_with_autotest.html +533 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/articles/how_to_use_zentest.txt +393 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/bin/autotest +55 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/bin/multigem +4 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/bin/multiruby +76 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/bin/multiruby_setup +74 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/bin/unit_diff +37 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/bin/zentest +28 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/example.txt +42 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/example1.rb +7 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/example2.rb +15 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/example_dot_autotest.rb +12 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/autotest/autoupdate.rb +26 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/autotest/once.rb +9 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/autotest/rcov.rb +27 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/autotest/restart.rb +11 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/autotest/timestamp.rb +9 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/autotest.rb +658 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/focus.rb +21 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/functional_test_matrix.rb +92 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/multiruby.rb +412 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/unit_diff.rb +274 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/zentest.rb +562 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/zentest_mapping.rb +117 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/test/test_autotest.rb +477 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/test/test_focus.rb +35 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/test/test_unit_diff.rb +343 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/test/test_zentest.rb +566 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/test/test_zentest_mapping.rb +242 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/AUTHORS +1 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/COPYING +340 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/ChangeLog +101 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/Makefile +8 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/NEWS +32 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/README +39 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/Rakefile +84 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/lib/Makefile +7 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/lib/columnize.rb +247 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/lib/version.rb +3 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/test/test-columnize.rb +81 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/.require_paths +3 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/LICENSE +51 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/README +158 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/Rakefile +316 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/doc.rb +42 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/Makefile +157 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/conftest.dSYM/Contents/Info.plist +20 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb.c +373 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb.h +52 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb.o +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_config.h +64 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_core.bundle +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_easy.c +3379 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_easy.h +84 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_easy.o +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_errors.c +637 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_errors.h +129 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_errors.o +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_macros.h +155 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_multi.c +519 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_multi.h +26 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_multi.o +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_postfield.c +522 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_postfield.h +40 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_postfield.o +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_upload.c +80 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_upload.h +30 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_upload.o +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/extconf.rb +177 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/mkmf.log +1088 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/lib/curb.rb +255 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/lib/curb_core.bundle +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/lib/curl.rb +2 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/alltests.rb +3 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bug_curb_easy_blocks_ruby_threads.rb +52 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bug_curb_easy_post_with_string_no_content_length_header.rb +83 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bug_instance_post_differs_from_class_post.rb +53 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bug_multi_segfault.rb +14 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bug_postfields_crash.rb +26 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bug_postfields_crash2.rb +57 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bug_require_last_or_segfault.rb +40 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bugtests.rb +9 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/helper.rb +182 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/mem_check.rb +65 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/require_last_or_segfault_script.rb +36 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/tc_curl_download.rb +32 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/tc_curl_easy.rb +830 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/tc_curl_multi.rb +461 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/tc_curl_postfield.rb +143 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/unittests.rb +2 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/History.txt +7 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/License.txt +676 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/Manifest.txt +25 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/README.txt +7 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/Rakefile +4 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/config/hoe.rb +71 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/config/requirements.rb +17 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/lib/curl-multi/version.rb +23 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/lib/curl-multi.rb +374 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/lib/uri-extensions.rb +34 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/log/debug.log +0 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/script/destroy +14 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/script/generate +14 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/script/txt2html +74 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/setup.rb +1585 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/tasks/deployment.rake +34 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/tasks/environment.rake +7 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/tasks/website.rake +17 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/test/test_curl-multi.rb +34 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/test/test_helper.rb +2 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/website/index.html +129 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/website/index.txt +65 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/website/stylesheets/screen.css +138 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/website/template.rhtml +48 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/ChangeLog +46 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/Install +6 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/README +76 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/Rakefile +116 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/bin/htmldiff +112 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/bin/ldiff +45 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs/array.rb +21 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs/block.rb +51 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs/callbacks.rb +322 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs/change.rb +169 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs/hunk.rb +257 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs/ldiff.rb +226 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs/string.rb +19 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs.rb +1105 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/tests/00test.rb +626 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/.gitignore +1 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/CONTRIBUTORS +12 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/LICENSE +20 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/README.markdown +101 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/Rakefile +47 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/base.rb +38 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/dir.rb +114 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/fake/dir.rb +45 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/fake/file.rb +79 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/fake/symlink.rb +32 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/file.rb +282 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/file_system.rb +136 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/fileutils.rb +129 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/safe.rb +11 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/spec_helpers.rb +46 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/version.rb +9 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs.rb +3 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/spec/fakefs/spec_helpers_spec.rb +57 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/spec/spec.opts +1 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/spec/spec_helper.rb +3 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/test/fake/file_test.rb +88 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/test/fake/symlink_test.rb +12 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/test/fakefs_test.rb +1251 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/test/file/stat_test.rb +70 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/test/safe_test.rb +42 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/test/verify.rb +27 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/.gitignore +3 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/.rspec +2 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/Gemfile +4 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/Gemfile.lock +31 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/LICENSE +3 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/README.textile +18 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/fuubar.gemspec +23 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/lib/fuubar.rb +69 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/spec/fuubar_spec.rb +150 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/spec/spec_helper.rb +3 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/AUTHORS +1 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/COPYING +340 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/ChangeLog +317 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/NEWS +29 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/README +38 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/Rakefile +166 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/VERSION +1 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/ext/Makefile +157 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/ext/extconf.rb +16 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/ext/trace_nums.bundle +0 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/ext/trace_nums.c +716 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/ext/trace_nums.h +111 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/ext/trace_nums.o +0 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/lib/linecache.rb +399 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/lib/trace_nums.bundle +0 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/lib/tracelines.rb +47 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/begin1.rb +3 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/begin2.rb +3 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/begin3.rb +6 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/block1.rb +7 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/block2.rb +4 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/case1.rb +6 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/case2.rb +5 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/case3.rb +5 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/case4.rb +4 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/case5.rb +10 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/class1.rb +5 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/comments1.rb +6 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/def1.rb +9 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/each1.rb +3 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/end.rb +3 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/for1.rb +4 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/if1.rb +4 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/if2.rb +4 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/if3.rb +9 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/if4.rb +14 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/if5.rb +7 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/if6.rb +4 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/if7.rb +8 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/match.rb +3 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/match3.rb +5 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/match3a.rb +6 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/not-lit.rb +6 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/lnum-diag.rb +130 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/parse-show.rb +14 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/rcov-bug.rb +10 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/short-file +2 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/test-linecache.rb +151 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/test-lnum.rb +36 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/test-tracelines.rb +41 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/CHANGES +260 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/Gemfile +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/LICENSE +22 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/README.rdoc +385 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/Rakefile +88 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/VERSION.yml +5 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/adapters/rr_methods.rb +146 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/adapters/rspec.rb +61 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/adapters/test_unit.rb +31 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/blank_slate.rb +17 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/class_instance_method_defined.rb +9 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double.rb +154 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/child_double_definition_create.rb +27 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/double_definition.rb +367 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/double_definition_create.rb +139 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/double_definition_create_blank_slate.rb +26 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/double_injections/any_instance_of.rb +28 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/double_injections/instance.rb +16 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/double_injection/any_instance_of.rb +30 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/double_injection/double_injection_strategy.rb +10 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/double_injection/instance.rb +17 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/implementation/implementation_strategy.rb +10 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/implementation/proxy.rb +60 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/implementation/reimplementation.rb +14 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/implementation/strongly_typed_reimplementation.rb +15 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/strategy.rb +43 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/strategy_methods.rb +53 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/verification/dont_allow.rb +31 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/verification/mock.rb +42 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/verification/stub.rb +43 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/verification/verification_strategy.rb +10 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_matches.rb +42 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/argument_equality_error.rb +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/double_definition_error.rb +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/double_not_found_error.rb +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/double_order_error.rb +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/rr_error.rb +20 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/spy_verification_errors/double_injection_not_found_error.rb +8 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/spy_verification_errors/invocation_count_error.rb +8 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/spy_verification_errors/spy_verification_error.rb +8 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/subject_does_not_implement_method_error.rb +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/subject_has_different_arity_error.rb +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/times_called_error.rb +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/expectations/any_argument_expectation.rb +21 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/expectations/argument_equality_expectation.rb +41 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/expectations/times_called_expectation.rb +57 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/hash_with_object_id_key.rb +46 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/injections/double_injection.rb +213 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/injections/injection.rb +33 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/injections/method_missing_injection.rb +68 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/injections/singleton_method_added_injection.rb +72 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/method_dispatches/base_method_dispatch.rb +84 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/method_dispatches/method_dispatch.rb +59 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/method_dispatches/method_missing_dispatch.rb +61 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/proc_from_block.rb +7 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/recorded_calls.rb +103 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/space.rb +112 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/spy_verification.rb +48 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/spy_verification_proxy.rb +13 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/any_times_matcher.rb +18 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/at_least_matcher.rb +15 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/at_most_matcher.rb +23 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/integer_matcher.rb +19 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/never_matcher.rb +23 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/non_terminal.rb +27 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/proc_matcher.rb +11 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/range_matcher.rb +21 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/terminal.rb +20 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/times_called_matcher.rb +44 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/anything.rb +18 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/boolean.rb +23 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/duck_type.rb +32 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/hash_including.rb +29 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/is_a.rb +25 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/numeric.rb +13 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/range.rb +7 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/regexp.rb +7 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/satisfy.rb +26 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers.rb +158 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr.rb +99 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/scratch.rb +118 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/any_instance_of/all_instances_of_spec.rb +12 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/any_instance_of/any_instance_of_spec.rb +47 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/any_instance_of/instance_of_spec.rb +12 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/dont_allow/dont_allow_after_stub_spec.rb +14 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/mock/mock_spec.rb +193 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/proxy/proxy_spec.rb +86 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/spy/spy_spec.rb +49 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/strong/strong_spec.rb +87 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/stub/stub_spec.rb +152 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/core_spec_suite.rb +19 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/environment_fixture_setup.rb +8 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/proc_from_block_spec.rb +14 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/adapters/rr_methods_argument_matcher_spec.rb +67 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/adapters/rr_methods_creator_spec.rb +137 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/adapters/rr_methods_space_spec.rb +98 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/adapters/rr_methods_spec_helper.rb +11 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/adapters/rr_methods_times_matcher_spec.rb +13 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/double_definitions/child_double_definition_creator_spec.rb +112 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/double_definitions/double_definition_create_blank_slate_spec.rb +91 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/double_definitions/double_definition_create_spec.rb +443 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/double_injection/double_injection_spec.rb +546 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/double_injection/double_injection_verify_spec.rb +29 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/errors/rr_error_spec.rb +67 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/any_argument_expectation_spec.rb +47 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/anything_argument_equality_expectation_spec.rb +14 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/argument_equality_expectation_spec.rb +135 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/boolean_argument_equality_expectation_spec.rb +34 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/hash_including_argument_equality_expectation_spec.rb +82 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/hash_including_spec.rb +17 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/satisfy_argument_equality_expectation_spec.rb +59 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/satisfy_spec.rb +14 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_any_times_spec.rb +22 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_at_least_spec.rb +37 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_at_most_spec.rb +43 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_helper.rb +15 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_integer_spec.rb +58 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_proc_spec.rb +35 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_range_spec.rb +39 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/rspec/invocation_matcher_spec.rb +279 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/rspec/rspec_adapter_spec.rb +63 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/rspec/rspec_backtrace_tweaking_spec.rb +31 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/rspec/rspec_backtrace_tweaking_spec_fixture.rb +11 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/rspec/rspec_usage_spec.rb +86 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/space/hash_with_object_id_key_spec.rb +88 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/space/space_spec.rb +587 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/test_unit/test_helper.rb +7 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/test_unit/test_unit_backtrace_test.rb +36 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/test_unit/test_unit_integration_test.rb +59 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/times_called_matchers/any_times_matcher_spec.rb +47 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/times_called_matchers/at_least_matcher_spec.rb +55 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/times_called_matchers/at_most_matcher_spec.rb +70 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/times_called_matchers/integer_matcher_spec.rb +70 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/times_called_matchers/proc_matcher_spec.rb +55 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/times_called_matchers/range_matcher_spec.rb +76 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/times_called_matchers/times_called_matcher_spec.rb +118 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/wildcard_matchers/anything_spec.rb +24 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/wildcard_matchers/boolean_spec.rb +36 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/wildcard_matchers/duck_type_spec.rb +52 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/wildcard_matchers/is_a_spec.rb +32 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/wildcard_matchers/numeric_spec.rb +32 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/wildcard_matchers/range_spec.rb +35 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/wildcard_matchers/regexp_spec.rb +43 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr_spec.rb +28 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rspec_spec_suite.rb +17 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/spec_helper.rb +37 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/spec_suite.rb +48 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/spy_verification_spec.rb +129 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/test_unit_spec_suite.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/.document +2 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/.gitignore +7 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/Gemfile +7 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/License.txt +22 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/README.markdown +47 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/Rakefile +16 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/lib/rspec/version.rb +5 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/lib/rspec.rb +4 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/rspec.gemspec +29 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/.document +5 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/.gitignore +11 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/.treasure_map.rb +23 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/Gemfile +31 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/Guardfile +5 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/History.markdown +104 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/License.txt +22 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/README.markdown +95 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/Rakefile +71 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/Upgrade.markdown +289 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/autotest/discover.rb +2 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/bin/autospec +13 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/bin/rspec +25 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/cucumber.yml +2 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/README.markdown +19 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/command_line/configure.feature +20 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/command_line/example_name_option.feature +86 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/command_line/exit_status.feature +52 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/command_line/line_number_appended_to_path.feature +106 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/command_line/line_number_option.feature +45 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/command_line/rake_task.feature +68 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/command_line/tag.feature +74 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/configuration/custom_settings.feature +84 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/configuration/fail_fast.feature +77 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/configuration/read_options_from_file.feature +74 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/example_groups/basic_structure.feature +54 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/example_groups/shared_example_group.feature +177 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/filtering/exclusion_filters.feature +115 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/filtering/implicit_filters.feature +166 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/filtering/inclusion_filters.feature +83 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/filtering/run_all_when_everything_filtered.feature +46 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/formatters/custom_formatter.feature +32 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/hooks/around_hooks.feature +320 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/hooks/before_and_after_hooks.feature +432 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/metadata/described_class.feature +17 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/mock_framework_integration/use_flexmock.feature +23 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/mock_framework_integration/use_mocha.feature +23 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/mock_framework_integration/use_rr.feature +23 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/mock_framework_integration/use_rspec.feature +23 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/pending/pending_examples.feature +216 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/spec_files/arbitrary_file_suffix.feature +13 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/step_definitions/additional_cli_steps.rb +11 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/subject/attribute_of_subject.feature +52 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/subject/explicit_subject.feature +62 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/subject/implicit_receiver.feature +29 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/subject/implicit_subject.feature +30 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/support/env.rb +1 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/autotest/rspec2.rb +66 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/autorun.rb +2 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/backward_compatibility.rb +48 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/command_line.rb +35 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/command_line_configuration.rb +62 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/configuration.rb +401 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/configuration_options.rb +98 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/deprecation.rb +45 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/drb_command_line.rb +29 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/errors.rb +14 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/example.rb +139 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/example_group.rb +311 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/expecting/with_rspec.rb +11 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/extensions/instance_eval_with_args.rb +39 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/extensions/kernel.rb +5 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/extensions/module_eval_with_args.rb +34 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/extensions/object.rb +14 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/extensions.rb +4 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/base_formatter.rb +162 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/base_text_formatter.rb +151 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/documentation_formatter.rb +71 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/helpers.rb +28 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/html_formatter.rb +351 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/progress_formatter.rb +32 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/snippet_extractor.rb +52 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/text_mate_formatter.rb +20 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/hooks.rb +134 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/let.rb +101 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/load_path.rb +3 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/metadata.rb +175 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/mocking/with_absolutely_nothing.rb +11 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/mocking/with_flexmock.rb +25 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/mocking/with_mocha.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/mocking/with_rr.rb +25 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/mocking/with_rspec.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/option_parser.rb +122 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/pending.rb +28 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/rake_task.rb +196 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/reporter.rb +79 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/ruby_project.rb +44 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/runner.rb +61 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/shared_example_group.rb +52 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/subject.rb +170 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/version.rb +7 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/world.rb +102 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core.rb +62 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/monkey/spork/test_framework/rspec.rb +7 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/monkey.rb +1 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/rspec-core.gemspec +38 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/script/console +8 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/autotest/failed_results_re_spec.rb +20 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/autotest/rspec_spec.rb +123 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/command_line_configuration_spec.rb +26 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/command_line_spec.rb +134 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/command_line_spec_output.txt +0 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/configuration_options_spec.rb +311 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/configuration_spec.rb +662 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/deprecations_spec.rb +45 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/drb_command_line_spec.rb +159 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/example_group_spec.rb +787 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/example_spec.rb +160 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/base_formatter_spec.rb +36 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/base_text_formatter_spec.rb +160 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/documentation_formatter_spec.rb +66 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/helpers_spec.rb +46 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/html_formatted-1.8.6.html +296 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html +285 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/html_formatted-1.8.7.html +296 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/html_formatted-1.9.1.html +303 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/html_formatted-1.9.2.html +303 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/html_formatter_spec.rb +81 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/progress_formatter_spec.rb +31 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/snippet_extractor_spec.rb +18 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/text_mate_formatted-1.8.6.html +296 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html +280 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html +296 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/text_mate_formatted-1.9.1.html +303 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html +303 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/text_mate_formatter_spec.rb +84 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/hooks_filtering_spec.rb +124 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/hooks_spec.rb +57 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/kernel_extensions_spec.rb +9 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/let_spec.rb +42 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/metadata_spec.rb +285 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/option_parser_spec.rb +39 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/pending_example_spec.rb +226 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/rake_task_spec.rb +141 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/reporter_spec.rb +70 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/resources/a_bar.rb +0 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/resources/a_foo.rb +0 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/resources/a_spec.rb +1 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/resources/custom_example_group_runner.rb +14 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/resources/formatter_specs.rb +54 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/resources/utf8_encoded.rb +8 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/ruby_project_spec.rb +24 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/runner_spec.rb +47 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/shared_example_group_spec.rb +152 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/subject_spec.rb +78 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/world_spec.rb +174 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core_spec.rb +31 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/ruby_forker.rb +13 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/spec_helper.rb +70 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/support/matchers.rb +44 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/specs.watchr +58 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/.document +5 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/.gitignore +10 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/Gemfile +21 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/History.markdown +54 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/License.txt +22 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/README.markdown +33 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/Rakefile +70 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/Upgrade.markdown +53 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/cucumber.yml +3 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/README.markdown +18 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/expectations/attribute_of_subject.feature +19 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/expectations/customized_message.feature +54 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/expectations/diffing.feature +85 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/expectations/implicit_docstrings.feature +52 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/access_running_example.feature +53 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/be_within.feature +43 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/define_diffable_matcher.feature +27 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/define_matcher.feature +311 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/define_matcher_outside_rspec.feature +38 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/define_matcher_with_fluent_interface.feature +24 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/equality.feature +142 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/exist.feature +44 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/expect_change.feature +65 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/expect_error.feature +44 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/have.feature +103 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/include.feature +136 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/operators.feature +280 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/predicates.feature +128 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/respond_to.feature +78 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/satisfy.feature +31 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/throw_symbol.feature +85 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/types.feature +114 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/step_definitions/additional_cli_steps.rb +13 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/support/env.rb +1 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/test_frameworks/test_unit.feature +46 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/backward_compatibility.rb +16 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/deprecation.rb +36 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/differ.rb +62 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/errors.rb +12 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/extensions/array.rb +7 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/extensions/kernel.rb +52 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/extensions.rb +2 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/fail_with.rb +51 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/handler.rb +50 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/version.rb +7 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations.rb +39 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/be.rb +222 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/be_close.rb +17 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/be_instance_of.rb +26 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/be_kind_of.rb +26 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/be_within.rb +40 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/block_aliases.rb +18 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/change.rb +184 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/compatibility.rb +14 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/dsl.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/eq.rb +50 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/eql.rb +45 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/equal.rb +53 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/errors.rb +5 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/exist.rb +16 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/extensions/instance_exec.rb +31 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/generated_descriptions.rb +36 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/has.rb +35 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/have.rb +151 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/include.rb +51 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/match.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/match_array.rb +71 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/matcher.rb +161 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/method_missing.rb +9 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/operator_matcher.rb +87 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/pretty.rb +37 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/raise_error.rb +130 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/respond_to.rb +85 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/satisfy.rb +51 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/throw_symbol.rb +121 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers.rb +196 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec-expectations.rb +1 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/rspec-expectations.gemspec +27 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/expectations/differ_spec.rb +96 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/expectations/extensions/kernel_spec.rb +45 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/expectations/fail_with_spec.rb +70 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/expectations/handler_spec.rb +206 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/be_close_spec.rb +22 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/be_instance_of_spec.rb +36 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/be_kind_of_spec.rb +33 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/be_spec.rb +456 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/be_within_spec.rb +64 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/change_spec.rb +409 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/compatibility_spec.rb +28 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/description_generation_spec.rb +160 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/dsl_spec.rb +25 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/eq_spec.rb +38 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/eql_spec.rb +37 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/equal_spec.rb +57 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/exist_spec.rb +65 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/has_spec.rb +81 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/have_spec.rb +411 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/include_spec.rb +341 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/match_array_spec.rb +111 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/match_spec.rb +57 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/matcher_spec.rb +374 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/matchers_spec.rb +51 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/operator_matcher_spec.rb +215 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/raise_error_spec.rb +339 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/respond_to_spec.rb +292 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/satisfy_spec.rb +40 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/throw_symbol_spec.rb +113 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/spec_helper.rb +66 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/suite.rb +1 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/support/classes.rb +45 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/specs.watchr +57 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/Rakefile +20 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/Readme.md +48 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/VERSION +1 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/lib/rspec/instafail/rspec_1.rb +27 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/lib/rspec/instafail/rspec_2.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/lib/rspec/instafail.rb +9 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/rspec-instafail.gemspec +51 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/spec/instafail_spec.rb +77 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/spec/rspec_1/Gemfile +2 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/spec/rspec_1/Gemfile.lock +10 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/spec/rspec_1/a_test.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/spec/rspec_2/Gemfile +2 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/spec/rspec_2/Gemfile.lock +20 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/spec/rspec_2/a_test.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/.autotest +7 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/.document +5 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/.gitignore +10 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/Gemfile +18 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/History.markdown +33 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/License.txt +22 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/README.markdown +49 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/Rakefile +70 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/autotest/discover.rb +1 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/cucumber.yml +2 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/README.markdown +30 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/message_expectations/block_local_expectations.feature.pending +55 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/message_expectations/expect_message.feature +94 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/message_expectations/warn_when_expectation_is_set_on_nil.feature +50 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/outside_rspec/configuration.feature +82 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/stubs/simple_return_value.feature +55 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/stubs/stub_chain.feature +44 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/stubs/stub_implementation.feature +26 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/support/env.rb +2 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/argument_expectation.rb +48 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/argument_matchers.rb +233 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/error_generator.rb +97 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/errors.rb +10 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/extensions/instance_exec.rb +31 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/extensions/marshal.rb +25 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/extensions/object.rb +3 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/framework.rb +17 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/message_expectation.rb +341 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/method_double.rb +165 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/methods.rb +100 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/mock.rb +79 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/order_group.rb +29 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/proxy.rb +157 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/serialization.rb +26 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/space.rb +28 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/spec_methods.rb +53 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/version.rb +7 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks.rb +196 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/spec/mocks.rb +2 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/rspec-mocks.gemspec +25 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/and_yield_spec.rb +114 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/any_number_of_times_spec.rb +36 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/argument_expectation_spec.rb +23 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/at_least_spec.rb +97 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/at_most_spec.rb +93 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/block_return_value_spec.rb +45 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_10260_spec.rb +8 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_10263_spec.rb +27 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_11545_spec.rb +32 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_496_spec.rb +17 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_600_spec.rb +22 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_7611_spec.rb +18 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_7805_spec.rb +22 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_8165_spec.rb +31 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_8302_spec.rb +26 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_830_spec.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_957_spec.rb +22 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/double_spec.rb +12 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/failing_argument_matchers_spec.rb +96 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/hash_including_matcher_spec.rb +90 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/hash_not_including_matcher_spec.rb +67 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/mock_ordering_spec.rb +94 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/mock_space_spec.rb +54 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/mock_spec.rb +661 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/multiple_return_value_spec.rb +133 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/nil_expectation_warning_spec.rb +63 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/null_object_mock_spec.rb +73 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/once_counts_spec.rb +53 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/options_hash_spec.rb +35 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/partial_mock_spec.rb +155 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/partial_mock_using_mocks_directly_spec.rb +94 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/passing_argument_matchers_spec.rb +145 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/precise_counts_spec.rb +52 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/record_messages_spec.rb +26 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/serialization_spec.rb +67 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/stash_spec.rb +27 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/stub_chain_spec.rb +114 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/stub_implementation_spec.rb +68 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/stub_spec.rb +232 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/stubbed_message_expectations_spec.rb +26 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/twice_counts_spec.rb +67 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks_spec.rb +51 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/spec_helper.rb +52 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/specs.watchr +57 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/.require_paths +2 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/AUTHORS +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/CHANGES +349 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/ChangeLog +5926 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/LICENSE +23 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/README +114 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/Rakefile +311 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/VERSION +3 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/bin/rdebug +416 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/command.rb +267 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/breakpoints.rb +155 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/catchpoint.rb +55 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/condition.rb +49 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/continue.rb +38 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/control.rb +107 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/disassemble.RB +38 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/display.rb +120 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/edit.rb +48 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/enable.rb +202 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/eval.rb +179 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/finish.rb +42 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/frame.rb +302 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/help.rb +61 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/info.rb +472 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/irb.rb +193 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/kill.rb +50 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/list.rb +94 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/method.rb +84 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/quit.rb +44 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/raise.RB +41 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/reload.rb +40 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/save.rb +90 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/set.rb +237 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/show.rb +251 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/source.RB +44 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/stepping.rb +81 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/threads.rb +189 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/tmate.rb +36 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/trace.rb +57 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/variables.rb +199 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/debugger.rb +5 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/helper.rb +74 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/interface.rb +260 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/processor.rb +556 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug.rb +179 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/doc/rdebug.1 +241 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/rdbg.rb +33 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/runner.sh +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/base/base.rb +74 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/base/binding.rb +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/base/catchpoint.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/base/load.rb +40 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/base/reload_bug.rb +8 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/bp_loop_issue.rb +3 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/brkpt-class-bug.rb +8 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/classes.rb +11 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/cli/commands/catchpoint_test.rb +36 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/cli/commands/unit/regexp.rb +42 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/config.yaml +8 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/annotate.cmd +29 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/annotate.right +139 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/break_bad.cmd +18 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/break_bad.right +28 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/break_loop_bug.cmd +5 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/break_loop_bug.right +15 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/breakpoints.cmd +38 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/breakpoints.right +98 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/brkpt-class-bug.cmd +9 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/brkpt-class-bug.right +18 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/catch.cmd +17 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/catch.right +39 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/condition.cmd +29 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/condition.right +67 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/ctrl.cmd +23 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/ctrl.right +69 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/display.cmd +24 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/display.right +44 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/dollar-0.right +2 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/dollar-0a.right +2 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/dollar-0b.right +2 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/edit.cmd +12 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/edit.right +19 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/emacs_basic.cmd +43 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/emacs_basic.right +106 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/enable.cmd +20 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/enable.right +36 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/except-bug1.cmd +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/except-bug1.right +13 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/file-with-space.cmd +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/file-with-space.right +9 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/finish.cmd +16 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/finish.right +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/frame.cmd +32 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/frame.right +66 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/help.cmd +20 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/help.right +21 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/history.right +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info-thread.cmd +13 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info-thread.right +37 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info-var-bug2.cmd +5 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info-var-bug2.right +10 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info-var.cmd +23 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info-var.right +52 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info.cmd +22 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info.right +84 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/linetrace.cmd +6 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/linetrace.right +32 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/linetracep.cmd +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/linetracep.right +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/list.cmd +19 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/list.right +127 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/method.cmd +10 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/method.right +21 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/methodsig.cmd +10 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/methodsig.right +20 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/noquit.right +1 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/output.cmd +6 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/output.right +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/pm-bug.cmd +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/pm-bug.right +12 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/post-mortem-next.cmd +8 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/post-mortem-next.right +14 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/post-mortem-osx.right +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/post-mortem.cmd +13 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/post-mortem.right +32 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/quit.cmd +6 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/quit.right +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/raise.cmd +11 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/raise.right +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/save.cmd +33 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/save.right +59 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/setshow.cmd +46 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/setshow.right +80 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/source.cmd +5 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/source.right +15 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/stepping.cmd +21 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/stepping.right +50 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/test-init-cygwin.right +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/test-init-osx.right +4 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/test-init.right +5 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/trace.right +23 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/dollar-0.rb +5 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/except-bug1.rb +4 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/except-bug2.rb +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/file with space.rb +1 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/gcd-dbg-nox.rb +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/gcd-dbg.rb +30 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/gcd.rb +18 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/helper.rb +149 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/info-var-bug.rb +47 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/info-var-bug2.rb +2 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/null.rb +1 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/output.rb +2 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/pm-base.rb +22 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/pm-bug.rb +3 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/pm.rb +11 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/raise.rb +3 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/rdebug-save.1 +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/scope-test.rb +8 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/tdebug.rb +252 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-annotate.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-break-bad.rb +36 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-breakpoints.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-brkpt-class-bug.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-catch.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-condition.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-ctrl.rb +55 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-display.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-dollar-0.rb +45 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-edit.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-emacs-basic.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-enable.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-except-bug1.rb +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-file-with-space.rb +30 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-finish.rb +34 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-frame.rb +34 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-help.rb +60 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-hist.rb +68 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-info-thread.rb +32 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-info-var.rb +47 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-info.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-init.rb +49 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-list.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-method.rb +34 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-output.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-pm.rb +59 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-quit.rb +30 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-raise.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-save.rb +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-setshow.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-source.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-stepping.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-trace.rb +63 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/thread1.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/trunc-call.rb +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/tvar.rb +3 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/AUTHORS +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/CHANGES +349 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/LICENSE +23 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/README +114 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/Rakefile +311 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/VERSION +3 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/Makefile +157 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/breakpoint.c +582 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/breakpoint.o +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/extconf.rb +20 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/ruby_debug.bundle +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/ruby_debug.c +2326 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/ruby_debug.h +123 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/ruby_debug.o +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/win32/Makefile +157 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/win32/breakpoint.o +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/win32/ruby_debug.o +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/win32/ruby_debug.so +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/lib/ChangeLog +1162 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/lib/ruby-debug-base.rb +301 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/lib/ruby_debug.bundle +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/test/base/base.rb +74 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/test/base/binding.rb +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/test/base/catchpoint.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/test/base/reload_bug.rb +8 -0
- data/bundler/ruby/1.8/gems/ruby-progressbar-0.0.9/GPL_LICENSE +340 -0
- data/bundler/ruby/1.8/gems/ruby-progressbar-0.0.9/README.md +91 -0
- data/bundler/ruby/1.8/gems/ruby-progressbar-0.0.9/RUBY_LICENSE +53 -0
- data/bundler/ruby/1.8/gems/ruby-progressbar-0.0.9/lib/progressbar.rb +237 -0
- data/bundler/ruby/1.8/gems/ruby-progressbar-0.0.9/test.rb +116 -0
- data/bundler/ruby/1.8/specifications/RubyInline-3.8.6.gemspec +52 -0
- data/bundler/ruby/1.8/specifications/ZenTest-4.4.0.gemspec +59 -0
- data/bundler/ruby/1.8/specifications/columnize-0.3.2.gemspec +48 -0
- data/bundler/ruby/1.8/specifications/curb-0.7.8.gemspec +32 -0
- data/bundler/ruby/1.8/specifications/curl-multi-0.2.gemspec +39 -0
- data/bundler/ruby/1.8/specifications/diff-lcs-1.1.2.gemspec +34 -0
- data/bundler/ruby/1.8/specifications/fakefs-0.2.1.gemspec +30 -0
- data/bundler/ruby/1.8/specifications/fuubar-0.0.2.gemspec +38 -0
- data/bundler/ruby/1.8/specifications/linecache-0.43.gemspec +33 -0
- data/bundler/ruby/1.8/specifications/rr-1.0.2.gemspec +31 -0
- data/bundler/ruby/1.8/specifications/rspec-2.1.0.gemspec +39 -0
- data/bundler/ruby/1.8/specifications/rspec-core-2.1.0.gemspec +44 -0
- data/bundler/ruby/1.8/specifications/rspec-expectations-2.1.0.gemspec +34 -0
- data/bundler/ruby/1.8/specifications/rspec-instafail-0.1.4.gemspec +28 -0
- data/bundler/ruby/1.8/specifications/rspec-mocks-2.1.0.gemspec +31 -0
- data/bundler/ruby/1.8/specifications/ruby-debug-0.10.4.gemspec +39 -0
- data/bundler/ruby/1.8/specifications/ruby-debug-base-0.10.4.gemspec +39 -0
- data/bundler/ruby/1.8/specifications/ruby-progressbar-0.0.9.gemspec +27 -0
- data/lib/vim-jar/cli.rb +94 -0
- data/lib/vim-jar/config.rb +59 -0
- data/lib/vim-jar/importer/github.rb +18 -0
- data/lib/vim-jar/importer.rb +51 -0
- data/lib/vim-jar/installer/base.rb +9 -0
- data/lib/vim-jar/installer/git.rb +19 -0
- data/lib/vim-jar/installer.rb +7 -0
- data/lib/vim-jar/plugin/git.rb +32 -0
- data/lib/vim-jar/plugin.rb +65 -0
- data/lib/vim-jar/plugins.yml +2673 -0
- data/lib/vim-jar/version.rb +5 -0
- data/lib/vim-jar.rb +24 -0
- data/script/github_crawler.rb +76 -0
- data/spec/spec_helper.rb +21 -0
- data/spec/vim-jar/config_spec.rb +70 -0
- data/spec/vim-jar/importer/github_spec.rb +12 -0
- data/spec/vim-jar/importer/pages/vim-rails-github.html +975 -0
- data/spec/vim-jar/importer_spec.rb +58 -0
- data/spec/vim-jar/plugin_spec.rb +39 -0
- data/spec/vim-jar/plugin_ymls/blank.yml +6 -0
- data/spec/vim-jar/plugin_ymls/rails-vim.yml +7 -0
- data/spec/vim-jar_test.rb +17 -0
- data/vim-jar.gemspec +28 -0
- metadata +1185 -0
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
## rspec-core release history (incomplete)
|
|
2
|
+
|
|
3
|
+
### 2.1.0 / 2010-11-07
|
|
4
|
+
|
|
5
|
+
[full changelog](http://github.com/rspec/rspec-core/compare/v2.0.1...v2.1.0)
|
|
6
|
+
|
|
7
|
+
* Enhancments
|
|
8
|
+
* Add skip_bundler option to rake task to tell rake task to ignore the
|
|
9
|
+
presence of a Gemfile (jfelchner)
|
|
10
|
+
* Add gemfile option to rake task to tell rake task what Gemfile to look
|
|
11
|
+
for (defaults to 'Gemfile')
|
|
12
|
+
* Allow passing caller trace into Metadata to support extensions (Glenn
|
|
13
|
+
Vanderburg)
|
|
14
|
+
* Add deprecation warning for Spec::Runner.configure to aid upgrade from
|
|
15
|
+
RSpec-1
|
|
16
|
+
* Add deprecated Spec::Rake::SpecTask to aid upgrade from RSpec-1
|
|
17
|
+
* Add 'autospec' command with helpful message to aid upgrade from RSpec-1
|
|
18
|
+
* Add support for filtering with tags on CLI (Lailson Bandeira)
|
|
19
|
+
* Add a helpful message about RUBYOPT when require fails in bin/rspec
|
|
20
|
+
(slyphon)
|
|
21
|
+
* Add "-Ilib" to the default rcov options (Tianyi Cui)
|
|
22
|
+
* Make the expectation framework configurable (default rspec, of course)
|
|
23
|
+
(Justin Ko)
|
|
24
|
+
* Add 'pending' to be conditional (Myron Marston)
|
|
25
|
+
* Add explicit support for :if and :unless as metadata keys for conditional run
|
|
26
|
+
of examples (Myron Marston)
|
|
27
|
+
* Add --fail-fast command line option (Jeff Kreeftmeijer)
|
|
28
|
+
|
|
29
|
+
* Bug fixes
|
|
30
|
+
* Eliminate stack overflow with "subject { self }"
|
|
31
|
+
* Require 'rspec/core' in the Raketask (ensures it required when running rcov)
|
|
32
|
+
|
|
33
|
+
### 2.0.1 / 2010-10-18
|
|
34
|
+
|
|
35
|
+
[full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0...v2.0.1)
|
|
36
|
+
|
|
37
|
+
* Bug fixes
|
|
38
|
+
* Restore color when using spork + autotest
|
|
39
|
+
* Pending examples without docstrings render the correct message (Josep M. Bach)
|
|
40
|
+
* Fixed bug where a failure in a spec file ending in anything but _spec.rb would
|
|
41
|
+
fail in a confusing way.
|
|
42
|
+
* Support backtrace lines from erb templates in html formatter (Alex Crichton)
|
|
43
|
+
|
|
44
|
+
### 2.0.0 / 2010-10-10
|
|
45
|
+
|
|
46
|
+
[full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.rc...v2.0.0)
|
|
47
|
+
|
|
48
|
+
* RSpec-1 compatibility
|
|
49
|
+
* Rake task uses ENV["SPEC"] as file list if present
|
|
50
|
+
|
|
51
|
+
* Bug fixes
|
|
52
|
+
* Bug Fix: optparse --out foo.txt (Leonardo Bessa)
|
|
53
|
+
* Suppress color codes for non-tty output (except autotest)
|
|
54
|
+
|
|
55
|
+
### 2.0.0.rc / 2010-10-05
|
|
56
|
+
|
|
57
|
+
[full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.22...v2.0.0.rc)
|
|
58
|
+
|
|
59
|
+
* Enhancements
|
|
60
|
+
* implicitly require unknown formatters so you don't have to require the
|
|
61
|
+
file explicitly on the commmand line (Michael Grosser)
|
|
62
|
+
* add --out/-o option to assign output target
|
|
63
|
+
* added fail_fast configuration option to abort on first failure
|
|
64
|
+
* support a Hash subject (its([:key]) { should == value }) (Josep M. Bach)
|
|
65
|
+
|
|
66
|
+
* Bug fixes
|
|
67
|
+
* Explicitly require rspec version to fix broken rdoc task (Hans de Graaff)
|
|
68
|
+
* Ignore backtrace lines that come from other languages, like Java or
|
|
69
|
+
Javascript (Charles Lowell)
|
|
70
|
+
* Rake task now does what is expected when setting (or not setting)
|
|
71
|
+
fail_on_error and verbose
|
|
72
|
+
* Fix bug in which before/after(:all) hooks were running on excluded nested
|
|
73
|
+
groups (Myron Marston)
|
|
74
|
+
* Fix before(:all) error handling so that it fails examples in nested groups,
|
|
75
|
+
too (Myron Marston)
|
|
76
|
+
|
|
77
|
+
### 2.0.0.beta.22 / 2010-09-12
|
|
78
|
+
|
|
79
|
+
[full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.20...v2.0.0.beta.22)
|
|
80
|
+
|
|
81
|
+
* Enhancements
|
|
82
|
+
* removed at_exit hook
|
|
83
|
+
* CTRL-C stops the run (almost) immediately
|
|
84
|
+
* first it cleans things up by running the appropriate after(:all) and after(:suite) hooks
|
|
85
|
+
* then it reports on any examples that have already run
|
|
86
|
+
* cleaned up rake task
|
|
87
|
+
* generate correct task under variety of conditions
|
|
88
|
+
* options are more consistent
|
|
89
|
+
* deprecated redundant options
|
|
90
|
+
* run 'bundle exec autotest' when Gemfile is present
|
|
91
|
+
* support ERB in .rspec options files (Justin Ko)
|
|
92
|
+
* depend on bundler for development tasks (Myron Marston)
|
|
93
|
+
* add example_group_finished to formatters and reporter (Roman Chernyatchik)
|
|
94
|
+
|
|
95
|
+
* Bug fixes
|
|
96
|
+
* support paths with spaces when using autotest (Andreas Neuhaus)
|
|
97
|
+
* fix module_exec with ruby 1.8.6 (Myron Marston)
|
|
98
|
+
* remove context method from top-level
|
|
99
|
+
* was conflicting with irb, for example
|
|
100
|
+
* errors in before(:all) are now reported correctly (Chad Humphries)
|
|
101
|
+
|
|
102
|
+
* Removals
|
|
103
|
+
* removed -o --options-file command line option
|
|
104
|
+
* use ./.rspec and ~/.rspec
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
(The MIT License)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2009 David Chelimsky, Chad Humphries
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
20
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
21
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
22
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
# RSpec Core
|
|
2
|
+
|
|
3
|
+
Behaviour Driven Development for Ruby
|
|
4
|
+
|
|
5
|
+
## Documentation
|
|
6
|
+
|
|
7
|
+
* [Cucumber features](http://relishapp.com/rspec/rspec-core/v/2-0)
|
|
8
|
+
* [RDoc](http://rubydoc.info/gems/rspec-core/2.0.1/frames)
|
|
9
|
+
|
|
10
|
+
## Install
|
|
11
|
+
|
|
12
|
+
gem install rspec # for rspec-core, rspec-expectations, rspec-mocks
|
|
13
|
+
gem install rspec-core # for rspec-core only
|
|
14
|
+
|
|
15
|
+
## Upgrading from rspec-1.x
|
|
16
|
+
|
|
17
|
+
See [Upgrade.markdown](http://github.com/rspec/rspec-core/blob/master/Upgrade.markdown)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
This will install the rspec, rspec-core, rspec-expectations and rspec-mocks
|
|
21
|
+
gems.
|
|
22
|
+
|
|
23
|
+
## Get Started
|
|
24
|
+
|
|
25
|
+
Start with a simple example of behavior you expect from your system. Do
|
|
26
|
+
this before you write any implementation code:
|
|
27
|
+
|
|
28
|
+
# in spec/calculator_spec.rb
|
|
29
|
+
describe Calculator, "add" do
|
|
30
|
+
it "returns the sum of its arguments" do
|
|
31
|
+
Calculator.new.add(1, 2).should eq(3)
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
Run this with the rspec command, and watch it fail:
|
|
36
|
+
|
|
37
|
+
$ rspec spec/calculator_spec.rb
|
|
38
|
+
./spec/calculator_spec.rb:1: uninitialized constant Calculator
|
|
39
|
+
|
|
40
|
+
Implement the simplest solution:
|
|
41
|
+
|
|
42
|
+
# in lib/calculator.rb
|
|
43
|
+
class Calculator
|
|
44
|
+
def add(a,b)
|
|
45
|
+
a + b
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
Be sure to require the implementation file in the spec:
|
|
50
|
+
|
|
51
|
+
# in spec/calculator_spec.rb
|
|
52
|
+
# - RSpec adds ./lib to the $LOAD_PATH, so you can
|
|
53
|
+
# just require "calculator" directly
|
|
54
|
+
require "calculator"
|
|
55
|
+
|
|
56
|
+
Now run the spec again, and watch it pass:
|
|
57
|
+
|
|
58
|
+
$ rspec spec/calculator_spec.rb
|
|
59
|
+
.
|
|
60
|
+
|
|
61
|
+
Finished in 0.000315 seconds
|
|
62
|
+
1 example, 0 failures
|
|
63
|
+
|
|
64
|
+
Use the documentation formatter to see the resulting spec:
|
|
65
|
+
|
|
66
|
+
$ rspec spec/calculator_spec.rb --format doc
|
|
67
|
+
Calculator add
|
|
68
|
+
returns the sum of its arguments
|
|
69
|
+
|
|
70
|
+
Finished in 0.000379 seconds
|
|
71
|
+
1 example, 0 failures
|
|
72
|
+
|
|
73
|
+
## Known issues
|
|
74
|
+
|
|
75
|
+
See [http://github.com/rspec/rspec-core/issues](http://github.com/rspec/rspec-core/issues)
|
|
76
|
+
|
|
77
|
+
## Learn more
|
|
78
|
+
|
|
79
|
+
While not comprehensive yet, you can learn quite a lot from the Cucumber
|
|
80
|
+
features in the [features
|
|
81
|
+
directory](http://github.com/rspec/rspec-core/tree/master/features/). If there
|
|
82
|
+
is a feature that is not documented there, or you find them insufficient to
|
|
83
|
+
understand how to use a feature, please submit issues to
|
|
84
|
+
[http://github.com/rspec/rspec-core/issues](http://github.com/rspec/rspec-core/issues).
|
|
85
|
+
|
|
86
|
+
## Contribute
|
|
87
|
+
|
|
88
|
+
See [http://github.com/rspec/rspec-dev](http://github.com/rspec/rspec-dev)
|
|
89
|
+
|
|
90
|
+
## Also see
|
|
91
|
+
|
|
92
|
+
* [http://github.com/rspec/rspec](http://github.com/rspec/rspec)
|
|
93
|
+
* [http://github.com/rspec/rspec-expectations](http://github.com/rspec/rspec-expectations)
|
|
94
|
+
* [http://github.com/rspec/rspec-mocks](http://github.com/rspec/rspec-mocks)
|
|
95
|
+
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
require "bundler"
|
|
2
|
+
Bundler.setup
|
|
3
|
+
Bundler::GemHelper.install_tasks
|
|
4
|
+
|
|
5
|
+
require "rake"
|
|
6
|
+
require "yaml"
|
|
7
|
+
|
|
8
|
+
require "rake/rdoctask"
|
|
9
|
+
require "rspec/core/rake_task"
|
|
10
|
+
require "rspec/core/version"
|
|
11
|
+
require "cucumber/rake/task"
|
|
12
|
+
|
|
13
|
+
class Cucumber::Rake::Task::ForkedCucumberRunner
|
|
14
|
+
# When cucumber shells out, we still need it to run in the context of our
|
|
15
|
+
# bundle.
|
|
16
|
+
def run
|
|
17
|
+
sh "bundle exec #{RUBY} " + args.join(" ")
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
desc "Run all examples"
|
|
22
|
+
RSpec::Core::RakeTask.new(:spec) do |t|
|
|
23
|
+
t.rspec_path = 'bin/rspec'
|
|
24
|
+
t.rspec_opts = %w[--color]
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
Cucumber::Rake::Task.new(:cucumber)
|
|
28
|
+
|
|
29
|
+
namespace :rcov do
|
|
30
|
+
task :cleanup do
|
|
31
|
+
rm_rf 'coverage.data'
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
RSpec::Core::RakeTask.new :spec do |t|
|
|
35
|
+
t.rcov = true
|
|
36
|
+
t.rcov_opts = %[-Ilib -Ispec --exclude "gems/*,features"]
|
|
37
|
+
t.rcov_opts << %[--no-html --aggregate coverage.data]
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
Cucumber::Rake::Task.new :cucumber do |t|
|
|
41
|
+
t.cucumber_opts = %w{--format progress}
|
|
42
|
+
t.rcov = true
|
|
43
|
+
t.rcov_opts = %[-Ilib -Ispec --exclude "gems/*,features"]
|
|
44
|
+
t.rcov_opts << %[--text-report --sort coverage --aggregate coverage.data]
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
task :rcov => ["rcov:cleanup", "rcov:spec", "rcov:cucumber"]
|
|
50
|
+
|
|
51
|
+
task :default => [:spec, :cucumber]
|
|
52
|
+
|
|
53
|
+
task :clobber do
|
|
54
|
+
rm_rf 'pkg'
|
|
55
|
+
rm_rf 'tmp'
|
|
56
|
+
rm_rf 'coverage'
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
desc "Push cukes to relishapp using the relish-client-gem"
|
|
60
|
+
task :relish, :version do |t, args|
|
|
61
|
+
raise "rake relish[VERSION]" unless args[:version]
|
|
62
|
+
sh "relish push --organization rspec --project rspec-core -v #{args[:version]}"
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
Rake::RDocTask.new do |rdoc|
|
|
66
|
+
rdoc.rdoc_dir = 'rdoc'
|
|
67
|
+
rdoc.title = "rspec-core #{RSpec::Core::Version::STRING}"
|
|
68
|
+
rdoc.rdoc_files.include('README*')
|
|
69
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
70
|
+
end
|
|
71
|
+
|
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
# New features in rspec-core-2.1
|
|
2
|
+
|
|
3
|
+
## Command line
|
|
4
|
+
|
|
5
|
+
### `--tags`
|
|
6
|
+
|
|
7
|
+
Now you can tag groups and examples using metadata and access those tags from
|
|
8
|
+
the command line. So if you have a group with `:foo => true`:
|
|
9
|
+
|
|
10
|
+
describe "something", :foo => true do
|
|
11
|
+
it "does something" do
|
|
12
|
+
# ...
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
... now you can run just that group like this:
|
|
17
|
+
|
|
18
|
+
rspec spec --tags foo
|
|
19
|
+
|
|
20
|
+
### `--fail-fast`
|
|
21
|
+
|
|
22
|
+
Add this flag to the command line to tell rspec to clean up and exit after the
|
|
23
|
+
first failure:
|
|
24
|
+
|
|
25
|
+
rspec spec --fail-fast
|
|
26
|
+
|
|
27
|
+
## Metata/filtering
|
|
28
|
+
|
|
29
|
+
### :if and :unless keys
|
|
30
|
+
|
|
31
|
+
Use :if and :unless keys to conditionally run examples with simple boolean
|
|
32
|
+
expressions:
|
|
33
|
+
|
|
34
|
+
describe "something" do
|
|
35
|
+
it "does something", :if => RUBY_VERSION == 1.8.6 do
|
|
36
|
+
# ...
|
|
37
|
+
end
|
|
38
|
+
it "does something", :unless => RUBY_VERSION == 1.8.6 do
|
|
39
|
+
# ...
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
## Conditionally 'pending' examples
|
|
44
|
+
|
|
45
|
+
Make examples pending based on a condition. This is most useful when you
|
|
46
|
+
have an example that runs in multiple contexts and fails in one of those due to
|
|
47
|
+
a bug in a third-party dependency that you expect to be fixed in the future.
|
|
48
|
+
|
|
49
|
+
describe "something" do
|
|
50
|
+
it "does something that doesn't yet work right on JRuby" do
|
|
51
|
+
pending("waiting for the JRuby team to fix issue XYZ", :if => RUBY_PLATFORM == 'java') do
|
|
52
|
+
# the content of your spec
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
This example would run normally on all ruby interpretters except JRuby. On JRuby,
|
|
58
|
+
it uses the block form of `pending`, which causes the example to still be run and
|
|
59
|
+
will remain pending as long as it fails. In the future, if you upgraded your
|
|
60
|
+
JRuby installation to a newer release that allows the example to pass, RSpec
|
|
61
|
+
will report it as a failure (`Expected pending '...' to fail. No Error was raised.`),
|
|
62
|
+
so that know that you can remove the call to `pending`.
|
|
63
|
+
|
|
64
|
+
# New features in rspec-core-2.0
|
|
65
|
+
|
|
66
|
+
### Runner
|
|
67
|
+
|
|
68
|
+
The new runner for rspec-2 comes from Micronaut.
|
|
69
|
+
|
|
70
|
+
### Metadata!
|
|
71
|
+
|
|
72
|
+
In rspec-2, every example and example group comes with metadata information
|
|
73
|
+
like the file and line number on which it was declared, the arguments passed to
|
|
74
|
+
`describe` and `it`, etc. This metadata can be appended to through a hash
|
|
75
|
+
argument passed to `describe` or `it`, allowing us to pre and post-process
|
|
76
|
+
each example in a variety of ways.
|
|
77
|
+
|
|
78
|
+
### Filtering
|
|
79
|
+
|
|
80
|
+
The most obvious use is for filtering the run. For example:
|
|
81
|
+
|
|
82
|
+
# in spec/spec_helper.rb
|
|
83
|
+
RSpec.configure do |c|
|
|
84
|
+
c.filter_run :focus => true
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
# in any spec file
|
|
88
|
+
describe "something" do
|
|
89
|
+
it "does something", :focus => true do
|
|
90
|
+
# ....
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
When you run the `rspec` command, rspec will run only the examples that have
|
|
95
|
+
`:focus => true` in the hash.
|
|
96
|
+
|
|
97
|
+
You can also add `run_all_when_everything_filtered` to the config:
|
|
98
|
+
|
|
99
|
+
RSpec.configure do |c|
|
|
100
|
+
c.filter_run :focus => true
|
|
101
|
+
c.run_all_when_everything_filtered = true
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
Now if there are no examples tagged with `:focus => true`, all examples
|
|
105
|
+
will be run. This makes it really easy to focus on one example for a
|
|
106
|
+
while, but then go back to running all of the examples by removing that
|
|
107
|
+
argument from `it`. Works with `describe` too, in which case it runs
|
|
108
|
+
all of the examples in that group.
|
|
109
|
+
|
|
110
|
+
The configuration will accept a lambda, which provides a lot of flexibility
|
|
111
|
+
in filtering examples. Say, for example, you have a spec for functionality that
|
|
112
|
+
behaves slightly differently in Ruby 1.8 and Ruby 1.9. We have that in
|
|
113
|
+
rspec-core, and here's how we're getting the right stuff to run under the
|
|
114
|
+
right version:
|
|
115
|
+
|
|
116
|
+
# in spec/spec_helper.rb
|
|
117
|
+
RSpec.configure do |c|
|
|
118
|
+
c.exclusion_filter = { :ruby => lambda {|version|
|
|
119
|
+
!(RUBY_VERSION.to_s =~ /^#{version.to_s}/)
|
|
120
|
+
}}
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
# in any spec file
|
|
124
|
+
describe "something" do
|
|
125
|
+
it "does something", :ruby => 1.8 do
|
|
126
|
+
# ....
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
it "does something", :ruby => 1.9 do
|
|
130
|
+
# ....
|
|
131
|
+
end
|
|
132
|
+
end
|
|
133
|
+
|
|
134
|
+
In this case, we're using `exclusion_filter` instead of `filter_run` or
|
|
135
|
+
`filter`, which indicate _inclusion_ filters. So each of those examples is
|
|
136
|
+
excluded if we're _not_ running the version of Ruby they work with.
|
|
137
|
+
|
|
138
|
+
### Shared example groups
|
|
139
|
+
|
|
140
|
+
Shared example groups are now run in a nested group within the including group
|
|
141
|
+
(they used to be run in the same group). Nested groups inherit `before`, `after`,
|
|
142
|
+
`around`, and `let` hooks, as well as any methods that are defined in the parent
|
|
143
|
+
group.
|
|
144
|
+
|
|
145
|
+
This new approach provides better encapsulation, better output, and an
|
|
146
|
+
opportunity to add contextual information to the shared group via a block
|
|
147
|
+
passed to `it_should_behave_like`.
|
|
148
|
+
|
|
149
|
+
See [features/example\_groups/shared\_example\_group.feature](http://github.com/rspec/rspec-core/blob/master/features/example_groups/shared_example_group.feature) for more information.
|
|
150
|
+
|
|
151
|
+
NOTICE: The including example groups no longer have access to any of the
|
|
152
|
+
methods, hooks, or state defined inside a shared group. This will break specs
|
|
153
|
+
that were using shared example groups to extend the behavior of including
|
|
154
|
+
groups in any way besides their intended purpose: to add examples to a group.
|
|
155
|
+
|
|
156
|
+
# Upgrading from rspec-1.x
|
|
157
|
+
|
|
158
|
+
### rspec command
|
|
159
|
+
|
|
160
|
+
The command to run specs is now `rspec` instead of `spec`.
|
|
161
|
+
|
|
162
|
+
rspec ./spec
|
|
163
|
+
|
|
164
|
+
#### Co-habitation of rspec-1 and rspec-2
|
|
165
|
+
|
|
166
|
+
Early beta versions of RSpec-2 included a `spec` command, which conflicted with
|
|
167
|
+
the RSpec-1 `spec` command because RSpec-1's was installed by the rspec gem,
|
|
168
|
+
while RSpec-2's is installed by the rspec-core gem.
|
|
169
|
+
|
|
170
|
+
If you installed one of these early versions, the safest bet is to uninstall
|
|
171
|
+
rspec-1 and rspec-core-2, and then reinstall both. After you do this, you will
|
|
172
|
+
be able to run rspec-2 like this:
|
|
173
|
+
|
|
174
|
+
rspec ./spec
|
|
175
|
+
|
|
176
|
+
... and rspec-1 like this:
|
|
177
|
+
|
|
178
|
+
spec _1.3.1_ ./spec
|
|
179
|
+
|
|
180
|
+
Rubygems inspects the first argument to any gem executable to see if it's
|
|
181
|
+
formatted like a version number surrounded by underscores. If so, it uses that
|
|
182
|
+
version (e.g. `1.3.1`). If not, it uses the most recent version (e.g.
|
|
183
|
+
`2.0.0`).
|
|
184
|
+
|
|
185
|
+
### rake task
|
|
186
|
+
|
|
187
|
+
A few things changed in the Rake task used to run specs:
|
|
188
|
+
|
|
189
|
+
1. The file in which it is defined changed from `spec/rake/spectask` to
|
|
190
|
+
`rspec/core/rake_task`
|
|
191
|
+
|
|
192
|
+
2. The `spec_opts` accessor has been deprecated in favor of `rspec_opts`. Also,
|
|
193
|
+
the `rspec` command no longer supports the `--options` command line option
|
|
194
|
+
so the options must be embedded directly in the Rakefile, or stored in the
|
|
195
|
+
`.rspec` files mentioned above.
|
|
196
|
+
|
|
197
|
+
3. In RSpec-1, the rake task would read in rcov options from an `rcov.opts`
|
|
198
|
+
file. This is ignored by RSpec-2. RCov options are now set directly on the Rake
|
|
199
|
+
task:
|
|
200
|
+
|
|
201
|
+
RSpec::Core::RakeTask.new(:rcov) do |t|
|
|
202
|
+
t.rcov_opts = %q[--exclude "spec"]
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
3. The `spec_files` accessor has been replaced by `pattern`.
|
|
206
|
+
|
|
207
|
+
# rspec-1
|
|
208
|
+
require 'spec/rake/spectask'
|
|
209
|
+
|
|
210
|
+
Spec::Rake::SpecTask.new do |t|
|
|
211
|
+
t.spec_opts = ['--options', "\"spec/spec.opts\""]
|
|
212
|
+
t.spec_files = FileList['spec/**/*.rb']
|
|
213
|
+
end
|
|
214
|
+
|
|
215
|
+
# rspec-2
|
|
216
|
+
require 'rspec/core/rake_task'
|
|
217
|
+
|
|
218
|
+
RSpec::Core::RakeTask.new do |t|
|
|
219
|
+
t.rspec_opts = ["-c", "-f progress", "-r ./spec/spec_helper.rb"]
|
|
220
|
+
t.pattern = 'spec/**/*_spec.rb'
|
|
221
|
+
end
|
|
222
|
+
|
|
223
|
+
### autotest
|
|
224
|
+
|
|
225
|
+
RSpec-2 works with autotest as follows:
|
|
226
|
+
|
|
227
|
+
rspec --configure autotest
|
|
228
|
+
|
|
229
|
+
This adds `./autotest/discover.rb` with:
|
|
230
|
+
|
|
231
|
+
Autotest.add_discovery { "rspec2" }
|
|
232
|
+
|
|
233
|
+
Now, on the command line just type:
|
|
234
|
+
|
|
235
|
+
autotest
|
|
236
|
+
|
|
237
|
+
Or, if you're using bundler:
|
|
238
|
+
|
|
239
|
+
bundle exec autotest
|
|
240
|
+
|
|
241
|
+
The `autospec` command is a thing of the past.
|
|
242
|
+
|
|
243
|
+
### RSpec is the new Spec
|
|
244
|
+
|
|
245
|
+
The root namespace (top level module) is now `RSpec` instead of `Spec`, and
|
|
246
|
+
the root directory under `lib` within all of the `rspec` gems is `rspec` instead of `spec`.
|
|
247
|
+
|
|
248
|
+
### Configuration
|
|
249
|
+
|
|
250
|
+
Typically in `spec/spec_helper.rb`, configuration is now done like this:
|
|
251
|
+
|
|
252
|
+
RSpec.configure do |c|
|
|
253
|
+
# ....
|
|
254
|
+
end
|
|
255
|
+
|
|
256
|
+
### .rspec
|
|
257
|
+
|
|
258
|
+
Command line options can be persisted in a `.rspec` file in a project. You
|
|
259
|
+
can also store a `.rspec` file in your home directory (`~/.rspec`) with global
|
|
260
|
+
options. Precedence is:
|
|
261
|
+
|
|
262
|
+
command line
|
|
263
|
+
./.rspec
|
|
264
|
+
~/.rspec
|
|
265
|
+
|
|
266
|
+
### `context` is no longer a top-level method
|
|
267
|
+
|
|
268
|
+
We removed `context` from the main object because it was creating conflicts with
|
|
269
|
+
IRB and some users who had `Context` domain objects. `describe` is still there,
|
|
270
|
+
so if you want to use `context` at the top level, just alias it:
|
|
271
|
+
|
|
272
|
+
alias :context :describe
|
|
273
|
+
|
|
274
|
+
Of course, you can still use `context` to declare a nested group:
|
|
275
|
+
|
|
276
|
+
describe "something" do
|
|
277
|
+
context "in some context" do
|
|
278
|
+
it "does something" do
|
|
279
|
+
# ...
|
|
280
|
+
end
|
|
281
|
+
end
|
|
282
|
+
end
|
|
283
|
+
|
|
284
|
+
### `$KCODE` no longer set implicitly to `'u'`
|
|
285
|
+
|
|
286
|
+
In RSpec-1, the runner set `$KCODE` to `'u'`, which impacts, among other
|
|
287
|
+
things, the behaviour of Regular Expressions when applied to non-ascii
|
|
288
|
+
characters. This is no longer the case in RSpec-2.
|
|
289
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
require 'rspec/core/deprecation'
|
|
3
|
+
RSpec.warn_deprecation <<-WARNING
|
|
4
|
+
************************************************************
|
|
5
|
+
REMOVAL NOTICE: you are using behaviour that has been
|
|
6
|
+
removed from rspec-2.
|
|
7
|
+
|
|
8
|
+
* The 'autospec' command is no longer supported.
|
|
9
|
+
* Please use 'autotest' insted.
|
|
10
|
+
|
|
11
|
+
This message will be removed from a future version of rspec.
|
|
12
|
+
************************************************************
|
|
13
|
+
WARNING
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
begin
|
|
4
|
+
require 'rspec/autorun'
|
|
5
|
+
rescue LoadError
|
|
6
|
+
$stderr.puts <<-EOS
|
|
7
|
+
#{'*'*50}
|
|
8
|
+
Could not find 'rspec/autorun'
|
|
9
|
+
|
|
10
|
+
This may happen if you're using rubygems as your package manager, but it is not
|
|
11
|
+
being required through some mechanism before executing the rspec command.
|
|
12
|
+
|
|
13
|
+
You may need to do one of the following in your shell:
|
|
14
|
+
|
|
15
|
+
# for bash/zsh
|
|
16
|
+
export RUBYOPT=rubygems
|
|
17
|
+
|
|
18
|
+
# for csh, etc.
|
|
19
|
+
set RUBYOPT=rubygems
|
|
20
|
+
|
|
21
|
+
For background, please see http://gist.github.com/54177.
|
|
22
|
+
#{'*'*50}
|
|
23
|
+
EOS
|
|
24
|
+
exit(1)
|
|
25
|
+
end
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
rspec-core provides the structure for RSpec code examples:
|
|
2
|
+
|
|
3
|
+
describe Account do
|
|
4
|
+
it "has a balance of zero when first opened" do
|
|
5
|
+
# example code goes here - for more on the
|
|
6
|
+
# code inside the examples, see rspec-expectations
|
|
7
|
+
# and rspec-mocks
|
|
8
|
+
end
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
## Issues
|
|
12
|
+
|
|
13
|
+
The documentation for rspec-core is a work in progress. We'll be adding
|
|
14
|
+
Cucumber features over time, and clarifying existing ones. If you have
|
|
15
|
+
specific features you'd like to see added, find the existing documentation
|
|
16
|
+
incomplete or confusing, or, better yet, wish to write a missing Cucumber
|
|
17
|
+
feature yourself, please [submit an
|
|
18
|
+
issue](http://github.com/rspec/rspec-core/issues) or a [pull
|
|
19
|
+
request](http://github.com/rspec/rspec-core).
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Feature: configure
|
|
2
|
+
|
|
3
|
+
Use the --configure option on the command line to generate configuration
|
|
4
|
+
files.
|
|
5
|
+
|
|
6
|
+
The only supported argument, so far, is "autotest", which creates an
|
|
7
|
+
autotest/discover.rb file in your project root directory.
|
|
8
|
+
|
|
9
|
+
Background:
|
|
10
|
+
Given a directory named "rspec_project"
|
|
11
|
+
|
|
12
|
+
Scenario: generate autotest directory and discover file
|
|
13
|
+
When I cd to "rspec_project"
|
|
14
|
+
And I run "rspec --configure autotest"
|
|
15
|
+
Then the following directories should exist:
|
|
16
|
+
| autotest |
|
|
17
|
+
And the following files should exist:
|
|
18
|
+
| autotest/discover.rb |
|
|
19
|
+
And the file "autotest/discover.rb" should contain "Autotest.add_discovery"
|
|
20
|
+
And the stdout should contain "autotest/discover.rb has been added"
|