trace-util-adv 0.2.0 → 0.2.1
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 +4 -2
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/lib/README +85 -43
- data/lib/TODO.txt +18 -2
- data/lib/filters/message_filters.rb +5 -4
- data/lib/resources/jquery-1.3.2.min.js +19 -0
- data/lib/resources/prototype.js +4320 -0
- data/lib/resources/tracing.css +73 -0
- data/lib/resources/tracing.js +9 -0
- data/{lib → test}/test_action_handler.rb +0 -0
- data/{lib → test}/test_appender.rb +0 -0
- data/{lib → test}/test_file_appender.rb +0 -0
- data/{lib → test}/test_filters.rb +0 -0
- data/{lib → test}/test_filters_chain.rb +0 -0
- data/{lib → test}/test_filters_create.rb +0 -0
- data/{lib → test}/test_html_appender.rb +0 -0
- data/{lib → test}/test_special_filters.rb +0 -0
- data/{lib → test}/test_xml_appender.rb +0 -0
- data/{lib → test}/test_xml_gen.rb +0 -0
- data/trace-util-adv.gemspec +16 -12
- metadata +15 -11
@@ -0,0 +1,73 @@
|
|
1
|
+
body {
|
2
|
+
font-family:Verdana,sans-serif;
|
3
|
+
font-size:11px;
|
4
|
+
}
|
5
|
+
|
6
|
+
.method {
|
7
|
+
background-color: #c0c0c0;
|
8
|
+
border: 1px solid;
|
9
|
+
padding: 8px;
|
10
|
+
}
|
11
|
+
|
12
|
+
.begin {
|
13
|
+
background-color: #AAFFAA;
|
14
|
+
padding: 8px;
|
15
|
+
border: 1px solid;
|
16
|
+
}
|
17
|
+
|
18
|
+
.end {
|
19
|
+
background-color: #77FF77;
|
20
|
+
padding: 8px;
|
21
|
+
border: 1px solid;
|
22
|
+
}
|
23
|
+
|
24
|
+
.args {
|
25
|
+
background-color: #ACD6FC;
|
26
|
+
border: 1px solid;
|
27
|
+
padding: 4px;
|
28
|
+
}
|
29
|
+
|
30
|
+
.method-title {
|
31
|
+
background-color: white;
|
32
|
+
font-size:16px;
|
33
|
+
font-weight: bold;
|
34
|
+
padding: 4px;
|
35
|
+
border: 2px solid;
|
36
|
+
cursor: pointer;
|
37
|
+
}
|
38
|
+
|
39
|
+
.method-name {
|
40
|
+
font-size:14px;
|
41
|
+
}
|
42
|
+
|
43
|
+
|
44
|
+
.begin .method-name {
|
45
|
+
background-color: #A0F0A0;
|
46
|
+
font-weight: bold;
|
47
|
+
padding: 4px;
|
48
|
+
border: 1px solid;
|
49
|
+
}
|
50
|
+
|
51
|
+
.end .method-name {
|
52
|
+
background-color: #70F070;
|
53
|
+
font-weight: bold;
|
54
|
+
padding: 4px;
|
55
|
+
border: 1px solid;
|
56
|
+
}
|
57
|
+
|
58
|
+
|
59
|
+
.method-args {
|
60
|
+
background-color: #7CA6CC;
|
61
|
+
padding: 4px;
|
62
|
+
}
|
63
|
+
|
64
|
+
.method-block-arg {
|
65
|
+
background-color: #4CA6AC;
|
66
|
+
padding: 4px;
|
67
|
+
}
|
68
|
+
|
69
|
+
.method-result {
|
70
|
+
background-color: #FFFFAA;
|
71
|
+
padding: 4px;
|
72
|
+
border: 1px solid;
|
73
|
+
}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/trace-util-adv.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{trace-util-adv}
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Kristian Mandrup"]
|
@@ -45,6 +45,10 @@ Gem::Specification.new do |s|
|
|
45
45
|
"lib/filters/message_filters.rb",
|
46
46
|
"lib/filters/tracing_filter.rb",
|
47
47
|
"lib/output_templates.rb",
|
48
|
+
"lib/resources/jquery-1.3.2.min.js",
|
49
|
+
"lib/resources/prototype.js",
|
50
|
+
"lib/resources/tracing.css",
|
51
|
+
"lib/resources/tracing.js",
|
48
52
|
"lib/rule_match.rb",
|
49
53
|
"lib/sample_filters.rb",
|
50
54
|
"lib/templates/base_template.rb",
|
@@ -52,16 +56,6 @@ Gem::Specification.new do |s|
|
|
52
56
|
"lib/templates/string_template.rb",
|
53
57
|
"lib/templates/trace_output_handler.rb",
|
54
58
|
"lib/templates/xml_template.rb",
|
55
|
-
"lib/test_action_handler.rb",
|
56
|
-
"lib/test_appender.rb",
|
57
|
-
"lib/test_file_appender.rb",
|
58
|
-
"lib/test_filters.rb",
|
59
|
-
"lib/test_filters_chain.rb",
|
60
|
-
"lib/test_filters_create.rb",
|
61
|
-
"lib/test_html_appender.rb",
|
62
|
-
"lib/test_special_filters.rb",
|
63
|
-
"lib/test_xml_appender.rb",
|
64
|
-
"lib/test_xml_gen.rb",
|
65
59
|
"lib/trace-util-adv.rb",
|
66
60
|
"lib/trace_appenders.rb",
|
67
61
|
"lib/trace_calls.rb",
|
@@ -79,7 +73,17 @@ Gem::Specification.new do |s|
|
|
79
73
|
s.summary = %q{adds advancing tracing capability to your ruby code}
|
80
74
|
s.test_files = [
|
81
75
|
"spec/spec_helper.rb",
|
82
|
-
"spec/trace-util-adv_spec.rb"
|
76
|
+
"spec/trace-util-adv_spec.rb",
|
77
|
+
"test/test_action_handler.rb",
|
78
|
+
"test/test_appender.rb",
|
79
|
+
"test/test_file_appender.rb",
|
80
|
+
"test/test_filters.rb",
|
81
|
+
"test/test_filters_chain.rb",
|
82
|
+
"test/test_filters_create.rb",
|
83
|
+
"test/test_html_appender.rb",
|
84
|
+
"test/test_special_filters.rb",
|
85
|
+
"test/test_xml_appender.rb",
|
86
|
+
"test/test_xml_gen.rb"
|
83
87
|
]
|
84
88
|
|
85
89
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trace-util-adv
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kristian Mandrup
|
@@ -61,6 +61,10 @@ files:
|
|
61
61
|
- lib/filters/message_filters.rb
|
62
62
|
- lib/filters/tracing_filter.rb
|
63
63
|
- lib/output_templates.rb
|
64
|
+
- lib/resources/jquery-1.3.2.min.js
|
65
|
+
- lib/resources/prototype.js
|
66
|
+
- lib/resources/tracing.css
|
67
|
+
- lib/resources/tracing.js
|
64
68
|
- lib/rule_match.rb
|
65
69
|
- lib/sample_filters.rb
|
66
70
|
- lib/templates/base_template.rb
|
@@ -68,16 +72,6 @@ files:
|
|
68
72
|
- lib/templates/string_template.rb
|
69
73
|
- lib/templates/trace_output_handler.rb
|
70
74
|
- lib/templates/xml_template.rb
|
71
|
-
- lib/test_action_handler.rb
|
72
|
-
- lib/test_appender.rb
|
73
|
-
- lib/test_file_appender.rb
|
74
|
-
- lib/test_filters.rb
|
75
|
-
- lib/test_filters_chain.rb
|
76
|
-
- lib/test_filters_create.rb
|
77
|
-
- lib/test_html_appender.rb
|
78
|
-
- lib/test_special_filters.rb
|
79
|
-
- lib/test_xml_appender.rb
|
80
|
-
- lib/test_xml_gen.rb
|
81
75
|
- lib/trace-util-adv.rb
|
82
76
|
- lib/trace_appenders.rb
|
83
77
|
- lib/trace_calls.rb
|
@@ -118,3 +112,13 @@ summary: adds advancing tracing capability to your ruby code
|
|
118
112
|
test_files:
|
119
113
|
- spec/spec_helper.rb
|
120
114
|
- spec/trace-util-adv_spec.rb
|
115
|
+
- test/test_action_handler.rb
|
116
|
+
- test/test_appender.rb
|
117
|
+
- test/test_file_appender.rb
|
118
|
+
- test/test_filters.rb
|
119
|
+
- test/test_filters_chain.rb
|
120
|
+
- test/test_filters_create.rb
|
121
|
+
- test/test_html_appender.rb
|
122
|
+
- test/test_special_filters.rb
|
123
|
+
- test/test_xml_appender.rb
|
124
|
+
- test/test_xml_gen.rb
|