parse_log_drain 0.2.0 → 0.2.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ed7293236b03380e468877612036d0d05b0c402a
4
- data.tar.gz: 5025c2234c8eb5663d1713f76318ca46b2cbacdf
3
+ metadata.gz: 247634907d4df2658ade4c1e1a2f8ae35381624d
4
+ data.tar.gz: a993cf184a19f651f8e2272453b9e64e9c42582b
5
5
  SHA512:
6
- metadata.gz: ad955884d6397909113ae48120b145681ef912fc36ba57a15f472c0f4023484393b7d0533b4d8ad8ea47298f533cf6ba09dfa3db04d2a2bbf96ec836c02f91e3
7
- data.tar.gz: 00514fb71c1556b20a7dfedd4fabb8b36b24cdb199f3649f171a2bebd9e1915002056f164ee7392921ad7150794dd084fb062f2c4dbcd3025223d58531fece27
6
+ metadata.gz: 5346e578025b9056b506da211d253b0d5986346ce1397c46c97c2342123bde4ef3bd57bb77ec14b1237cba33121572b12cdcc24a00ea2951101d59d674edc887
7
+ data.tar.gz: c605d11adb7b44aa53b354b674d0fc0bd1151173c760253f5d94876f2b2862aedfe68dda8daff23ec7f4fd355347322605c0417198196cc25ad7e38db0e821c8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## [0.2.1](https://github.com/jasonhutchens/parse_log_drain/tree/0.2.1) (2015-07-16)
4
+
5
+ [Full Changelog](https://github.com/jasonhutchens/parse_log_drain/compare/0.2.0...0.2.1)
6
+
3
7
  ## [0.2.0](https://github.com/jasonhutchens/parse_log_drain/tree/0.2.0) (2015-07-16)
4
8
 
5
9
  [Full Changelog](https://github.com/jasonhutchens/parse_log_drain/compare/0.1.1...0.2.0)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
@@ -15,7 +15,7 @@ threads =
15
15
  log = File.join(log_dir, filename)
16
16
  loop do
17
17
  File.open(log, "a+") { |file| file.write("*** STARTING PARSE LOG DRAIN FOR '#{app}' ***\n") }
18
- `cd #{ARGV.first}; parse log --follow=true --level="INFO" "#{app}" >> #{log} 2>&1`
18
+ `cd #{ARGV.first}; parse logs --follow=true --level="INFO" "#{app}" >> #{log} 2>&1`
19
19
  File.open(log, "a+") { |file| file.write("*** EXITED WITH STATUS #{$?.exitstatus} ***\n") }
20
20
  sleep 30
21
21
  end
@@ -2,11 +2,11 @@
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: parse_log_drain 0.2.0 ruby lib
5
+ # stub: parse_log_drain 0.2.1 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "parse_log_drain"
9
- s.version = "0.2.0"
9
+ s.version = "0.2.1"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parse_log_drain
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Hutchens