pkgsrc/devel/ZenTest/PLIST

49 lines
1.5 KiB
Text
Raw Normal View History

Update ruby-ZenTest package to 4.5.0. === 4.5.0 / 2011-02-18 * 6 minor enhancements: * Added autotest -w flag to turn on warnings. Turned off warnings by default. * Added autotest/preload.rb to deal with rails being egregiously slow. * Added child process handling/cleanup on signals. * Added postinitialize hook. * Improved restart mechanism to include all flags. * Refactored restart plugin to Autotest#restart. * 5 bug fixes: * Added sigquit handler to restart app straight up. * Fixed autotest/isolate so it works * Fixed parse_options to take args array (default ARGV) and to be non-destructive. * Strip ascii color to avoid false positives. (graemeworthy) * Use RbConfig to remove warning === 4.4.2 / 2010-12-10 * 2 bug fixes: * Added a temporary hack to deal with rspec(2?) discovery hacks. * Fixed windoze detection for unit_diff (thyresias) === 4.4.1 / 2010-12-01 * 12 minor enhancements: * Merged in most things from the autotest gem: * Added --no-full-after-failed. (grosser) * Added --rc path-to-dot-autotest. (grosser) * Added --style autotest-style. (grosser) * Added clarification comments. (grosser) * Added rake task descriptions. (grosser) * Switched to optparse. (grosser) * Switched windoze detection. (grosser, tenderlove) * Did not merge test parallelization. It should be a plugin. Awaiting patch. * Added autotest/bundler plugin. * Added autotest/isolate plugin. * Added capture of skips (for minitest) from result line. * Added focus_re to focus.rb. * Added latest_results hash. * Cleaned up unit_diff matcher by using any? * Enhanced the help/usage for autotest and zentest. (hugh sasse) * Refactored autotest runner discovery. * Refactored ruby_cmd to allow plugins to affect ruby execution. * Removed befuddling override of Dir.[] from 2007. *shrug* * Removed deny method in favor of aliasing refute. * 2 bug fixes: * 1.9 shadowed variable fix * autotest/restart now passes ARGV back through to exec. yay!
2011-03-23 16:53:34 +01:00
@comment $NetBSD: PLIST,v 1.8 2011/03/23 15:53:34 taca Exp $
bin/autotest
bin/multigem
bin/multiruby
Update ZenTest package to 3.10.0. === 3.10.0 / 2008-06-17 * 1 major enhancement: * Added multiruby_setup to help manage multiruby installed versions. * 3 minor enhancements: * Added autotest/once plugin to help plugin developers. * Heavily refactored multiruby. * Switched rubinius from shotgun/rubinius to bin/rbx, finally. * 2 bug fixes: * Refactored zentest_mapping test to avoid zentest altogether. * zentest tests bail gracefully for rubinius. === 3.9.3 / 2008-06-09 * 12 minor enhancements: * Added $RUBY env support to autotest so you can swap what ruby to run. * Added ALL_HOOKS array to autotest for hook devs. * Added EXCLUDED_VERSIONS to multiruby. Integrated with hoe. * Added miniunit compatibility to unit_diff's output. * Multiruby now determines the latest versions 1.8/1.9 automatically. * Removed deprecated :run hook. * Fixed zentest_assertions to be compatible with miniunit. Will phase out. * Minor autotest plugin cleanup / fixes. * Moved assert_callback to test/rails/test_case.rb * Reversed assert_includes' arguments. * Updated requirements info for other ruby impls. * util_capture now returns strings, not iostrings. * 1 bug fixes: * (add|remove)_(mappings|exceptions) now all return nil to help fix autotest hooks. === 3.9.2 / 2008-03-20 * 4 minor enhancements: * Added compatibility with miniunit differences. * Added email_notify, jabber_notify, and rcov autotest plugins. * Updated rakefile to include examples automatically in example_dot_autotest. * multiruby now outputs each command so you can grab it easily. * 5 bug fixes: * Ensure tests are run after reset. * Fixed all test/rails tests to run in any combo. * Fixed up growl.rb a bit... still buggy (growlnotify, not growl.rb). * Fixes for -f (fast start) and last_mtime in general. * Fixes for 1.9 and rubinius
2008-06-22 17:54:37 +02:00
bin/multiruby_setup
bin/unit_diff
bin/zentest
Update devel/ZenTest to 4.4.0. * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. * Update HOMEPAGE. * Add LICENSE. * Remove default value of GEM_BUILD. * Add CONFLICTS since it will install the same name commands both ruby18 and ruby19 based packages. === 4.4.0 / 2010-09-01 * 1 major enhancement: * Removed git building. I'm dropping direct support for rubinius. * 3 minor enhancements: * Added multiruby mri:list:x.y.z command so you can see what's available. * Enabled installing specific patch versions of ruby. * multiruby rubygems:update now forces a build to be less confusing. * 1 bug fix: * Removed redundant test_to_normal, now in zentest_mappings === 4.3.3 / 2010-06-17 * 2 minor enhancements: * Added options and removed pattern from Autotest::RCov * update_rubygems now deletes cached rubygems installs === 4.3.2 / 2010-06-02 * 1 minor enhancement: * Removed support for rbx builds. * 2 bug fixes: * Removed 'preview' from version filter so I can test with 1.9.2 * Put PATH tweaks at front of PATH === 4.3.1 / 2010-03-30 * 1 bug fix: * Fixed autotest output on 1.8. That's what I get for not having tests for dots. === 4.3.0 / 2010-03-27 * 1 minor enhancement: * Added gemcutter rubyforge and hoe to the_usual setup * 4 bug fixes: * 1.9 compat: don't use putc anymore. (fistfvck (hah!)) * Added note that included articles are out of date * Fixed rcov plugin so multiple all_good hooks can coexist * Fixed typo in doco === 4.2.1 / 2009-12-09 * 1 minor enhancement: * Added GEM_HOME/GEM_PATH setting to multiruby. * 1 bug fix: * Fixed multiruby refactoring bug from previous release. === 4.2.0 / 2009-12-08 * 3 minor enhancements: * Added 'multiruby -1 $version' for easier execution (idea from flori) * Set up and tear down PATH in multiruby (luis) * died hook now gets passed the exception (amikula) * 3 bug fixes: * Deal with windoze getc returning nil (undees) * Fix unit_diff for multiline miniunit results. * Fix warning for 1.8.8+
2010-09-10 07:00:50 +02:00
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/.autotest
Update ruby-ZenTest package to 4.5.0. === 4.5.0 / 2011-02-18 * 6 minor enhancements: * Added autotest -w flag to turn on warnings. Turned off warnings by default. * Added autotest/preload.rb to deal with rails being egregiously slow. * Added child process handling/cleanup on signals. * Added postinitialize hook. * Improved restart mechanism to include all flags. * Refactored restart plugin to Autotest#restart. * 5 bug fixes: * Added sigquit handler to restart app straight up. * Fixed autotest/isolate so it works * Fixed parse_options to take args array (default ARGV) and to be non-destructive. * Strip ascii color to avoid false positives. (graemeworthy) * Use RbConfig to remove warning === 4.4.2 / 2010-12-10 * 2 bug fixes: * Added a temporary hack to deal with rspec(2?) discovery hacks. * Fixed windoze detection for unit_diff (thyresias) === 4.4.1 / 2010-12-01 * 12 minor enhancements: * Merged in most things from the autotest gem: * Added --no-full-after-failed. (grosser) * Added --rc path-to-dot-autotest. (grosser) * Added --style autotest-style. (grosser) * Added clarification comments. (grosser) * Added rake task descriptions. (grosser) * Switched to optparse. (grosser) * Switched windoze detection. (grosser, tenderlove) * Did not merge test parallelization. It should be a plugin. Awaiting patch. * Added autotest/bundler plugin. * Added autotest/isolate plugin. * Added capture of skips (for minitest) from result line. * Added focus_re to focus.rb. * Added latest_results hash. * Cleaned up unit_diff matcher by using any? * Enhanced the help/usage for autotest and zentest. (hugh sasse) * Refactored autotest runner discovery. * Refactored ruby_cmd to allow plugins to affect ruby execution. * Removed befuddling override of Dir.[] from 2007. *shrug* * Removed deny method in favor of aliasing refute. * 2 bug fixes: * 1.9 shadowed variable fix * autotest/restart now passes ARGV back through to exec. yay!
2011-03-23 16:53:34 +01:00
${GEM_LIBDIR}/.gemtest
${GEM_LIBDIR}/History.txt
${GEM_LIBDIR}/Manifest.txt
${GEM_LIBDIR}/README.txt
${GEM_LIBDIR}/Rakefile
${GEM_LIBDIR}/articles/Article.css
${GEM_LIBDIR}/articles/getting_started_with_autotest.html
${GEM_LIBDIR}/articles/how_to_use_zentest.txt
${GEM_LIBDIR}/bin/autotest
${GEM_LIBDIR}/bin/multigem
${GEM_LIBDIR}/bin/multiruby
Update ZenTest package to 3.10.0. === 3.10.0 / 2008-06-17 * 1 major enhancement: * Added multiruby_setup to help manage multiruby installed versions. * 3 minor enhancements: * Added autotest/once plugin to help plugin developers. * Heavily refactored multiruby. * Switched rubinius from shotgun/rubinius to bin/rbx, finally. * 2 bug fixes: * Refactored zentest_mapping test to avoid zentest altogether. * zentest tests bail gracefully for rubinius. === 3.9.3 / 2008-06-09 * 12 minor enhancements: * Added $RUBY env support to autotest so you can swap what ruby to run. * Added ALL_HOOKS array to autotest for hook devs. * Added EXCLUDED_VERSIONS to multiruby. Integrated with hoe. * Added miniunit compatibility to unit_diff's output. * Multiruby now determines the latest versions 1.8/1.9 automatically. * Removed deprecated :run hook. * Fixed zentest_assertions to be compatible with miniunit. Will phase out. * Minor autotest plugin cleanup / fixes. * Moved assert_callback to test/rails/test_case.rb * Reversed assert_includes' arguments. * Updated requirements info for other ruby impls. * util_capture now returns strings, not iostrings. * 1 bug fixes: * (add|remove)_(mappings|exceptions) now all return nil to help fix autotest hooks. === 3.9.2 / 2008-03-20 * 4 minor enhancements: * Added compatibility with miniunit differences. * Added email_notify, jabber_notify, and rcov autotest plugins. * Updated rakefile to include examples automatically in example_dot_autotest. * multiruby now outputs each command so you can grab it easily. * 5 bug fixes: * Ensure tests are run after reset. * Fixed all test/rails tests to run in any combo. * Fixed up growl.rb a bit... still buggy (growlnotify, not growl.rb). * Fixes for -f (fast start) and last_mtime in general. * Fixes for 1.9 and rubinius
2008-06-22 17:54:37 +02:00
${GEM_LIBDIR}/bin/multiruby_setup
${GEM_LIBDIR}/bin/unit_diff
${GEM_LIBDIR}/bin/zentest
${GEM_LIBDIR}/example.txt
${GEM_LIBDIR}/example1.rb
${GEM_LIBDIR}/example2.rb
${GEM_LIBDIR}/example_dot_autotest.rb
${GEM_LIBDIR}/lib/autotest.rb
${GEM_LIBDIR}/lib/autotest/autoupdate.rb
Update ruby-ZenTest package to 4.5.0. === 4.5.0 / 2011-02-18 * 6 minor enhancements: * Added autotest -w flag to turn on warnings. Turned off warnings by default. * Added autotest/preload.rb to deal with rails being egregiously slow. * Added child process handling/cleanup on signals. * Added postinitialize hook. * Improved restart mechanism to include all flags. * Refactored restart plugin to Autotest#restart. * 5 bug fixes: * Added sigquit handler to restart app straight up. * Fixed autotest/isolate so it works * Fixed parse_options to take args array (default ARGV) and to be non-destructive. * Strip ascii color to avoid false positives. (graemeworthy) * Use RbConfig to remove warning === 4.4.2 / 2010-12-10 * 2 bug fixes: * Added a temporary hack to deal with rspec(2?) discovery hacks. * Fixed windoze detection for unit_diff (thyresias) === 4.4.1 / 2010-12-01 * 12 minor enhancements: * Merged in most things from the autotest gem: * Added --no-full-after-failed. (grosser) * Added --rc path-to-dot-autotest. (grosser) * Added --style autotest-style. (grosser) * Added clarification comments. (grosser) * Added rake task descriptions. (grosser) * Switched to optparse. (grosser) * Switched windoze detection. (grosser, tenderlove) * Did not merge test parallelization. It should be a plugin. Awaiting patch. * Added autotest/bundler plugin. * Added autotest/isolate plugin. * Added capture of skips (for minitest) from result line. * Added focus_re to focus.rb. * Added latest_results hash. * Cleaned up unit_diff matcher by using any? * Enhanced the help/usage for autotest and zentest. (hugh sasse) * Refactored autotest runner discovery. * Refactored ruby_cmd to allow plugins to affect ruby execution. * Removed befuddling override of Dir.[] from 2007. *shrug* * Removed deny method in favor of aliasing refute. * 2 bug fixes: * 1.9 shadowed variable fix * autotest/restart now passes ARGV back through to exec. yay!
2011-03-23 16:53:34 +01:00
${GEM_LIBDIR}/lib/autotest/bundler.rb
${GEM_LIBDIR}/lib/autotest/isolate.rb
Update ZenTest package to 3.10.0. === 3.10.0 / 2008-06-17 * 1 major enhancement: * Added multiruby_setup to help manage multiruby installed versions. * 3 minor enhancements: * Added autotest/once plugin to help plugin developers. * Heavily refactored multiruby. * Switched rubinius from shotgun/rubinius to bin/rbx, finally. * 2 bug fixes: * Refactored zentest_mapping test to avoid zentest altogether. * zentest tests bail gracefully for rubinius. === 3.9.3 / 2008-06-09 * 12 minor enhancements: * Added $RUBY env support to autotest so you can swap what ruby to run. * Added ALL_HOOKS array to autotest for hook devs. * Added EXCLUDED_VERSIONS to multiruby. Integrated with hoe. * Added miniunit compatibility to unit_diff's output. * Multiruby now determines the latest versions 1.8/1.9 automatically. * Removed deprecated :run hook. * Fixed zentest_assertions to be compatible with miniunit. Will phase out. * Minor autotest plugin cleanup / fixes. * Moved assert_callback to test/rails/test_case.rb * Reversed assert_includes' arguments. * Updated requirements info for other ruby impls. * util_capture now returns strings, not iostrings. * 1 bug fixes: * (add|remove)_(mappings|exceptions) now all return nil to help fix autotest hooks. === 3.9.2 / 2008-03-20 * 4 minor enhancements: * Added compatibility with miniunit differences. * Added email_notify, jabber_notify, and rcov autotest plugins. * Updated rakefile to include examples automatically in example_dot_autotest. * multiruby now outputs each command so you can grab it easily. * 5 bug fixes: * Ensure tests are run after reset. * Fixed all test/rails tests to run in any combo. * Fixed up growl.rb a bit... still buggy (growlnotify, not growl.rb). * Fixes for -f (fast start) and last_mtime in general. * Fixes for 1.9 and rubinius
2008-06-22 17:54:37 +02:00
${GEM_LIBDIR}/lib/autotest/once.rb
Update ruby-ZenTest package to 4.5.0. === 4.5.0 / 2011-02-18 * 6 minor enhancements: * Added autotest -w flag to turn on warnings. Turned off warnings by default. * Added autotest/preload.rb to deal with rails being egregiously slow. * Added child process handling/cleanup on signals. * Added postinitialize hook. * Improved restart mechanism to include all flags. * Refactored restart plugin to Autotest#restart. * 5 bug fixes: * Added sigquit handler to restart app straight up. * Fixed autotest/isolate so it works * Fixed parse_options to take args array (default ARGV) and to be non-destructive. * Strip ascii color to avoid false positives. (graemeworthy) * Use RbConfig to remove warning === 4.4.2 / 2010-12-10 * 2 bug fixes: * Added a temporary hack to deal with rspec(2?) discovery hacks. * Fixed windoze detection for unit_diff (thyresias) === 4.4.1 / 2010-12-01 * 12 minor enhancements: * Merged in most things from the autotest gem: * Added --no-full-after-failed. (grosser) * Added --rc path-to-dot-autotest. (grosser) * Added --style autotest-style. (grosser) * Added clarification comments. (grosser) * Added rake task descriptions. (grosser) * Switched to optparse. (grosser) * Switched windoze detection. (grosser, tenderlove) * Did not merge test parallelization. It should be a plugin. Awaiting patch. * Added autotest/bundler plugin. * Added autotest/isolate plugin. * Added capture of skips (for minitest) from result line. * Added focus_re to focus.rb. * Added latest_results hash. * Cleaned up unit_diff matcher by using any? * Enhanced the help/usage for autotest and zentest. (hugh sasse) * Refactored autotest runner discovery. * Refactored ruby_cmd to allow plugins to affect ruby execution. * Removed befuddling override of Dir.[] from 2007. *shrug* * Removed deny method in favor of aliasing refute. * 2 bug fixes: * 1.9 shadowed variable fix * autotest/restart now passes ARGV back through to exec. yay!
2011-03-23 16:53:34 +01:00
${GEM_LIBDIR}/lib/autotest/preload.rb
${GEM_LIBDIR}/lib/autotest/rcov.rb
${GEM_LIBDIR}/lib/autotest/restart.rb
${GEM_LIBDIR}/lib/autotest/timestamp.rb
${GEM_LIBDIR}/lib/focus.rb
${GEM_LIBDIR}/lib/functional_test_matrix.rb
Update ZenTest package to 3.10.0. === 3.10.0 / 2008-06-17 * 1 major enhancement: * Added multiruby_setup to help manage multiruby installed versions. * 3 minor enhancements: * Added autotest/once plugin to help plugin developers. * Heavily refactored multiruby. * Switched rubinius from shotgun/rubinius to bin/rbx, finally. * 2 bug fixes: * Refactored zentest_mapping test to avoid zentest altogether. * zentest tests bail gracefully for rubinius. === 3.9.3 / 2008-06-09 * 12 minor enhancements: * Added $RUBY env support to autotest so you can swap what ruby to run. * Added ALL_HOOKS array to autotest for hook devs. * Added EXCLUDED_VERSIONS to multiruby. Integrated with hoe. * Added miniunit compatibility to unit_diff's output. * Multiruby now determines the latest versions 1.8/1.9 automatically. * Removed deprecated :run hook. * Fixed zentest_assertions to be compatible with miniunit. Will phase out. * Minor autotest plugin cleanup / fixes. * Moved assert_callback to test/rails/test_case.rb * Reversed assert_includes' arguments. * Updated requirements info for other ruby impls. * util_capture now returns strings, not iostrings. * 1 bug fixes: * (add|remove)_(mappings|exceptions) now all return nil to help fix autotest hooks. === 3.9.2 / 2008-03-20 * 4 minor enhancements: * Added compatibility with miniunit differences. * Added email_notify, jabber_notify, and rcov autotest plugins. * Updated rakefile to include examples automatically in example_dot_autotest. * multiruby now outputs each command so you can grab it easily. * 5 bug fixes: * Ensure tests are run after reset. * Fixed all test/rails tests to run in any combo. * Fixed up growl.rb a bit... still buggy (growlnotify, not growl.rb). * Fixes for -f (fast start) and last_mtime in general. * Fixes for 1.9 and rubinius
2008-06-22 17:54:37 +02:00
${GEM_LIBDIR}/lib/multiruby.rb
${GEM_LIBDIR}/lib/unit_diff.rb
${GEM_LIBDIR}/lib/zentest.rb
${GEM_LIBDIR}/lib/zentest_mapping.rb
${GEM_LIBDIR}/test/test_autotest.rb
${GEM_LIBDIR}/test/test_focus.rb
${GEM_LIBDIR}/test/test_unit_diff.rb
${GEM_LIBDIR}/test/test_zentest.rb
${GEM_LIBDIR}/test/test_zentest_mapping.rb
Update devel/ZenTest to 4.4.0. * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. * Update HOMEPAGE. * Add LICENSE. * Remove default value of GEM_BUILD. * Add CONFLICTS since it will install the same name commands both ruby18 and ruby19 based packages. === 4.4.0 / 2010-09-01 * 1 major enhancement: * Removed git building. I'm dropping direct support for rubinius. * 3 minor enhancements: * Added multiruby mri:list:x.y.z command so you can see what's available. * Enabled installing specific patch versions of ruby. * multiruby rubygems:update now forces a build to be less confusing. * 1 bug fix: * Removed redundant test_to_normal, now in zentest_mappings === 4.3.3 / 2010-06-17 * 2 minor enhancements: * Added options and removed pattern from Autotest::RCov * update_rubygems now deletes cached rubygems installs === 4.3.2 / 2010-06-02 * 1 minor enhancement: * Removed support for rbx builds. * 2 bug fixes: * Removed 'preview' from version filter so I can test with 1.9.2 * Put PATH tweaks at front of PATH === 4.3.1 / 2010-03-30 * 1 bug fix: * Fixed autotest output on 1.8. That's what I get for not having tests for dots. === 4.3.0 / 2010-03-27 * 1 minor enhancement: * Added gemcutter rubyforge and hoe to the_usual setup * 4 bug fixes: * 1.9 compat: don't use putc anymore. (fistfvck (hah!)) * Added note that included articles are out of date * Fixed rcov plugin so multiple all_good hooks can coexist * Fixed typo in doco === 4.2.1 / 2009-12-09 * 1 minor enhancement: * Added GEM_HOME/GEM_PATH setting to multiruby. * 1 bug fix: * Fixed multiruby refactoring bug from previous release. === 4.2.0 / 2009-12-08 * 3 minor enhancements: * Added 'multiruby -1 $version' for easier execution (idea from flori) * Set up and tear down PATH in multiruby (luis) * died hook now gets passed the exception (amikula) * 3 bug fixes: * Deal with windoze getc returning nil (undees) * Fix unit_diff for multiline miniunit results. * Fix warning for 1.8.8+
2010-09-10 07:00:50 +02:00
${GEM_HOME}/specifications/${GEM_NAME}.gemspec