git-maintain 0.2.0 → 0.2.2.pre.1.gc26b949

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +20 -1
  3. data/README.md +1 -1
  4. data/lib/branch.rb +1 -0
  5. data/lib/repo.rb +1 -1
  6. metadata +18 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 216d826fe15a57ca1d457a39bb20368b64eca217ac4f7a5b2119af8b7d775336
4
- data.tar.gz: 9ad2d84895fe7116dcf6b96fcca0b1b217692a2376affa2e41306ac38691902c
3
+ metadata.gz: 080f301f3346a9365b503ae837b917269c1e8b81fc300e3f3ee0416acc891f9f
4
+ data.tar.gz: 37a7423b5fa56c59fdda3c654123a7466e53938e9c1fc2a2cc57636b984b6bd9
5
5
  SHA512:
6
- metadata.gz: 3395184297ab04b2f13644bd3cba9bdbb45841bf0d96742a8726f3ff58e9b991895f7f9a029445a5bdabae481286c2e89462cc238cd525405ef1da0a35fb3e9f
7
- data.tar.gz: 5b7f168f776ff74203c1e5e609d365e62151bb19c21514faf17b5e80adaed38f4c5349adaf08c8be4feda4b5703578a7126ee71467c2beafb43b01d04fe0be64
6
+ metadata.gz: d7a8bb88151eaf701bbaadbe493d4240f37e03a892a958f32c38b94f0f43b1ee8b5846ca6c27802f25822e5389df013e8ac20a8025fbd1def71830a13bf290f9
7
+ data.tar.gz: 7c5d0142287997ae675183ffa48aa35a7bda4dc628cb4bcf54e12892232bb6852cbaf7250e5a9887864f987e36ef8e275c6f2262ca60ba4c167ad99de45b6c2d
data/CHANGELOG CHANGED
@@ -1,4 +1,23 @@
1
- 0.2.0 (2018-07-213)
1
+ ------------------
2
+ 0.2.3
3
+ ------------------
4
+
5
+ ------------------
6
+ 0.2.2 (2018-07-13)
7
+ ------------------
8
+
9
+ * Fix path to git-release (assume it is properly installed)
10
+ * Fix release date handling in CHANGELOG
11
+
12
+ ------------------
13
+ 0.2.1 (2018-07-13)
14
+ ------------------
15
+
16
+ * Add dependency to github-release
17
+ * Add release script
18
+
19
+ ------------------
20
+ 0.2.0 (2018-07-13)
2
21
  ------------------
3
22
 
4
23
  * Initial release.
data/README.md CHANGED
@@ -4,7 +4,7 @@ The idea is to script most of the maintenance tasks so the maintainer can focus
4
4
 
5
5
  - Note: the workflow is highly inspired to the git-topic-branches (https://github.com/nmorey/git-topic-branches)
6
6
  and both can be used at the same time
7
- - Note2: Releasing on github is done through the git-release (https://github.com/mpalmer/github-release)
7
+ - Note2: Releasing on github is done through github-release gem (https://github.com/mpalmer/github-release)
8
8
 
9
9
  # Command summary
10
10
 
data/lib/branch.rb CHANGED
@@ -404,6 +404,7 @@ module GitMaintain
404
404
 
405
405
  def steal_one(opts, commit)
406
406
  subj=@repo.runGit("log -1 --format=\"%s\" #{commit}")
407
+ subj.gsub!(/"/, '\"')
407
408
  msg=''
408
409
 
409
410
  # Let's grab the mainline commit id, this is useful if the version tag
data/lib/repo.rb CHANGED
@@ -2,7 +2,7 @@ module GitMaintain
2
2
  class Repo
3
3
  VALID_REPO = "github"
4
4
  STABLE_REPO = "stable"
5
- SUBMIT_BINARY="/usr/bin/git-release.ruby2.5"
5
+ SUBMIT_BINARY="git-release"
6
6
 
7
7
  ACTION_LIST = [
8
8
  :list_branches,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-maintain
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.2.pre.1.gc26b949
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicolas Morey-Chaisemartin
@@ -9,7 +9,21 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
  date: 2018-07-13 00:00:00.000000000 Z
12
- dependencies: []
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: github-release
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  description: |-
14
28
  Be lazy and let git-maintain do all the heavy lifting for maintaining stable branches.
15
29
  Leaves you only with the essential: reviewing the selected patches and decide where they should go.
@@ -44,9 +58,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
44
58
  version: '0'
45
59
  required_rubygems_version: !ruby/object:Gem::Requirement
46
60
  requirements:
47
- - - ">="
61
+ - - ">"
48
62
  - !ruby/object:Gem::Version
49
- version: '0'
63
+ version: 1.3.1
50
64
  requirements: []
51
65
  rubyforge_project:
52
66
  rubygems_version: 2.7.7