git-story-workflow 0.5.0 → 0.5.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: dfb4794483a9fc8fae288f546621e9b2b3ca26cb4957a1b38234ed5a5c224f38
4
- data.tar.gz: b41cfb8c0e1b5fe6aea8e7093b19a0d34aa743a2dbd4da89cb5fcc5fcf077a67
3
+ metadata.gz: '09d8024d7376c0cf166225a45df8228dabc6ca84bbf2c70c157b0c2181989e3a'
4
+ data.tar.gz: 317db6435b9298573f50637d4fd4bd1fadb854e43bca9bb46814e2044b90373f
5
5
  SHA512:
6
- metadata.gz: 529663aa542c6afc333d21bf6f3155d5a361456f05f76abfcb41581834fffb1f0271e3ea3a2a2ff97a8620c9805b9bedc6b33b77172617fb0b39868bc3cf363c
7
- data.tar.gz: 971b4044b632e27edda167a514fffc97967bc73c5b17ff685ecfda07b73dfdaaa6d825412e5033d0f4b5988f69f53e14271f77a58b33e346c86315da52349b4b
6
+ metadata.gz: d97e9e54e2bfe9a89f2ccc2b03cde0f6eafe1642848990e0ad6bdfa0bf6499c307b22a13cd07f6e58756dab6b4137729db065b8d8baadf7552a92f48c256f106
7
+ data.tar.gz: 81280ea0c361386a0fd418486ecffeee64e405c27c477170bffcb421e779e67fdeaee24bb4fd7d5a9b7173f077f0a1e6c8bb5f1f7756853d4159ec52fc344f5f
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.0
1
+ 0.5.1
@@ -1,14 +1,14 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: git-story-workflow 0.5.0 ruby lib
2
+ # stub: git-story-workflow 0.5.1 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "git-story-workflow".freeze
6
- s.version = "0.5.0"
6
+ s.version = "0.5.1"
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
9
9
  s.require_paths = ["lib".freeze]
10
10
  s.authors = ["Florian Frank".freeze]
11
- s.date = "2018-07-12"
11
+ s.date = "2018-07-13"
12
12
  s.description = "Gem abstracting a git workflow\u2026".freeze
13
13
  s.email = "flori@ping.de".freeze
14
14
  s.executables = ["git-story".freeze]
@@ -96,6 +96,7 @@ class Git::Story::App
96
96
 
97
97
  command doc: '[BRANCH] display test status of branch'
98
98
  def test_status(branch = current(check: false))
99
+ url = nil
99
100
  watch do
100
101
  auth_token = complex_config.story.semaphore_auth_token
101
102
  project = complex_config.story.semaphore_test_project
@@ -108,6 +109,7 @@ class Git::Story::App
108
109
 
109
110
  command doc: '[BRANCH] display docker build status of branch'
110
111
  def docker_status
112
+ url = nil
111
113
  watch do
112
114
  auth_token = complex_config.story.semaphore_auth_token
113
115
  project = complex_config.story.semaphore_docker_project
@@ -120,6 +122,7 @@ class Git::Story::App
120
122
 
121
123
  command doc: '[SERVER] display deploy status of branch'
122
124
  def deploy_status(server = complex_config.story.semaphore_default_server)
125
+ url = nil
123
126
  watch do
124
127
  auth_token = complex_config.story.semaphore_auth_token
125
128
  project = complex_config.story.semaphore_docker_project
@@ -1,6 +1,6 @@
1
1
  module Git::Story
2
2
  # Git::Story version
3
- VERSION = '0.5.0'
3
+ VERSION = '0.5.1'
4
4
  VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-story-workflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-07-12 00:00:00.000000000 Z
11
+ date: 2018-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gem_hadar