pkgsrc/devel/ruby-debug/PLIST

199 lines
7.2 KiB
Text
Raw Normal View History

@comment $NetBSD: PLIST,v 1.8 2011/11/08 15:37:33 taca Exp $
bin/rdebug
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/AUTHORS
${GEM_LIBDIR}/CHANGES
${GEM_LIBDIR}/ChangeLog
${GEM_LIBDIR}/LICENSE
${GEM_LIBDIR}/README
${GEM_LIBDIR}/Rakefile
${GEM_LIBDIR}/VERSION
${GEM_LIBDIR}/bin/rdebug
${GEM_LIBDIR}/cli/ruby-debug.rb
${GEM_LIBDIR}/cli/ruby-debug/command.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/breakpoints.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/catchpoint.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/cli/ruby-debug/commands/condition.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/continue.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/control.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/display.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/cli/ruby-debug/commands/edit.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/enable.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/eval.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/cli/ruby-debug/commands/finish.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/frame.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/help.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/info.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/irb.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/kill.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/list.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/method.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/cli/ruby-debug/commands/quit.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/raise.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/cli/ruby-debug/commands/reload.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/save.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/set.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/show.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/cli/ruby-debug/commands/source.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/stepping.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/threads.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/tmate.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/trace.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/variables.rb
${GEM_LIBDIR}/cli/ruby-debug/debugger.rb
${GEM_LIBDIR}/cli/ruby-debug/helper.rb
${GEM_LIBDIR}/cli/ruby-debug/interface.rb
${GEM_LIBDIR}/cli/ruby-debug/processor.rb
${GEM_LIBDIR}/doc/rdebug.1
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/rdbg.rb
${GEM_LIBDIR}/runner.sh
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/base/base.rb
${GEM_LIBDIR}/test/base/binding.rb
${GEM_LIBDIR}/test/base/catchpoint.rb
${GEM_LIBDIR}/test/base/load.rb
${GEM_LIBDIR}/test/base/reload_bug.rb
${GEM_LIBDIR}/test/bp_loop_issue.rb
${GEM_LIBDIR}/test/brkpt-class-bug.rb
${GEM_LIBDIR}/test/classes.rb
${GEM_LIBDIR}/test/cli/commands/catchpoint_test.rb
${GEM_LIBDIR}/test/cli/commands/unit/regexp.rb
${GEM_LIBDIR}/test/config.yaml
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/data/annotate.cmd
${GEM_LIBDIR}/test/data/annotate.right
${GEM_LIBDIR}/test/data/break_bad.cmd
${GEM_LIBDIR}/test/data/break_bad.right
${GEM_LIBDIR}/test/data/break_loop_bug.cmd
${GEM_LIBDIR}/test/data/break_loop_bug.right
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/data/breakpoints.cmd
${GEM_LIBDIR}/test/data/breakpoints.right
${GEM_LIBDIR}/test/data/brkpt-class-bug.cmd
${GEM_LIBDIR}/test/data/brkpt-class-bug.right
${GEM_LIBDIR}/test/data/catch.cmd
${GEM_LIBDIR}/test/data/catch.right
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/data/condition.cmd
${GEM_LIBDIR}/test/data/condition.right
${GEM_LIBDIR}/test/data/ctrl.cmd
${GEM_LIBDIR}/test/data/ctrl.right
${GEM_LIBDIR}/test/data/display.cmd
${GEM_LIBDIR}/test/data/display.right
${GEM_LIBDIR}/test/data/dollar-0.right
${GEM_LIBDIR}/test/data/dollar-0a.right
${GEM_LIBDIR}/test/data/dollar-0b.right
${GEM_LIBDIR}/test/data/edit.cmd
${GEM_LIBDIR}/test/data/edit.right
${GEM_LIBDIR}/test/data/emacs_basic.cmd
${GEM_LIBDIR}/test/data/emacs_basic.right
${GEM_LIBDIR}/test/data/enable.cmd
${GEM_LIBDIR}/test/data/enable.right
${GEM_LIBDIR}/test/data/except-bug1.cmd
${GEM_LIBDIR}/test/data/except-bug1.right
${GEM_LIBDIR}/test/data/file-with-space.cmd
${GEM_LIBDIR}/test/data/file-with-space.right
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/data/finish.cmd
${GEM_LIBDIR}/test/data/finish.right
${GEM_LIBDIR}/test/data/frame.cmd
${GEM_LIBDIR}/test/data/frame.right
${GEM_LIBDIR}/test/data/help.cmd
${GEM_LIBDIR}/test/data/help.right
${GEM_LIBDIR}/test/data/history.right
${GEM_LIBDIR}/test/data/info-thread.cmd
${GEM_LIBDIR}/test/data/info-thread.right
${GEM_LIBDIR}/test/data/info-var-bug2.cmd
${GEM_LIBDIR}/test/data/info-var-bug2.right
${GEM_LIBDIR}/test/data/info-var.cmd
${GEM_LIBDIR}/test/data/info-var.right
${GEM_LIBDIR}/test/data/info.cmd
${GEM_LIBDIR}/test/data/info.right
${GEM_LIBDIR}/test/data/linetrace.cmd
${GEM_LIBDIR}/test/data/linetrace.right
${GEM_LIBDIR}/test/data/linetracep.cmd
${GEM_LIBDIR}/test/data/linetracep.right
${GEM_LIBDIR}/test/data/list.cmd
${GEM_LIBDIR}/test/data/list.right
${GEM_LIBDIR}/test/data/method.cmd
${GEM_LIBDIR}/test/data/method.right
${GEM_LIBDIR}/test/data/methodsig.cmd
${GEM_LIBDIR}/test/data/methodsig.right
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/data/noquit.right
${GEM_LIBDIR}/test/data/output.cmd
${GEM_LIBDIR}/test/data/output.right
${GEM_LIBDIR}/test/data/pm-bug.cmd
${GEM_LIBDIR}/test/data/pm-bug.right
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/data/post-mortem-next.cmd
${GEM_LIBDIR}/test/data/post-mortem-next.right
${GEM_LIBDIR}/test/data/post-mortem-osx.right
${GEM_LIBDIR}/test/data/post-mortem.cmd
${GEM_LIBDIR}/test/data/post-mortem.right
${GEM_LIBDIR}/test/data/quit.cmd
${GEM_LIBDIR}/test/data/quit.right
${GEM_LIBDIR}/test/data/raise.cmd
${GEM_LIBDIR}/test/data/raise.right
${GEM_LIBDIR}/test/data/save.cmd
${GEM_LIBDIR}/test/data/save.right
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/data/setshow.cmd
${GEM_LIBDIR}/test/data/setshow.right
${GEM_LIBDIR}/test/data/source.cmd
${GEM_LIBDIR}/test/data/source.right
${GEM_LIBDIR}/test/data/stepping.cmd
${GEM_LIBDIR}/test/data/stepping.right
${GEM_LIBDIR}/test/data/test-init-cygwin.right
${GEM_LIBDIR}/test/data/test-init-osx.right
${GEM_LIBDIR}/test/data/test-init.right
${GEM_LIBDIR}/test/data/trace.right
${GEM_LIBDIR}/test/dollar-0.rb
${GEM_LIBDIR}/test/except-bug1.rb
${GEM_LIBDIR}/test/except-bug2.rb
${GEM_LIBDIR}/test/file with space.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/gcd-dbg-nox.rb
${GEM_LIBDIR}/test/gcd-dbg.rb
${GEM_LIBDIR}/test/gcd.rb
${GEM_LIBDIR}/test/helper.rb
${GEM_LIBDIR}/test/info-var-bug.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/info-var-bug2.rb
${GEM_LIBDIR}/test/null.rb
${GEM_LIBDIR}/test/output.rb
${GEM_LIBDIR}/test/pm-base.rb
${GEM_LIBDIR}/test/pm-bug.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/pm.rb
${GEM_LIBDIR}/test/raise.rb
${GEM_LIBDIR}/test/rdebug-save.1
${GEM_LIBDIR}/test/scope-test.rb
${GEM_LIBDIR}/test/tdebug.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/test-annotate.rb
${GEM_LIBDIR}/test/test-break-bad.rb
${GEM_LIBDIR}/test/test-breakpoints.rb
${GEM_LIBDIR}/test/test-brkpt-class-bug.rb
${GEM_LIBDIR}/test/test-catch.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/test-condition.rb
${GEM_LIBDIR}/test/test-ctrl.rb
${GEM_LIBDIR}/test/test-display.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/test-dollar-0.rb
${GEM_LIBDIR}/test/test-edit.rb
${GEM_LIBDIR}/test/test-emacs-basic.rb
${GEM_LIBDIR}/test/test-enable.rb
${GEM_LIBDIR}/test/test-except-bug1.rb
${GEM_LIBDIR}/test/test-file-with-space.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/test-finish.rb
${GEM_LIBDIR}/test/test-frame.rb
${GEM_LIBDIR}/test/test-help.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/test-hist.rb
${GEM_LIBDIR}/test/test-info-thread.rb
${GEM_LIBDIR}/test/test-info-var.rb
${GEM_LIBDIR}/test/test-info.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/test-init.rb
${GEM_LIBDIR}/test/test-list.rb
${GEM_LIBDIR}/test/test-method.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/test-output.rb
${GEM_LIBDIR}/test/test-pm.rb
${GEM_LIBDIR}/test/test-quit.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/test-raise.rb
${GEM_LIBDIR}/test/test-save.rb
${GEM_LIBDIR}/test/test-setshow.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/test-source.rb
${GEM_LIBDIR}/test/test-stepping.rb
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
2008-04-14 23:33:04 +02:00
${GEM_LIBDIR}/test/test-trace.rb
${GEM_LIBDIR}/test/thread1.rb
${GEM_LIBDIR}/test/trunc-call.rb
${GEM_LIBDIR}/test/tvar.rb
${GEM_HOME}/specifications/${GEM_NAME}.gemspec