git_helper 2.0.0 → 3.1.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/Gemfile.lock +23 -15
- data/Guardfile +1 -1
- data/README.md +21 -12
- data/Rakefile +1 -37
- data/bin/git-helper +3 -10
- data/lib/git_helper.rb +5 -2
- data/lib/git_helper/change_remote.rb +0 -3
- data/lib/git_helper/checkout_default.rb +0 -2
- data/lib/git_helper/clean_branches.rb +0 -2
- data/lib/git_helper/code_request.rb +0 -5
- data/lib/git_helper/empty_commit.rb +0 -2
- data/lib/git_helper/forget_local_commits.rb +0 -2
- data/lib/git_helper/git_config_reader.rb +1 -3
- data/lib/git_helper/gitlab_client.rb +0 -3
- data/lib/git_helper/highline_cli.rb +0 -2
- data/lib/git_helper/local_code.rb +17 -13
- data/lib/git_helper/merge_request.rb +1 -4
- data/lib/git_helper/new_branch.rb +0 -3
- data/lib/git_helper/octokit_client.rb +0 -3
- data/lib/git_helper/pull_request.rb +1 -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/checkout_default_spec.rb +2 -1
- data/spec/git_helper/clean_branches_spec.rb +2 -1
- data/spec/git_helper/code_request_spec.rb +21 -18
- data/spec/git_helper/empty_commit_spec.rb +2 -1
- data/spec/git_helper/forget_local_commits_spec.rb +2 -1
- data/spec/git_helper/git_config_reader_spec.rb +11 -8
- data/spec/git_helper/gitlab_client_spec.rb +2 -1
- data/spec/git_helper/highline_cli_spec.rb +40 -37
- data/spec/git_helper/local_code_spec.rb +64 -27
- data/spec/git_helper/merge_request_spec.rb +36 -28
- data/spec/git_helper/new_branch_spec.rb +2 -1
- data/spec/git_helper/octokit_client_spec.rb +2 -1
- data/spec/git_helper/pull_request_spec.rb +36 -28
- data/spec/spec_helper.rb +2 -1
- metadata +21 -6
data/spec/spec_helper.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
require 'faker'
|
2
|
+
|
1
3
|
# This file was generated by the `rspec --init` command. Conventionally, all
|
2
4
|
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
3
5
|
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
@@ -31,7 +33,6 @@ RSpec.configure do |config|
|
|
31
33
|
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
32
34
|
end
|
33
35
|
|
34
|
-
config.use_transactional_fixtures = true
|
35
36
|
config.filter_run :focus => true
|
36
37
|
config.run_all_when_everything_filtered = true
|
37
38
|
|
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:
|
4
|
+
version: 3.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Emma Sax
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gitlab
|
@@ -80,6 +80,20 @@ dependencies:
|
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '2.1'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: faker
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
83
97
|
- !ruby/object:Gem::Dependency
|
84
98
|
name: guard-rspec
|
85
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,7 +136,8 @@ dependencies:
|
|
122
136
|
- - "~>"
|
123
137
|
- !ruby/object:Gem::Version
|
124
138
|
version: '3.9'
|
125
|
-
description: A set of GitHub and GitLab workflow scripts
|
139
|
+
description: A set of GitHub and GitLab workflow scripts to provide a smoother development
|
140
|
+
process for your git projects.
|
126
141
|
email:
|
127
142
|
- emma.sax4@gmail.com
|
128
143
|
executables:
|
@@ -153,6 +168,7 @@ files:
|
|
153
168
|
- lib/git_helper/octokit_client.rb
|
154
169
|
- lib/git_helper/pull_request.rb
|
155
170
|
- lib/git_helper/version.rb
|
171
|
+
- plugins.zip
|
156
172
|
- spec/git_helper/change_remote_spec.rb
|
157
173
|
- spec/git_helper/checkout_default_spec.rb
|
158
174
|
- spec/git_helper/clean_branches_spec.rb
|
@@ -187,11 +203,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
187
203
|
- !ruby/object:Gem::Version
|
188
204
|
version: '0'
|
189
205
|
requirements: []
|
190
|
-
rubygems_version: 3.1.
|
206
|
+
rubygems_version: 3.1.4
|
191
207
|
signing_key:
|
192
208
|
specification_version: 4
|
193
|
-
summary: A set of GitHub and GitLab workflow scripts
|
194
|
-
process for your git projects.
|
209
|
+
summary: A set of GitHub and GitLab workflow scripts.
|
195
210
|
test_files:
|
196
211
|
- spec/spec_helper.rb
|
197
212
|
- spec/git_helper/octokit_client_spec.rb
|