lapis 0.2.1 → 0.2.2

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lapis.gemspec +1 -1
  3. data/lib/lapis.rb +3 -4
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d79d065bc87d4c884ac3ae6e279055df953591d2
4
- data.tar.gz: af37005ee059848ab74979f70a1bc69839aa8d48
3
+ metadata.gz: b8bdf1d293624816f4206e61c0f6fb8baba76bcf
4
+ data.tar.gz: 797806b172d62888428c8cc366482415f14cc314
5
5
  SHA512:
6
- metadata.gz: 442101361a0a9decb3cba12d4be5711c677025ff835479d63419d5f8f3f366bd438d1aa3730f916e18e5d711dd126bd4658af8bc34bc1594b49ecd56158831b6
7
- data.tar.gz: 422a0132c8023e85aa89e3a2f8eb51dba7c835e65bc0d065e37ea04c76bc73540646c7684e1a33586881f5e426e9bdcaa3386468c40ca2b3c400f2d5bed663de
6
+ metadata.gz: 73b02d7d9d1596e559567952db28e2acb1441389815d0af151503faf18b5ff0de48d91341bbf3cf9ae001ef8feaf3ac986784366f6e24595e3d013c42c9e02f4
7
+ data.tar.gz: c9563b2231d811c1b8bd46696e309b47394d44cf335339665cffd89ecfd87f6f14998d5da7c8eefdce24b21dd92b741d0e58f79e6ab985f8eaa5e36756b98403
data/lapis.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["citrux29@gmail.com"]
11
11
  spec.description = "A lightweight logging utility for Ruby."
12
12
  spec.summary = ""
13
- spec.homepage = "https://www.github.com/Citruxy/lapis"
13
+ spec.homepage = "https://citruxy.github.io/lapis"
14
14
  spec.license = "GPLv3"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
data/lib/lapis.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Lapis
2
2
 
3
- VERSION = '0.2.1'
3
+ VERSION = '0.2.2'
4
4
 
5
5
  class Logger
6
6
 
@@ -59,9 +59,8 @@ module Lapis
59
59
  output_channel.flush if file?
60
60
  end
61
61
 
62
- def respond_to?(name)
63
- return true if @levels.include?(name)
64
- super
62
+ def respond_to_missing?(name, include_private = false)
63
+ @levels.include?(name) || super
65
64
  end
66
65
 
67
66
  def method_missing(name, *args)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lapis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Citruxy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-02 00:00:00.000000000 Z
11
+ date: 2013-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,7 +52,7 @@ files:
52
52
  - Rakefile
53
53
  - lapis.gemspec
54
54
  - lib/lapis.rb
55
- homepage: https://www.github.com/Citruxy/lapis
55
+ homepage: https://citruxy.github.io/lapis
56
56
  licenses:
57
57
  - GPLv3
58
58
  metadata: {}