trace-util-adv 0.2.1 → 0.2.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/{lib/README → DOCUMENTATION} +0 -0
- data/VERSION +1 -1
- data/lib/TODO.txt +5 -0
- data/trace-util-adv.gemspec +2 -2
- metadata +2 -2
|
File without changes
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.2
|
data/lib/TODO.txt
CHANGED
|
@@ -5,6 +5,11 @@ Support Intrusive trace statements
|
|
|
5
5
|
- trace messages can be inserted in your application code and should be handled by the tracing framework.
|
|
6
6
|
- Currently the framework only supports tracing of method entry and exits.
|
|
7
7
|
|
|
8
|
+
Introduce new rule outcomes
|
|
9
|
+
---
|
|
10
|
+
:include_yield - set temp outcome to include and then yield, allowing other rule to exclude
|
|
11
|
+
:exclude_yield - set temp outcome to exclude and then yield, allowing other rule to include
|
|
12
|
+
|
|
8
13
|
Refactor MsgContextRule
|
|
9
14
|
-----------------------
|
|
10
15
|
- see message_filters.rb
|
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.2"
|
|
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"]
|
|
@@ -22,11 +22,11 @@ Gem::Specification.new do |s|
|
|
|
22
22
|
".document",
|
|
23
23
|
".gitignore",
|
|
24
24
|
"CHANGELOG",
|
|
25
|
+
"DOCUMENTATION",
|
|
25
26
|
"LICENSE",
|
|
26
27
|
"README.rdoc",
|
|
27
28
|
"Rakefile",
|
|
28
29
|
"VERSION",
|
|
29
|
-
"lib/README",
|
|
30
30
|
"lib/TODO.txt",
|
|
31
31
|
"lib/action_handler.rb",
|
|
32
32
|
"lib/appenders/appender.rb",
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kristian Mandrup
|
|
@@ -38,11 +38,11 @@ files:
|
|
|
38
38
|
- .document
|
|
39
39
|
- .gitignore
|
|
40
40
|
- CHANGELOG
|
|
41
|
+
- DOCUMENTATION
|
|
41
42
|
- LICENSE
|
|
42
43
|
- README.rdoc
|
|
43
44
|
- Rakefile
|
|
44
45
|
- VERSION
|
|
45
|
-
- lib/README
|
|
46
46
|
- lib/TODO.txt
|
|
47
47
|
- lib/action_handler.rb
|
|
48
48
|
- lib/appenders/appender.rb
|