git-maintain 0.7.0 → 0.8.0
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/CHANGELOG +14 -0
- data/LICENSE +674 -22
- data/README.md +26 -5
- data/lib/addons/RDMACore.rb +54 -3
- data/lib/branch.rb +84 -49
- data/lib/ci.rb +88 -0
- data/lib/common.rb +16 -11
- data/lib/repo.rb +143 -68
- data/lib/travis.rb +18 -61
- metadata +16 -8
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-maintain
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nicolas Morey-Chaisemartin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: octokit
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0'
|
19
|
+
version: '3.0'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '5'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
27
|
- - ">="
|
25
28
|
- !ruby/object:Gem::Version
|
26
|
-
version: '0'
|
29
|
+
version: '3.0'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '5'
|
27
33
|
description: |-
|
28
34
|
Be lazy and let git-maintain do all the heavy lifting for maintaining stable branches.
|
29
35
|
Leaves you only with the essential: reviewing the selected patches and decide where they should go.
|
@@ -40,12 +46,13 @@ files:
|
|
40
46
|
- git-maintain-completion.sh
|
41
47
|
- lib/addons/RDMACore.rb
|
42
48
|
- lib/branch.rb
|
49
|
+
- lib/ci.rb
|
43
50
|
- lib/common.rb
|
44
51
|
- lib/repo.rb
|
45
52
|
- lib/travis.rb
|
46
53
|
homepage: https://github.com/nmorey/git-maintain
|
47
54
|
licenses:
|
48
|
-
-
|
55
|
+
- GPLv3
|
49
56
|
metadata: {}
|
50
57
|
post_install_message:
|
51
58
|
rdoc_options: []
|
@@ -62,8 +69,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
62
69
|
- !ruby/object:Gem::Version
|
63
70
|
version: '0'
|
64
71
|
requirements: []
|
65
|
-
|
72
|
+
rubyforge_project:
|
73
|
+
rubygems_version: 2.7.7
|
66
74
|
signing_key:
|
67
75
|
specification_version: 4
|
68
|
-
summary: Your ultimate script for maintaining stable branches.
|
76
|
+
summary: Your ultimate script for maintaining stable branches and releasing your project.
|
69
77
|
test_files: []
|