git-story-workflow 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/git-story-workflow.gemspec +4 -4
- data/lib/git/story/app.rb +1 -1
- data/lib/git/story/pre-push +35 -0
- data/lib/git/story/setup.rb +26 -18
- data/lib/git/story/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7db0a45891bcce9a80051da5c583b30218ef6ad2881006440c6995e6ba95ad40
|
4
|
+
data.tar.gz: abcb5921d4d65d818c39ff0ee8af5c77e8b3fd517506db141e0c25e8cd1ca8ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e69e2cfd05235940649f29100fa36acfb3edfec918c673e7a79f5468b1ee529db3a54c9d00cd0eca3e0cec12df0578b6b185cef6e45fe0af747664eac897a7f9
|
7
|
+
data.tar.gz: 13f82228787833511601d676f2a648d3e0cc00f31b6462794a8f99c062309cbfd66e362d4647e24c8d70154a0f0e651c3c463881e726f8f2f22c61aa9de432f0
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.1.0
|
data/git-story-workflow.gemspec
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
# stub: git-story-workflow 1.
|
2
|
+
# stub: git-story-workflow 1.1.0 ruby lib
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "git-story-workflow".freeze
|
6
|
-
s.version = "1.
|
6
|
+
s.version = "1.1.0"
|
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 = "2020-
|
11
|
+
s.date = "2020-11-27"
|
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]
|
15
15
|
s.extra_rdoc_files = ["README.md".freeze, "lib/git/story.rb".freeze, "lib/git/story/app.rb".freeze, "lib/git/story/setup.rb".freeze, "lib/git/story/utils.rb".freeze, "lib/git/story/version.rb".freeze]
|
16
|
-
s.files = [".gitignore".freeze, "COPYING".freeze, "Gemfile".freeze, "README.md".freeze, "Rakefile".freeze, "VERSION".freeze, "bin/git-story".freeze, "config/story.yml".freeze, "git-story-workflow.gemspec".freeze, "lib/git/story.rb".freeze, "lib/git/story/app.rb".freeze, "lib/git/story/prepare-commit-msg".freeze, "lib/git/story/setup.rb".freeze, "lib/git/story/utils.rb".freeze, "lib/git/story/version.rb".freeze, "spec/git/story/app_spec.rb".freeze, "spec/spec_helper.rb".freeze]
|
16
|
+
s.files = [".gitignore".freeze, "COPYING".freeze, "Gemfile".freeze, "README.md".freeze, "Rakefile".freeze, "VERSION".freeze, "bin/git-story".freeze, "config/story.yml".freeze, "git-story-workflow.gemspec".freeze, "lib/git/story.rb".freeze, "lib/git/story/app.rb".freeze, "lib/git/story/pre-push".freeze, "lib/git/story/prepare-commit-msg".freeze, "lib/git/story/setup.rb".freeze, "lib/git/story/utils.rb".freeze, "lib/git/story/version.rb".freeze, "spec/git/story/app_spec.rb".freeze, "spec/spec_helper.rb".freeze]
|
17
17
|
s.homepage = "http://flori.github.com/git-story-workflow".freeze
|
18
18
|
s.licenses = ["Apache-2.0".freeze]
|
19
19
|
s.rdoc_options = ["--title".freeze, "Git-story-workflow".freeze, "--main".freeze, "README.md".freeze]
|
data/lib/git/story/app.rb
CHANGED
@@ -39,10 +39,10 @@ class Git::Story::App
|
|
39
39
|
@opts = go 'n:', @argv
|
40
40
|
@debug = debug
|
41
41
|
determine_command
|
42
|
+
Git::Story::Setup.perform
|
42
43
|
end
|
43
44
|
|
44
45
|
def run
|
45
|
-
Git::Story::Setup.perform
|
46
46
|
if command_of(@command)
|
47
47
|
if method(@command).parameters.include?(%i[key rest])
|
48
48
|
puts __send__(@command, *@argv, rest: @rest_argv)
|
@@ -0,0 +1,35 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
# Installed by the git-story gem
|
3
|
+
|
4
|
+
remote="$1"
|
5
|
+
url="$2"
|
6
|
+
|
7
|
+
z40=0000000000000000000000000000000000000000
|
8
|
+
|
9
|
+
while read local_ref local_sha remote_ref remote_sha
|
10
|
+
do
|
11
|
+
if [ "$local_sha" = $z40 ]
|
12
|
+
then
|
13
|
+
# Handle delete
|
14
|
+
:
|
15
|
+
else
|
16
|
+
if [ "$remote_sha" = $z40 ]
|
17
|
+
then
|
18
|
+
# New branch, examine all commits
|
19
|
+
range="$local_sha"
|
20
|
+
else
|
21
|
+
# Update to existing branch, examine new commits
|
22
|
+
range="$remote_sha..$local_sha"
|
23
|
+
fi
|
24
|
+
|
25
|
+
# Check for WIP or [TODO] commit
|
26
|
+
commit=`git rev-list -n 1 --pretty=%B "$range" | egrep -i 'WIP|\[TODO\]'`
|
27
|
+
if [ -n "$commit" -a "$FORCE" != "1" ]
|
28
|
+
then
|
29
|
+
echo >&2 "Found WIP / [TODO] commit in $local_ref, not pushing"
|
30
|
+
exit 1
|
31
|
+
fi
|
32
|
+
fi
|
33
|
+
done
|
34
|
+
|
35
|
+
exit 0
|
data/lib/git/story/setup.rb
CHANGED
@@ -11,30 +11,38 @@ module Git::Story::Setup
|
|
11
11
|
module_function
|
12
12
|
|
13
13
|
def perform(force: false)
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
14
|
+
for filename in %w[ prepare-commit-msg pre-push ]
|
15
|
+
if path = file_installed?(filename)
|
16
|
+
if force
|
17
|
+
install_file filename
|
18
|
+
elsif File.read(path).match?(MARKER)
|
19
|
+
;
|
20
|
+
else
|
21
|
+
ask(
|
22
|
+
prompt: "File #{path.inspect} not created by git-story."\
|
23
|
+
" Overwrite? (y/n, default is %s) ",
|
24
|
+
default: ?n,
|
25
|
+
) do |response|
|
26
|
+
if response == ?y
|
27
|
+
install_file filename
|
28
|
+
end
|
28
29
|
end
|
29
30
|
end
|
31
|
+
else
|
32
|
+
install_file filename
|
30
33
|
end
|
31
|
-
else
|
32
|
-
install_prepare_commit_msg
|
33
34
|
end
|
34
35
|
end
|
35
36
|
|
36
|
-
def
|
37
|
+
def file_installed?(filename)
|
38
|
+
path = File.join(HOOKS_DIR, filename)
|
39
|
+
if File.exist?(path)
|
40
|
+
path
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def install_file(filename)
|
37
45
|
File.exist?(HOOKS_DIR) or mkdir_p(HOOKS_DIR)
|
38
|
-
cp
|
46
|
+
cp File.join(__dir__, filename), File.join(HOOKS_DIR, filename)
|
39
47
|
end
|
40
48
|
end
|
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: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Florian Frank
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-11-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gem_hadar
|
@@ -174,6 +174,7 @@ files:
|
|
174
174
|
- git-story-workflow.gemspec
|
175
175
|
- lib/git/story.rb
|
176
176
|
- lib/git/story/app.rb
|
177
|
+
- lib/git/story/pre-push
|
177
178
|
- lib/git/story/prepare-commit-msg
|
178
179
|
- lib/git/story/setup.rb
|
179
180
|
- lib/git/story/utils.rb
|