tapsilog 0.3.3 → 0.3.4

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.
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ v0.3.4
2
+ Fixed syntax error
3
+
1
4
  v0.3.3
2
5
  Fixed bug with stop/status/restart actions not reading config file
3
6
 
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  gem 'echoe'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('tapsilog', '0.3.3') do |p|
5
+ Echoe.new('tapsilog', '0.3.4') do |p|
6
6
  p.author = "Palmade"
7
7
  p.project = "tapsilog"
8
8
  p.summary = "Hydrid app-level logger from Palmade. Analogger fork."
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- TAPSILOG_VERSION = "0.3.3"
3
+ TAPSILOG_VERSION = "0.3.4"
4
4
 
5
5
  require 'yaml'
6
6
  require 'optparse'
@@ -91,7 +91,7 @@ module Palmade::Tapsilog
91
91
  end
92
92
  end
93
93
 
94
- self.read_config
94
+ def self.read_config
95
95
  if File.exists?(@@config[:configfile])
96
96
  config = Utils.symbolize_keys(YAML.load(File.read(@@config[:configfile])))
97
97
  @@config.merge!(config)
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- TAPSILOG_VERSION = "0.3.3"
3
+ TAPSILOG_VERSION = "0.3.4"
4
4
 
5
5
  require 'yaml'
6
6
  require 'optparse'
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{tapsilog}
5
- s.version = "0.3.3"
5
+ s.version = "0.3.4"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Palmade"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tapsilog
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 3
10
- version: 0.3.3
9
+ - 4
10
+ version: 0.3.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Palmade