mtn_log4r 1.1.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (106) hide show
  1. checksums.yaml +15 -0
  2. data/doc/content/contact.html +22 -0
  3. data/doc/content/contribute.html +21 -0
  4. data/doc/content/index.html +90 -0
  5. data/doc/content/license.html +56 -0
  6. data/doc/content/manual.html +449 -0
  7. data/doc/dev/README.developers +55 -0
  8. data/doc/dev/checklist +23 -0
  9. data/doc/dev/things-to-do +5 -0
  10. data/doc/images/log4r-logo.png +0 -0
  11. data/doc/images/logo2.png +0 -0
  12. data/doc/log4r.css +111 -0
  13. data/doc/rdoc-log4r.css +696 -0
  14. data/doc/templates/main.html +147 -0
  15. data/examples/README +19 -0
  16. data/examples/ancestors.rb +53 -0
  17. data/examples/chainsaw_settings.xml +7 -0
  18. data/examples/customlevels.rb +34 -0
  19. data/examples/filelog.rb +25 -0
  20. data/examples/fileroll.rb +40 -0
  21. data/examples/gmail.rb +30 -0
  22. data/examples/gmail.yaml +95 -0
  23. data/examples/log4r_yaml.yaml +0 -0
  24. data/examples/logclient.rb +25 -0
  25. data/examples/logserver.rb +18 -0
  26. data/examples/moderate.xml +29 -0
  27. data/examples/moderateconfig.rb +66 -0
  28. data/examples/myformatter.rb +23 -0
  29. data/examples/outofthebox.rb +21 -0
  30. data/examples/rdoc-gen +2 -0
  31. data/examples/rrconfig.xml +63 -0
  32. data/examples/rrsetup.rb +42 -0
  33. data/examples/simpleconfig.rb +39 -0
  34. data/examples/syslogcustom.rb +52 -0
  35. data/examples/xmlconfig.rb +25 -0
  36. data/examples/yaml.rb +30 -0
  37. data/lib/log4r/GDC.rb +41 -0
  38. data/lib/log4r/MDC.rb +59 -0
  39. data/lib/log4r/NDC.rb +86 -0
  40. data/lib/log4r/base.rb +74 -0
  41. data/lib/log4r/config.rb +9 -0
  42. data/lib/log4r/configurator.rb +224 -0
  43. data/lib/log4r/formatter/formatter.rb +109 -0
  44. data/lib/log4r/formatter/log4jxmlformatter.rb +65 -0
  45. data/lib/log4r/formatter/patternformatter.rb +145 -0
  46. data/lib/log4r/lib/drbloader.rb +52 -0
  47. data/lib/log4r/lib/xmlloader.rb +24 -0
  48. data/lib/log4r/logevent.rb +28 -0
  49. data/lib/log4r/logger.rb +199 -0
  50. data/lib/log4r/loggerfactory.rb +89 -0
  51. data/lib/log4r/logserver.rb +28 -0
  52. data/lib/log4r/outputter/consoleoutputters.rb +18 -0
  53. data/lib/log4r/outputter/datefileoutputter.rb +117 -0
  54. data/lib/log4r/outputter/emailoutputter.rb +143 -0
  55. data/lib/log4r/outputter/fileoutputter.rb +56 -0
  56. data/lib/log4r/outputter/iooutputter.rb +55 -0
  57. data/lib/log4r/outputter/outputter.rb +134 -0
  58. data/lib/log4r/outputter/outputterfactory.rb +61 -0
  59. data/lib/log4r/outputter/rabbitoutputter.rb +70 -0
  60. data/lib/log4r/outputter/remoteoutputter.rb +40 -0
  61. data/lib/log4r/outputter/rollingfileoutputter.rb +234 -0
  62. data/lib/log4r/outputter/scribeoutputter.rb +37 -0
  63. data/lib/log4r/outputter/staticoutputter.rb +30 -0
  64. data/lib/log4r/outputter/syslogoutputter.rb +130 -0
  65. data/lib/log4r/outputter/udpoutputter.rb +53 -0
  66. data/lib/log4r/rdoc/GDC +14 -0
  67. data/lib/log4r/rdoc/MDC +16 -0
  68. data/lib/log4r/rdoc/NDC +41 -0
  69. data/lib/log4r/rdoc/configurator +243 -0
  70. data/lib/log4r/rdoc/emailoutputter +103 -0
  71. data/lib/log4r/rdoc/formatter +39 -0
  72. data/lib/log4r/rdoc/log4jxmlformatter +21 -0
  73. data/lib/log4r/rdoc/log4r +89 -0
  74. data/lib/log4r/rdoc/logger +175 -0
  75. data/lib/log4r/rdoc/logserver +85 -0
  76. data/lib/log4r/rdoc/outputter +108 -0
  77. data/lib/log4r/rdoc/patternformatter +128 -0
  78. data/lib/log4r/rdoc/scribeoutputter +16 -0
  79. data/lib/log4r/rdoc/syslogoutputter +29 -0
  80. data/lib/log4r/rdoc/win32eventoutputter +7 -0
  81. data/lib/log4r/rdoc/yamlconfigurator +20 -0
  82. data/lib/log4r/repository.rb +88 -0
  83. data/lib/log4r/staticlogger.rb +49 -0
  84. data/lib/log4r/version.rb +4 -0
  85. data/lib/log4r/yamlconfigurator.rb +198 -0
  86. data/lib/log4r.rb +18 -0
  87. data/tests/README +10 -0
  88. data/tests/testGDC.rb +24 -0
  89. data/tests/testMDC.rb +40 -0
  90. data/tests/testNDC.rb +25 -0
  91. data/tests/test_helper.rb +12 -0
  92. data/tests/testall.rb +6 -0
  93. data/tests/testbase.rb +48 -0
  94. data/tests/testchainsaw.rb +42 -0
  95. data/tests/testconf.xml +37 -0
  96. data/tests/testcustom.rb +30 -0
  97. data/tests/testformatter.rb +31 -0
  98. data/tests/testlogger.rb +200 -0
  99. data/tests/testoutputter.rb +143 -0
  100. data/tests/testpatternformatter.rb +76 -0
  101. data/tests/testthreads.rb +31 -0
  102. data/tests/testxmlconf.rb +48 -0
  103. data/tests/testyaml.rb +39 -0
  104. data/tests/testyaml_arrays.yaml +25 -0
  105. data/tests/testyaml_injection.yaml +22 -0
  106. metadata +193 -0
metadata ADDED
@@ -0,0 +1,193 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mtn_log4r
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.11
5
+ platform: ruby
6
+ authors:
7
+ - Colby Gutierrez-Kraybill
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-12-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ! '>='
18
+ - !ruby/object:Gem::Version
19
+ version: 1.0.0
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ! '>='
25
+ - !ruby/object:Gem::Version
26
+ version: 1.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 0.8.7
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: 0.8.7
41
+ description: ! 'See also: http://logging.apache.org/log4j'
42
+ email: colby@astro.berkeley.edu
43
+ executables: []
44
+ extensions: []
45
+ extra_rdoc_files: []
46
+ files:
47
+ - doc/content/contact.html
48
+ - doc/content/contribute.html
49
+ - doc/content/index.html
50
+ - doc/content/license.html
51
+ - doc/content/manual.html
52
+ - doc/dev/checklist
53
+ - doc/dev/README.developers
54
+ - doc/dev/things-to-do
55
+ - doc/images/log4r-logo.png
56
+ - doc/images/logo2.png
57
+ - doc/log4r.css
58
+ - doc/rdoc-log4r.css
59
+ - doc/templates/main.html
60
+ - examples/ancestors.rb
61
+ - examples/chainsaw_settings.xml
62
+ - examples/customlevels.rb
63
+ - examples/filelog.rb
64
+ - examples/fileroll.rb
65
+ - examples/gmail.rb
66
+ - examples/gmail.yaml
67
+ - examples/log4r_yaml.yaml
68
+ - examples/logclient.rb
69
+ - examples/logserver.rb
70
+ - examples/moderate.xml
71
+ - examples/moderateconfig.rb
72
+ - examples/myformatter.rb
73
+ - examples/outofthebox.rb
74
+ - examples/rdoc-gen
75
+ - examples/README
76
+ - examples/rrconfig.xml
77
+ - examples/rrsetup.rb
78
+ - examples/simpleconfig.rb
79
+ - examples/syslogcustom.rb
80
+ - examples/xmlconfig.rb
81
+ - examples/yaml.rb
82
+ - lib/log4r/base.rb
83
+ - lib/log4r/config.rb
84
+ - lib/log4r/configurator.rb
85
+ - lib/log4r/formatter/formatter.rb
86
+ - lib/log4r/formatter/log4jxmlformatter.rb
87
+ - lib/log4r/formatter/patternformatter.rb
88
+ - lib/log4r/GDC.rb
89
+ - lib/log4r/lib/drbloader.rb
90
+ - lib/log4r/lib/xmlloader.rb
91
+ - lib/log4r/logevent.rb
92
+ - lib/log4r/logger.rb
93
+ - lib/log4r/loggerfactory.rb
94
+ - lib/log4r/logserver.rb
95
+ - lib/log4r/MDC.rb
96
+ - lib/log4r/NDC.rb
97
+ - lib/log4r/outputter/consoleoutputters.rb
98
+ - lib/log4r/outputter/datefileoutputter.rb
99
+ - lib/log4r/outputter/emailoutputter.rb
100
+ - lib/log4r/outputter/fileoutputter.rb
101
+ - lib/log4r/outputter/iooutputter.rb
102
+ - lib/log4r/outputter/outputter.rb
103
+ - lib/log4r/outputter/outputterfactory.rb
104
+ - lib/log4r/outputter/rabbitoutputter.rb
105
+ - lib/log4r/outputter/remoteoutputter.rb
106
+ - lib/log4r/outputter/rollingfileoutputter.rb
107
+ - lib/log4r/outputter/scribeoutputter.rb
108
+ - lib/log4r/outputter/staticoutputter.rb
109
+ - lib/log4r/outputter/syslogoutputter.rb
110
+ - lib/log4r/outputter/udpoutputter.rb
111
+ - lib/log4r/rdoc/configurator
112
+ - lib/log4r/rdoc/emailoutputter
113
+ - lib/log4r/rdoc/formatter
114
+ - lib/log4r/rdoc/GDC
115
+ - lib/log4r/rdoc/log4jxmlformatter
116
+ - lib/log4r/rdoc/log4r
117
+ - lib/log4r/rdoc/logger
118
+ - lib/log4r/rdoc/logserver
119
+ - lib/log4r/rdoc/MDC
120
+ - lib/log4r/rdoc/NDC
121
+ - lib/log4r/rdoc/outputter
122
+ - lib/log4r/rdoc/patternformatter
123
+ - lib/log4r/rdoc/scribeoutputter
124
+ - lib/log4r/rdoc/syslogoutputter
125
+ - lib/log4r/rdoc/win32eventoutputter
126
+ - lib/log4r/rdoc/yamlconfigurator
127
+ - lib/log4r/repository.rb
128
+ - lib/log4r/staticlogger.rb
129
+ - lib/log4r/version.rb
130
+ - lib/log4r/yamlconfigurator.rb
131
+ - lib/log4r.rb
132
+ - tests/README
133
+ - tests/test_helper.rb
134
+ - tests/testall.rb
135
+ - tests/testbase.rb
136
+ - tests/testchainsaw.rb
137
+ - tests/testconf.xml
138
+ - tests/testcustom.rb
139
+ - tests/testformatter.rb
140
+ - tests/testGDC.rb
141
+ - tests/testlogger.rb
142
+ - tests/testMDC.rb
143
+ - tests/testNDC.rb
144
+ - tests/testoutputter.rb
145
+ - tests/testpatternformatter.rb
146
+ - tests/testthreads.rb
147
+ - tests/testxmlconf.rb
148
+ - tests/testyaml.rb
149
+ - tests/testyaml_arrays.yaml
150
+ - tests/testyaml_injection.yaml
151
+ homepage: http://log4r.rubyforge.org
152
+ licenses: []
153
+ metadata: {}
154
+ post_install_message:
155
+ rdoc_options: []
156
+ require_paths:
157
+ - lib
158
+ required_ruby_version: !ruby/object:Gem::Requirement
159
+ requirements:
160
+ - - ! '>='
161
+ - !ruby/object:Gem::Version
162
+ version: '0'
163
+ required_rubygems_version: !ruby/object:Gem::Requirement
164
+ requirements:
165
+ - - ! '>='
166
+ - !ruby/object:Gem::Version
167
+ version: '0'
168
+ requirements: []
169
+ rubyforge_project:
170
+ rubygems_version: 2.0.6
171
+ signing_key:
172
+ specification_version: 4
173
+ summary: Log4r, logging framework for ruby
174
+ test_files:
175
+ - tests/README
176
+ - tests/test_helper.rb
177
+ - tests/testall.rb
178
+ - tests/testbase.rb
179
+ - tests/testchainsaw.rb
180
+ - tests/testconf.xml
181
+ - tests/testcustom.rb
182
+ - tests/testformatter.rb
183
+ - tests/testGDC.rb
184
+ - tests/testlogger.rb
185
+ - tests/testMDC.rb
186
+ - tests/testNDC.rb
187
+ - tests/testoutputter.rb
188
+ - tests/testpatternformatter.rb
189
+ - tests/testthreads.rb
190
+ - tests/testxmlconf.rb
191
+ - tests/testyaml.rb
192
+ - tests/testyaml_arrays.yaml
193
+ - tests/testyaml_injection.yaml