mklog 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 (2) hide show
  1. data/lib/mklog.rb +2 -2
  2. metadata +3 -3
data/lib/mklog.rb CHANGED
@@ -17,10 +17,10 @@ module MKLog
17
17
  # Arguments:
18
18
  # data for save: (String or Other Object)
19
19
  # debug type: (MKLog::DebugType::NORMAL or MKLog::DebugType::OBJECT)
20
- # filename: (String)
20
+ # filename: (String)
21
21
 
22
22
  def self.save(message, debug_type=MKLog::DebugType::NORMAL, filename='system.log')
23
- @dt = MKLog::DebugType::get_class(debug_type)
23
+ @dt = MKLog::DebugType.get_class(debug_type)
24
24
  @dt.filename = filename
25
25
  @dt.message = message
26
26
  @dt.save
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mklog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-02-10 00:00:00.000000000 Z
12
+ date: 2013-02-16 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Simple file logging messages and objects
15
15
  email: mrkkrstic@gmail.com
@@ -45,5 +45,5 @@ rubyforge_project:
45
45
  rubygems_version: 1.8.24
46
46
  signing_key:
47
47
  specification_version: 3
48
- summary: Log
48
+ summary: Simple file logging messages and objects
49
49
  test_files: []