logspot 0.6.3 → 0.6.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 25c21c7f245b06c8ae83b61a341fb4f68d8891d4
4
- data.tar.gz: 6fa944d1c7a88e99fdd1eaf9d0f4e3b146f34406
3
+ metadata.gz: 82c98913e6de13cc695f82ebc684a505419113d0
4
+ data.tar.gz: 3114bfc4d1b9fca4bf275fdcdefb9075b05b4689
5
5
  SHA512:
6
- metadata.gz: c3d3cc1ed9775c242bb6b0fab3f0a542e874e072f5df6adc2461543c468c39a2a8b881974566910dce9896c525e5dc440538dc1a922840818da933ad28be1351
7
- data.tar.gz: 67b6a35ac38fcb819cba4a11e43cb1310b31a4382d18c679a6be09827ffeca7112fd16e6ab9e58d6ebc52fcf7889bf0499547f853abe781f377533c5c592b709
6
+ metadata.gz: da9b984439fb304868ebd92862b51157bc054773364ab82af27304be8ed9d59552d8a9484ca8ddd84442cd6c1c0eec2ed2f1ba7f8ac29b0af4e0e97e8332d7e6
7
+ data.tar.gz: df0c7e6a0f4e9ebbb1277baa7b09b79b1550b1b3aeb6d49fbc62b85e073a38364c5a4f634c306df945c56bf9aca7c246fb57cfe9c1f7eaae94323d660c29c50c
@@ -1,13 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- logspot (0.6.2)
4
+ logspot (0.6.3)
5
5
  activesupport (>= 4)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activesupport (4.2.0)
10
+ activesupport (4.2.1)
11
11
  i18n (~> 0.7)
12
12
  json (~> 1.7, >= 1.7.7)
13
13
  minitest (~> 5.1)
@@ -15,8 +15,8 @@ GEM
15
15
  tzinfo (~> 1.1)
16
16
  diff-lcs (1.2.5)
17
17
  i18n (0.7.0)
18
- json (1.8.2)
19
- minitest (5.5.1)
18
+ json (1.8.3)
19
+ minitest (5.7.0)
20
20
  rspec (3.1.0)
21
21
  rspec-core (~> 3.1.0)
22
22
  rspec-expectations (~> 3.1.0)
@@ -29,7 +29,7 @@ GEM
29
29
  rspec-mocks (3.1.3)
30
30
  rspec-support (~> 3.1.0)
31
31
  rspec-support (3.1.2)
32
- thread_safe (0.3.4)
32
+ thread_safe (0.3.5)
33
33
  tzinfo (1.2.2)
34
34
  thread_safe (~> 0.1)
35
35
 
@@ -13,7 +13,6 @@ class LoGspot
13
13
  }
14
14
  @raw_output = @file = Output::File.new(file_or_file_name)
15
15
  @top_output = @output = Output::Wrap.new(wrapper, @file)
16
- @level = nil
17
16
  end
18
17
 
19
18
  def tagged(tag, &block)
@@ -103,7 +102,7 @@ class LoGspot
103
102
 
104
103
  private
105
104
 
106
- attr_reader :raw_output, :top_output, :output, :level
105
+ attr_reader :raw_output, :top_output, :output
107
106
 
108
107
  def write(l, *args, &block)
109
108
  output.puts(level: l, message: args[0], args: args, arg_block: block)
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logspot'
3
- s.version = '0.6.3'
3
+ s.version = '0.6.4'
4
4
  s.authors = ['Tetsuri Moriya']
5
5
  s.email = ['tetsuri.moriya@gmail.com']
6
6
  s.summary = 'Logger'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logspot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tetsuri Moriya