bixby-common 0.4.9 → 0.4.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/bixby-common.gemspec +3 -3
- data/lib/bixby-common/util/log.rb +4 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07d5e928f7c6dd41fb8be638f7429ab1adf9f043
|
4
|
+
data.tar.gz: 6615fb18f6a3c5ba5e213b562c5ba6c983be5315
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: feb9a2637a4f2ee5b32789d6ff2cff61ed14aadfa6943e43b179a3b5ca224b37f00b03380afb8ad95bebe450feb7001ae872fc1feaefdd158000927add2ce861
|
7
|
+
data.tar.gz: ab05892a8fb3b28784b9eba5a010a7574d72219346ae31f550ba2b10924a4b0909f6c5448ac42c39032ba475ed5aca3b21692aff3ea993b3c129cbd2a4486a90
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.10
|
data/bixby-common.gemspec
CHANGED
@@ -2,15 +2,15 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: bixby-common 0.4.
|
5
|
+
# stub: bixby-common 0.4.10 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "bixby-common"
|
9
|
-
s.version = "0.4.
|
9
|
+
s.version = "0.4.10"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.authors = ["Chetan Sarva"]
|
13
|
-
s.date = "2013-12-
|
13
|
+
s.date = "2013-12-04"
|
14
14
|
s.description = "Bixby Common files/libs"
|
15
15
|
s.email = "chetan@pixelcop.net"
|
16
16
|
s.extra_rdoc_files = [
|
@@ -89,9 +89,10 @@ module Bixby
|
|
89
89
|
}.merge(opts)
|
90
90
|
Logging.appenders.rolling_file("file", options)
|
91
91
|
|
92
|
-
Logging::Logger.root
|
93
|
-
|
94
|
-
|
92
|
+
root = Logging::Logger.root
|
93
|
+
root.add_appenders("file") if !root.appenders.find{ |a| a.name == "file" }
|
94
|
+
root.level = opts[:level]
|
95
|
+
root.trace = true
|
95
96
|
end
|
96
97
|
|
97
98
|
end # Log
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bixby-common
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chetan Sarva
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-12-
|
11
|
+
date: 2013-12-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faye-websocket
|