git_helper 3.0.1 → 3.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +33 -23
- data/Guardfile +2 -2
- data/README.md +26 -13
- data/Rakefile +1 -1
- data/bin/git-helper +12 -16
- data/lib/git_helper.rb +6 -1
- data/lib/git_helper/change_remote.rb +1 -1
- data/lib/git_helper/code_request.rb +6 -5
- data/lib/git_helper/git_config_reader.rb +0 -2
- data/lib/git_helper/gitlab_client.rb +0 -2
- data/lib/git_helper/highline_cli.rb +12 -70
- data/lib/git_helper/local_code.rb +9 -9
- data/lib/git_helper/merge_request.rb +5 -5
- data/lib/git_helper/new_branch.rb +1 -1
- data/lib/git_helper/octokit_client.rb +0 -2
- data/lib/git_helper/pull_request.rb +4 -4
- data/lib/git_helper/version.rb +1 -1
- data/plugins.zip +0 -0
- data/spec/git_helper/change_remote_spec.rb +19 -16
- data/spec/git_helper/code_request_spec.rb +37 -34
- data/spec/git_helper/git_config_reader_spec.rb +9 -7
- data/spec/git_helper/highline_cli_spec.rb +18 -182
- data/spec/git_helper/local_code_spec.rb +62 -26
- data/spec/git_helper/merge_request_spec.rb +58 -41
- data/spec/git_helper/new_branch_spec.rb +3 -2
- data/spec/git_helper/pull_request_spec.rb +46 -38
- data/spec/spec_helper.rb +2 -0
- metadata +27 -14
data/spec/spec_helper.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.
|
4
|
+
version: 3.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Emma Sax
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gitlab
|
@@ -72,14 +72,28 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '2.
|
75
|
+
version: '2.2'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: '2.
|
82
|
+
version: '2.2'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: faker
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '2.15'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '2.15'
|
83
97
|
- !ruby/object:Gem::Dependency
|
84
98
|
name: guard-rspec
|
85
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -125,7 +139,6 @@ dependencies:
|
|
125
139
|
description: A set of GitHub and GitLab workflow scripts to provide a smoother development
|
126
140
|
process for your git projects.
|
127
141
|
email:
|
128
|
-
- emma.sax4@gmail.com
|
129
142
|
executables:
|
130
143
|
- git-helper
|
131
144
|
extensions: []
|
@@ -189,23 +202,23 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
189
202
|
- !ruby/object:Gem::Version
|
190
203
|
version: '0'
|
191
204
|
requirements: []
|
192
|
-
rubygems_version: 3.
|
205
|
+
rubygems_version: 3.2.3
|
193
206
|
signing_key:
|
194
207
|
specification_version: 4
|
195
208
|
summary: A set of GitHub and GitLab workflow scripts.
|
196
209
|
test_files:
|
197
210
|
- spec/spec_helper.rb
|
198
|
-
- spec/git_helper/octokit_client_spec.rb
|
199
|
-
- spec/git_helper/new_branch_spec.rb
|
200
|
-
- spec/git_helper/forget_local_commits_spec.rb
|
201
|
-
- spec/git_helper/clean_branches_spec.rb
|
202
211
|
- spec/git_helper/change_remote_spec.rb
|
203
212
|
- spec/git_helper/checkout_default_spec.rb
|
204
|
-
- spec/git_helper/
|
205
|
-
- spec/git_helper/gitlab_client_spec.rb
|
213
|
+
- spec/git_helper/clean_branches_spec.rb
|
206
214
|
- spec/git_helper/code_request_spec.rb
|
207
215
|
- spec/git_helper/empty_commit_spec.rb
|
208
|
-
- spec/git_helper/
|
216
|
+
- spec/git_helper/forget_local_commits_spec.rb
|
209
217
|
- spec/git_helper/git_config_reader_spec.rb
|
210
|
-
- spec/git_helper/
|
218
|
+
- spec/git_helper/gitlab_client_spec.rb
|
219
|
+
- spec/git_helper/highline_cli_spec.rb
|
211
220
|
- spec/git_helper/local_code_spec.rb
|
221
|
+
- spec/git_helper/merge_request_spec.rb
|
222
|
+
- spec/git_helper/new_branch_spec.rb
|
223
|
+
- spec/git_helper/octokit_client_spec.rb
|
224
|
+
- spec/git_helper/pull_request_spec.rb
|