yes_ship_it 0.1.1 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5ac91756b1bb840377155a902332884700512392
4
- data.tar.gz: 8082dd501a30d1b6cc9957e2b138011b01e6e4a9
3
+ metadata.gz: 6c03123d3e0851fe216fdd0135fa0e163c72da3e
4
+ data.tar.gz: d13c629643162c290b3bbf174b4bb116d274cdb0
5
5
  SHA512:
6
- metadata.gz: 7e1aed4610021735afbf02647af9d66c4580131b27d0da3ac2db3b686e405d56f4652688fd00d1632ae6784d97031ba9e20a0434de2e6a100fcaed5761176b71
7
- data.tar.gz: a48fe139e07ad8d7ad333ec18f1806e84cc83c294fa7810058bbf9395ce7d91c661bb369c01d10becfbcd21afa8c99b4a746b63b565b3c24fbd52b2b8f1b6c55
6
+ metadata.gz: 4abbf5c76e8810acf51136453016dd949e76ffd128fde6d3d19acd8addd01d22683a0a8612280c267317c989b6d8bb308cc476f16016e21b35c3ece7600a3e0d
7
+ data.tar.gz: fa36c7b3228c5c6c2f4acc73dba25a5998fac73ec48e120ad8a9c7adc01992444a35129cea52364f85c0bcee954284a9d90e603f44704454242c21d7e8259c6b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Change log of yes_ship_it
2
2
 
3
+ ## Version 0.1.2
4
+
5
+ * Parse time zone of tag date also in the case when it's different from local
6
+ time zone
7
+
3
8
  ## Version 0.1.1
4
9
 
5
10
  * Fix failure in `yes_it_shipped` assertion when parsing tag date
data/assertions/tag.rb CHANGED
@@ -15,7 +15,7 @@ module YSI
15
15
  if output
16
16
  output.each_line do |show_line|
17
17
  if show_line =~ /Date:\s+(.*)/
18
- @engine.tag_date = Time.parse($1)
18
+ @engine.tag_date = Time.strptime($1,"%a %b %d %H:%M:%S %Y %z")
19
19
  end
20
20
  end
21
21
  end
data/lib/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module YSI
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yes_ship_it
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cornelius Schumacher