rbx-tracer 0.0.3-universal-rubinius-1.2 → 0.0.4-universal-rubinius-1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +24 -0
- data/LICENSE +1 -1
- data/NEWS +3 -0
- data/README.textile +24 -0
- data/THANKS +1 -1
- data/lib/script_lines.rb +35 -0
- data/lib/script_lines.rbc +836 -0
- data/lib/set_trace.rb +3 -1
- data/lib/set_trace.rbc +213 -213
- data/test/test-script-lines.rb +15 -0
- metadata +13 -10
- data/README +0 -1
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'rubygems'; require 'require_relative'
|
3
|
+
require_relative '../lib/script_lines'
|
4
|
+
SCRIPT_LINES__ = {}
|
5
|
+
class Test_SCRIPT_LINES__ < Test::Unit::TestCase
|
6
|
+
def test_basic
|
7
|
+
dir = File.dirname(__FILE__)
|
8
|
+
file = File.join(dir, '../lib/set_trace.rb')
|
9
|
+
load file
|
10
|
+
assert_equal true, SCRIPT_LINES__.keys.member?(file)
|
11
|
+
assert_equal Array, SCRIPT_LINES__[file].class
|
12
|
+
assert_equal "# -*- coding: utf-8 -*-\n", SCRIPT_LINES__[file][0]
|
13
|
+
assert_equal true, SCRIPT_LINES__[file].size > 10
|
14
|
+
end
|
15
|
+
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbx-tracer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 23
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 4
|
10
|
+
version: 0.0.4
|
11
11
|
platform: universal-rubinius-1.2
|
12
12
|
authors:
|
13
13
|
- R. Bernstein
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-01-
|
18
|
+
date: 2011-01-24 00:00:00 -05:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -44,21 +44,24 @@ extensions: []
|
|
44
44
|
extra_rdoc_files: []
|
45
45
|
|
46
46
|
files:
|
47
|
-
- README
|
47
|
+
- README.textile
|
48
48
|
- ChangeLog
|
49
49
|
- LICENSE
|
50
50
|
- NEWS
|
51
51
|
- Rakefile
|
52
52
|
- THANKS
|
53
|
-
- lib/set_trace.rb
|
54
53
|
- lib/set_trace.rbc
|
54
|
+
- lib/set_trace.rb
|
55
|
+
- lib/script_lines.rb
|
56
|
+
- lib/script_lines.rbc
|
55
57
|
- app/frame.rb
|
56
|
-
- app/breakpoint.rb
|
57
|
-
- app/breakpoint.rbc
|
58
58
|
- app/stepping.rbc
|
59
|
-
- app/
|
59
|
+
- app/breakpoint.rb
|
60
60
|
- app/stepping.rb
|
61
|
+
- app/frame.rbc
|
62
|
+
- app/breakpoint.rbc
|
61
63
|
- test/test-settracefunc.rb
|
64
|
+
- test/test-script-lines.rb
|
62
65
|
has_rdoc: true
|
63
66
|
homepage: http://wiki.github.com/rocky/rbx-tracer
|
64
67
|
licenses:
|
@@ -66,7 +69,7 @@ licenses:
|
|
66
69
|
post_install_message:
|
67
70
|
rdoc_options:
|
68
71
|
- --title
|
69
|
-
- Rubinius::SetTrace 0.0.
|
72
|
+
- Rubinius::SetTrace 0.0.4 Documentation
|
70
73
|
require_paths:
|
71
74
|
- lib
|
72
75
|
required_ruby_version: !ruby/object:Gem::Requirement
|
data/README
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
Simulate Ruby 1.8, 1.9, JRuby's set_trace_func in Rubinius.
|