madvertise-ext 0.9.5 → 0.9.6
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/madvertise/configuration.rb +7 -5
- data/madvertise-ext.gemspec +1 -1
- metadata +1 -1
@@ -80,11 +80,13 @@ end
|
|
80
80
|
class Configuration < Section
|
81
81
|
|
82
82
|
DEFAULTS = {
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
83
|
+
generic: {
|
84
|
+
log_backend: :stdout,
|
85
|
+
log_caller: false,
|
86
|
+
log_level: :info,
|
87
|
+
log_format: "%{time} %{progname}(%{pid}) [%{severity}] %{msg}\n",
|
88
|
+
log4j_format: "%d %c(%t) [%p] %m%n",
|
89
|
+
},
|
88
90
|
production: {
|
89
91
|
log_format: "%{msg}\n",
|
90
92
|
log4j_format: "%m%n",
|
data/madvertise-ext.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = "madvertise-ext"
|
5
|
-
spec.version = "0.9.
|
5
|
+
spec.version = "0.9.6"
|
6
6
|
spec.authors = ["madvertise Mobile Advertising GmbH"]
|
7
7
|
spec.email = ["tech@madvertise.com"]
|
8
8
|
spec.description = %q{Ruby core extensions and helper libraries}
|