Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7c496f7

Browse files
committedNov 21, 2008
Dependency changed to ruby-debug-base-0.10.3 which fixes various bugs and contains bunch of RFEs
1 parent a7cc9f3 commit 7c496f7

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed
 

‎ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2008-11-10 09:22 Martin Krauskopf
2+
3+
* ChangeLog, doc/protocol-spec.texi: Changes for 0.4.1
4+
15
2008-11-10 08:15 Martin Krauskopf
26

37
* bin/rdebug-ide, lib/ruby-debug.rb, lib/ruby-debug/xml_printer.rb:

‎Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ desc 'Default: run unit tests.'
99
task :default => [:test]
1010

1111
# ------- Default Package ----------
12-
RUBY_DEBUG_BASE="0.10.2"
13-
RUBY_DEBUG_IDE_VERSION = "0.4.1"
12+
RUBY_DEBUG_BASE="0.10.3"
13+
RUBY_DEBUG_IDE_VERSION = "0.4.2"
1414

1515
FILES = FileList[
1616
'bin/*',

‎doc/protocol-spec.texi

+7
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,13 @@ Event example:
379379

380380
Mentions also related changes in the @value{RDEBUG_IDE} gem implementation.
381381

382+
@section Changes between 0.4.1 and 0.4.2
383+
384+
@itemize @bullet
385+
@item Dependency changed to @t{ruby-debug-base-0.10.3} which fixes various bugs
386+
and contains bunch of RFEs
387+
@end itemize
388+
382389
@section Changes between 0.4.0 and 0.4.1
383390

384391
@itemize @bullet

‎etc/build_and_install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
echo "Installing"
77
[ -d pkg ] && rm -r pkg
88
rake package
9-
gem_command="gem install -l pkg/ruby-debug-ide-0.4.1.gem"
9+
gem_command="gem install -l pkg/ruby-debug-ide-0.4.2.gem"
1010
if [ "$1" = "-n" ]; then
1111
eval "$gem_command"
1212
else

‎lib/ruby-debug.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def start_control(host, port)
115115
unless RUBY_PLATFORM =~ /darwin/i # Mac OS X seems to have problem with 'localhost'
116116
host ||= 'localhost' # nil does not seem to work for IPv6, localhost does
117117
end
118-
$stderr.printf "Fast Debugger (ruby-debug-ide 0.4.1) listens on #{host}:#{port}\n"
118+
$stderr.printf "Fast Debugger (ruby-debug-ide 0.4.2) listens on #{host}:#{port}\n"
119119
server = TCPServer.new(host, port)
120120
while (session = server.accept)
121121
begin

‎test/rd_test_base.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def debug_command(script, port)
2222
cmd = "#{interpreter}"
2323
cmd << " --debug" if jruby?
2424
cmd << " -J-Xdebug -J-Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=y" if jruby? and debug_jruby?
25-
cmd << " -I '#{File.dirname(script)}' #{@rdebug_ide} _0.4.1_" +
25+
cmd << " -I '#{File.dirname(script)}' #{@rdebug_ide} _0.4.2_" +
2626
(@verbose_server ? " -d" : "") +
2727
" -p #{port} -- '#{script}'"
2828
end

0 commit comments

Comments
 (0)
Please sign in to comment.