git-semaphore 2.7.0 → 2.8.0

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: 2a2bcdcd1c71d059c0e582c0f683a035ed8819167e5d09f0b11a0229a1925637
4
- data.tar.gz: c89d272a3cda8f81878c16cd4d79a6a1733bafa62155b185b8b40e57371e780a
3
+ metadata.gz: dc5612a4161eb03ad1b94d51404679d0891abb804ab119939590fc4a8f70def0
4
+ data.tar.gz: b35715d954910ea1de3b66bf64b7b7b0015dec42e07cdc285137e88ba9f905eb
5
5
  SHA512:
6
- metadata.gz: 5670ed6af0a2f3d30932ea87258cb6ac78edc0e15644dff352ee2326aa68661c62efa42ea441864fb89f5566a1dc770b85fc7a5c5eb1f31394f10f9d0eafe48c
7
- data.tar.gz: d8b721837898005b9452438d9a2d31181a8a166b11004e0baa6653ac6035e35888d609d8b25eff1de7af1fdfd0980918e1a3fa2f816222b840662d01177e161b
6
+ metadata.gz: 9c15afac6f253ec5b0963d54c6b34af9612c2ef60587f3de6aad38a881d4a0a5c7b6b4d1197a36bfe3acd67652ad933fa8e2eba89b2c48cf2ed9e80001166555
7
+ data.tar.gz: 1500b238a715722b392b31a63860ddd06f26f88dd2a56cc4e2d23960411596225820295b8ed34e2e93a6c061f95c15044e4d9cf8898f2449afaaffc5ffc8d6d3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- git-semaphore (2.7.0)
4
+ git-semaphore (2.8.0)
5
5
  rugged (~> 0.27)
6
6
  slop (~> 4.6)
7
7
 
@@ -33,7 +33,7 @@ GEM
33
33
  ruby-progressbar (~> 1.7)
34
34
  unicode-display_width (~> 1.4.0)
35
35
  ruby-progressbar (1.10.0)
36
- rugged (0.28.0)
36
+ rugged (0.28.1)
37
37
  slop (4.6.2)
38
38
  unicode-display_width (1.4.1)
39
39
 
@@ -38,6 +38,14 @@ module Git
38
38
  started_at: started_at.to_date,
39
39
  finished_at: finished_at.to_date,
40
40
  }
41
+ build['iso8601'] = {
42
+ started_at: started_at.utc.iso8601,
43
+ finished_at: finished_at.utc.iso8601,
44
+ }
45
+ build['epoch'] = {
46
+ started_at: started_at.to_f,
47
+ finished_at: finished_at.to_f,
48
+ }
41
49
  build['duration'] = {
42
50
  seconds: (finished_at - started_at).to_i,
43
51
  minutes: format('%0.2f', (finished_at - started_at) / 60).to_f,
@@ -1,7 +1,7 @@
1
1
  module Git
2
2
  module Semaphore
3
3
  NAME = 'git-semaphore'.freeze
4
- VERSION = '2.7.0'.freeze
4
+ VERSION = '2.8.0'.freeze
5
5
 
6
6
  def self.version
7
7
  "#{NAME} v#{VERSION}"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-semaphore
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.0
4
+ version: 2.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Vandenberk
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-03-01 00:00:00.000000000 Z
11
+ date: 2019-03-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rugged