debugger: rdebug gem requires columnize, added to build_lib and gem tasks in build.xml --------------------------------------------------------------------------------------
Key: JRUBY-4441 URL: http://jira.codehaus.org/browse/JRUBY-4441 Project: JRuby Issue Type: Bug Environment: MacOS 10.5.8 Reporter: Stephen Bannasch Assignee: Thomas E Enebo The rdebug gem has a runtime dependency on columnize. I have attached a patch that adds columnize-0.3.1.gem to build_lib/ and integrates it into the gem tasks in build.xml The following is in a clean git clone and build of jruby master: {code} $ jruby --version jruby 1.5.0.dev (ruby 1.8.7 patchlevel 174) (2010-01-08 2e4a0d0) (Java HotSpot(TM) Client VM 1.5.0_22) [i386-java] $ cat a.rb puts "hello" $ jruby -S rdebug a.rb ... 'report_activate_error': Could not find RubyGem columnize (>= 0.1) (Gem::LoadError) {code} After adding and install columnize: {code} $ ant install-gems Buildfile: build.xml install-gems: [java] build_lib/rspec-1.2.9.gem already installed [java] build_lib/rake-0.8.7.gem already installed [java] build_lib/ruby-debug-base-0.10.3.1-java.gem already installed [java] build_lib/ruby-debug-0.10.3.gem already installed [java] build_lib/columnize-0.3.1.gem already installed $ jruby --debug -S rdebug a.rb [-4, 5] in a.rb => 1 puts "hello" a.rb:1 puts "hello" (rdb:1) {code} -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email