aws-logs 0.3.0 → 0.3.1

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
  SHA256:
3
- metadata.gz: '0759793548df8b9310656546548321c91d45d2cb7b26baf99a90f4344a6de4aa'
4
- data.tar.gz: 5eb4f2cfa33a74102f29c0e88b4174d5686b99c496a4f8eb1ed60506d530bcf5
3
+ metadata.gz: 93209b1d08b94e59613794379fbc6da21b69113c7ef5df6bf008fae348d1d129
4
+ data.tar.gz: a3d4f821990b9fcf41747df792595cffa1c8ba8cb41bcbceb2f915d4a08f68e4
5
5
  SHA512:
6
- metadata.gz: 398fc1c1bd9617fd6a55be36807e8e65d80d55e66d7c7bad0a04b2eb33de592a49591a16b58c9a67bcc7c173346a30b6ef070a6fa4cacda5bb60947aeadecdff
7
- data.tar.gz: 4bec6913762543ddef4f910f1e35ebe7bdc5cfd4986b0bb5978b7334871e3d5329ac47f4f5fa5f7b06024bbc65bcc10eccd965907035f042bed5de85b5870fc4
6
+ metadata.gz: 98436a84cb82b97d6872e65ac07a2c9cb1ff8eac228288df4df28b85e0dddb4139641f5bacdd66977355b1b789aea60bc1d21dc7dda8c0e4ce4af220a15c4874
7
+ data.tar.gz: 6877115a9d916ab5ac7f84ae92b1d89ad364e807e3e3f126d2ffdcf0699d2fade8e0e5d8e661a7d55635f98bad8a7b345ed6a047dedefde4fd0de26ac80fc977
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [0.3.1]
7
+ - fix --no-follow option
8
+
6
9
  ## [0.3.0]
7
10
  - display final logs upon stop_follow!
8
11
 
@@ -41,7 +41,7 @@ Since supports these formats:
41
41
  * d - days
42
42
  * w - weeks
43
43
 
44
- Since does not current support combining the formats. IE: 5m30s.
44
+ Since does not support combining the formats. IE: 5m30s.
45
45
 
46
46
  ## Filter Pattern
47
47
 
@@ -8,7 +8,7 @@ module AwsLogs
8
8
  @options = options
9
9
  @log_group_name = options[:log_group_name]
10
10
  # Setting to ensure matches default CLI option
11
- @follow = @options[:follow] || true
11
+ @follow = @options[:follow].nil? ? true : @options[:follow]
12
12
 
13
13
  @loop_count = 0
14
14
  @output = [] # for specs
@@ -1,3 +1,3 @@
1
1
  module AwsLogs
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-logs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen