git_helper 3.2.1 → 3.2.2
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/README.md +5 -5
- data/bin/git-helper +1 -1
- data/lib/git_helper/version.rb +1 -1
- metadata +3 -4
- data/Gemfile.lock +0 -111
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0278ec1bcdeffdfc4ff94dcb4853f0d0d9a37c99799d90ab04cb0b59af49d7aa'
|
|
4
|
+
data.tar.gz: ac395aad1492142aba911277e492eb49dd97345e40f81910eed0692618f973a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73cedc8f831a0fea6543fe78fa877eeeba394a43c2f5bd038b65d30a71f6830964c40c23dc3aeb0c4056130d1ffe9ceb14c021eb181f2bd3007eaa9c2533e891
|
|
7
|
+
data.tar.gz: 14d32de16eaf5cd1579464afbaf6c1068514f1cbbaf7c94eeddc3d1fd44b224a94cb93f29f60ec4918d292a7fdde1c326068c0e093848a51dc36f4305599c458
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# git_helper [](https://codeclimate.com/github/emmahsax/git_helper/maintainability) [](https://github.com/emmahsax/git_helper/actions/workflows/main.yml)
|
|
2
2
|
|
|
3
3
|
## Gem Usage
|
|
4
4
|
|
|
@@ -70,7 +70,7 @@ alias gnb="git new-branch"
|
|
|
70
70
|
|
|
71
71
|
And then, running `gnb` maps to `git new-branch`, which again routes to `git-helper new-branch`.
|
|
72
72
|
|
|
73
|
-
For a full list of the git aliases I prefer to use, check out my [Git Aliases gist](https://gist.github.com/
|
|
73
|
+
For a full list of the git aliases I prefer to use, check out my [Git Aliases gist](https://gist.github.com/emmahsax/e8744fe253fba1f00a621c01a2bf68f5).
|
|
74
74
|
|
|
75
75
|
If you're going to make using git workflows easier, might as well provide lots of options 😃.
|
|
76
76
|
|
|
@@ -173,9 +173,9 @@ The command either accepts a branch name right away or it will ask you for the n
|
|
|
173
173
|
|
|
174
174
|
## Contributing
|
|
175
175
|
|
|
176
|
-
To submit a feature request, bug ticket, etc, please submit an official [GitHub Issue](https://github.com/
|
|
176
|
+
To submit a feature request, bug ticket, etc, please submit an official [GitHub Issue](https://github.com/emmahsax/git_helper/issues/new).
|
|
177
177
|
|
|
178
|
-
To report any security vulnerabilities, please view this project's [Security Policy](https://github.com/
|
|
178
|
+
To report any security vulnerabilities, please view this project's [Security Policy](https://github.com/emmahsax/git_helper/security/policy).
|
|
179
179
|
|
|
180
180
|
When interacting with this repository, please follow [Contributor Covenant's Code of Conduct](https://contributor-covenant.org).
|
|
181
181
|
|
|
@@ -185,7 +185,7 @@ To make a new release of this gem:
|
|
|
185
185
|
|
|
186
186
|
1. Merge the pull request via the big green button
|
|
187
187
|
2. Run `git tag vX.X.X` and `git push --tag`
|
|
188
|
-
3. Make a new release [here](https://github.com/
|
|
188
|
+
3. Make a new release [here](https://github.com/emmahsax/git_helper/releases/new)
|
|
189
189
|
4. Run `gem build *.gemspec`
|
|
190
190
|
5. Run `gem push *.gem` to push the new gem to RubyGems
|
|
191
191
|
6. Run `rm *.gem` to clean up your local repository
|
data/bin/git-helper
CHANGED
|
@@ -14,7 +14,7 @@ wrap_help_text :verbatim
|
|
|
14
14
|
program_long_desc """
|
|
15
15
|
DOCUMENTATION
|
|
16
16
|
For documentation and help in setting up your Git configuration files,
|
|
17
|
-
see Git Helper's GitHub repo: https://github.com/
|
|
17
|
+
see Git Helper's GitHub repo: https://github.com/emmahsax/git_helper
|
|
18
18
|
"""
|
|
19
19
|
|
|
20
20
|
arg :old_owner
|
data/lib/git_helper/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git_helper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Emma Sax
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-02-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gitlab
|
|
@@ -145,7 +145,6 @@ extensions: []
|
|
|
145
145
|
extra_rdoc_files: []
|
|
146
146
|
files:
|
|
147
147
|
- Gemfile
|
|
148
|
-
- Gemfile.lock
|
|
149
148
|
- Guardfile
|
|
150
149
|
- LICENSE
|
|
151
150
|
- README.md
|
|
@@ -183,7 +182,7 @@ files:
|
|
|
183
182
|
- spec/git_helper/octokit_client_spec.rb
|
|
184
183
|
- spec/git_helper/pull_request_spec.rb
|
|
185
184
|
- spec/spec_helper.rb
|
|
186
|
-
homepage: https://github.com/
|
|
185
|
+
homepage: https://github.com/emmahsax/git_helper
|
|
187
186
|
licenses:
|
|
188
187
|
- MIT
|
|
189
188
|
metadata: {}
|
data/Gemfile.lock
DELETED
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
git_helper (3.2.0)
|
|
5
|
-
gitlab (~> 4.16)
|
|
6
|
-
gli (~> 2.13)
|
|
7
|
-
highline (~> 2.0)
|
|
8
|
-
octokit (~> 4.18)
|
|
9
|
-
|
|
10
|
-
GEM
|
|
11
|
-
remote: https://rubygems.org/
|
|
12
|
-
specs:
|
|
13
|
-
addressable (2.7.0)
|
|
14
|
-
public_suffix (>= 2.0.2, < 5.0)
|
|
15
|
-
coderay (1.1.3)
|
|
16
|
-
concurrent-ruby (1.1.7)
|
|
17
|
-
diff-lcs (1.4.4)
|
|
18
|
-
faker (2.15.1)
|
|
19
|
-
i18n (>= 1.6, < 2)
|
|
20
|
-
faraday (1.3.0)
|
|
21
|
-
faraday-net_http (~> 1.0)
|
|
22
|
-
multipart-post (>= 1.2, < 3)
|
|
23
|
-
ruby2_keywords
|
|
24
|
-
faraday-net_http (1.0.0)
|
|
25
|
-
ffi (1.14.2)
|
|
26
|
-
formatador (0.2.5)
|
|
27
|
-
gitlab (4.17.0)
|
|
28
|
-
httparty (~> 0.18)
|
|
29
|
-
terminal-table (~> 1.5, >= 1.5.1)
|
|
30
|
-
gli (2.19.2)
|
|
31
|
-
guard (2.16.2)
|
|
32
|
-
formatador (>= 0.2.4)
|
|
33
|
-
listen (>= 2.7, < 4.0)
|
|
34
|
-
lumberjack (>= 1.0.12, < 2.0)
|
|
35
|
-
nenv (~> 0.1)
|
|
36
|
-
notiffany (~> 0.0)
|
|
37
|
-
pry (>= 0.9.12)
|
|
38
|
-
shellany (~> 0.0)
|
|
39
|
-
thor (>= 0.18.1)
|
|
40
|
-
guard-compat (1.2.1)
|
|
41
|
-
guard-rspec (4.7.3)
|
|
42
|
-
guard (~> 2.1)
|
|
43
|
-
guard-compat (~> 1.1)
|
|
44
|
-
rspec (>= 2.99.0, < 4.0)
|
|
45
|
-
highline (2.0.3)
|
|
46
|
-
httparty (0.18.1)
|
|
47
|
-
mime-types (~> 3.0)
|
|
48
|
-
multi_xml (>= 0.5.2)
|
|
49
|
-
i18n (1.8.7)
|
|
50
|
-
concurrent-ruby (~> 1.0)
|
|
51
|
-
listen (3.4.1)
|
|
52
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
53
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
|
54
|
-
lumberjack (1.2.8)
|
|
55
|
-
method_source (1.0.0)
|
|
56
|
-
mime-types (3.3.1)
|
|
57
|
-
mime-types-data (~> 3.2015)
|
|
58
|
-
mime-types-data (3.2020.1104)
|
|
59
|
-
multi_xml (0.6.0)
|
|
60
|
-
multipart-post (2.1.1)
|
|
61
|
-
nenv (0.3.0)
|
|
62
|
-
notiffany (0.1.3)
|
|
63
|
-
nenv (~> 0.1)
|
|
64
|
-
shellany (~> 0.0)
|
|
65
|
-
octokit (4.20.0)
|
|
66
|
-
faraday (>= 0.9)
|
|
67
|
-
sawyer (~> 0.8.0, >= 0.5.3)
|
|
68
|
-
pry (0.13.1)
|
|
69
|
-
coderay (~> 1.1)
|
|
70
|
-
method_source (~> 1.0)
|
|
71
|
-
public_suffix (4.0.6)
|
|
72
|
-
rake (13.0.3)
|
|
73
|
-
rb-fsevent (0.10.4)
|
|
74
|
-
rb-inotify (0.10.1)
|
|
75
|
-
ffi (~> 1.0)
|
|
76
|
-
rspec (3.10.0)
|
|
77
|
-
rspec-core (~> 3.10.0)
|
|
78
|
-
rspec-expectations (~> 3.10.0)
|
|
79
|
-
rspec-mocks (~> 3.10.0)
|
|
80
|
-
rspec-core (3.10.1)
|
|
81
|
-
rspec-support (~> 3.10.0)
|
|
82
|
-
rspec-expectations (3.10.1)
|
|
83
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
84
|
-
rspec-support (~> 3.10.0)
|
|
85
|
-
rspec-mocks (3.10.1)
|
|
86
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
87
|
-
rspec-support (~> 3.10.0)
|
|
88
|
-
rspec-support (3.10.1)
|
|
89
|
-
ruby2_keywords (0.0.2)
|
|
90
|
-
sawyer (0.8.2)
|
|
91
|
-
addressable (>= 2.3.5)
|
|
92
|
-
faraday (> 0.8, < 2.0)
|
|
93
|
-
shellany (0.0.1)
|
|
94
|
-
terminal-table (1.8.0)
|
|
95
|
-
unicode-display_width (~> 1.1, >= 1.1.1)
|
|
96
|
-
thor (1.0.1)
|
|
97
|
-
unicode-display_width (1.7.0)
|
|
98
|
-
|
|
99
|
-
PLATFORMS
|
|
100
|
-
x86_64-darwin-19
|
|
101
|
-
|
|
102
|
-
DEPENDENCIES
|
|
103
|
-
bundler (~> 2.2)
|
|
104
|
-
faker (~> 2.15)
|
|
105
|
-
git_helper!
|
|
106
|
-
guard-rspec (~> 4.3)
|
|
107
|
-
rake (~> 13.0)
|
|
108
|
-
rspec (~> 3.9)
|
|
109
|
-
|
|
110
|
-
BUNDLED WITH
|
|
111
|
-
2.2.4
|