ruby-debug 0.1.5-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +16 -0
- data/LICENSE +23 -0
- data/README +63 -0
- data/Rakefile +102 -0
- data/bin/rdebug +13 -0
- data/ext/extconf.rb +18 -0
- data/ext/ruby_debug.c +991 -0
- data/lib/ruby-debug.rb +633 -0
- data/lib/ruby_debug.so +0 -0
- metadata +55 -0
data/lib/ruby_debug.so
ADDED
Binary file
|
metadata
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.0
|
3
|
+
specification_version: 1
|
4
|
+
name: ruby-debug
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.1.5
|
7
|
+
date: 2006-07-14 16:53:09 -04:00
|
8
|
+
summary: Fast Ruby debugger
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: ksibilev@yahoo.com
|
12
|
+
homepage: http://rubyforge.org/projects/ruby-debug/
|
13
|
+
rubyforge_project: ruby-debug
|
14
|
+
description: ruby-debug is a fast implementation of the standard Ruby debugger debug.rb. It's implemented by utilizing a new hook Ruby C API.
|
15
|
+
autorequire: ruby-debug
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: false
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.8.2
|
24
|
+
version:
|
25
|
+
platform: mswin32
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- Kent Sibilev
|
31
|
+
files:
|
32
|
+
- Rakefile
|
33
|
+
- README
|
34
|
+
- LICENSE
|
35
|
+
- CHANGES
|
36
|
+
- lib/ruby-debug.rb
|
37
|
+
- ext/extconf.rb
|
38
|
+
- ext/ruby_debug.c
|
39
|
+
- ext/win32
|
40
|
+
- bin/rdebug
|
41
|
+
- lib/ruby_debug.so
|
42
|
+
test_files: []
|
43
|
+
|
44
|
+
rdoc_options: []
|
45
|
+
|
46
|
+
extra_rdoc_files: []
|
47
|
+
|
48
|
+
executables:
|
49
|
+
- rdebug
|
50
|
+
extensions: []
|
51
|
+
|
52
|
+
requirements: []
|
53
|
+
|
54
|
+
dependencies: []
|
55
|
+
|