git-story-workflow 0.5.0 → 0.5.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 +4 -4
- data/VERSION +1 -1
- data/git-story-workflow.gemspec +3 -3
- data/lib/git/story/app.rb +3 -0
- data/lib/git/story/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '09d8024d7376c0cf166225a45df8228dabc6ca84bbf2c70c157b0c2181989e3a'
|
|
4
|
+
data.tar.gz: 317db6435b9298573f50637d4fd4bd1fadb854e43bca9bb46814e2044b90373f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d97e9e54e2bfe9a89f2ccc2b03cde0f6eafe1642848990e0ad6bdfa0bf6499c307b22a13cd07f6e58756dab6b4137729db065b8d8baadf7552a92f48c256f106
|
|
7
|
+
data.tar.gz: 81280ea0c361386a0fd418486ecffeee64e405c27c477170bffcb421e779e67fdeaee24bb4fd7d5a9b7173f077f0a1e6c8bb5f1f7756853d4159ec52fc344f5f
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
1
|
+
0.5.1
|
data/git-story-workflow.gemspec
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: git-story-workflow 0.5.
|
|
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.
|
|
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-
|
|
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]
|
data/lib/git/story/app.rb
CHANGED
|
@@ -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
|
data/lib/git/story/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2018-07-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gem_hadar
|