mini_aether 0.0.6-java → 0.0.7-java
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/mini_aether/logback.xml +12 -0
- metadata +2 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<configuration>
|
|
2
|
+
<contextName>mini_aether</contextName>
|
|
3
|
+
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
|
4
|
+
<encoder>
|
|
5
|
+
<pattern>[%contextName] %-5level %msg%n</pattern>
|
|
6
|
+
</encoder>
|
|
7
|
+
</appender>
|
|
8
|
+
<logger name="com.ning" level="WARN"/>
|
|
9
|
+
<root level="${level}">
|
|
10
|
+
<appender-ref ref="STDOUT" />
|
|
11
|
+
</root>
|
|
12
|
+
</configuration>
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: mini_aether
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.0.
|
|
5
|
+
version: 0.0.7
|
|
6
6
|
platform: java
|
|
7
7
|
authors:
|
|
8
8
|
- Patrick Mahoney
|
|
@@ -79,6 +79,7 @@ files:
|
|
|
79
79
|
- lib/mini_aether/xml_parser.rb
|
|
80
80
|
- lib/mini_aether/helper.rb
|
|
81
81
|
- lib/mini_aether/spec.rb
|
|
82
|
+
- lib/mini_aether/logback.xml
|
|
82
83
|
- test/mini_aether_test.rb
|
|
83
84
|
- test/test_helper.rb
|
|
84
85
|
- test/mini_aether/helper_test.rb
|