-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathREADME
51 lines (31 loc) · 1.4 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
= ruby-debug-base for JRuby
[NOTE: This project has been superceded by https://github.com/ruby-debug/ruby-debug. It is left for historical context (and was only valid for Netbeans IDE).
== Overview
(j)ruby-debug-base provides the fast debugger extension for JRuby interpreter.
It is the same as ruby-debug-base native C extension from ruby-debug project
(http://rubyforge.org/projects/ruby-debug/), but for JRuby.
== Install
(j)ruby-debug-base is available as a RubyGem:
jruby -S gem install ruby-debug-base
== Installation of trunk version
Handy for developers or users living on the cutting-edge.
$ cd ~/tmp
$ svn co svn://rubyforge.org/var/svn/debug-commons/jruby-debug/trunk jruby-debug
$ cd jruby-debug
$ rake gem
$ jruby -S gem install -l pkg/ruby-debug-base-0.10.3-java.gem
$ jruby -S gem install columnize
$ jruby -S gem install -r ruby-debug -v 0.10.3 --ignore-dependencies
== Usage
The usage is then the same as with native ruby-debugger, but you might need to
force JRuby which has to run in interpreted mode. Simplest usage is:
$ jruby --debug -S rdebug <your-script>
Or easier, you might create 'jruby-dm' ('dm' for 'debugger-mode'):
$ cat ~/bin/jruby-dm
#!/bin/bash
jruby --debug "$@"
Then you may run just as you used to:
$ jruby-dm -S rdebug <your-script>
For more information see: http://bashdb.sourceforge.net/ruby-debug.html
== License
See MIT-LICENSE for license information.