git_helper 2.0.0 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +23 -15
  3. data/Guardfile +1 -1
  4. data/README.md +21 -12
  5. data/Rakefile +1 -37
  6. data/bin/git-helper +3 -10
  7. data/lib/git_helper.rb +5 -2
  8. data/lib/git_helper/change_remote.rb +0 -3
  9. data/lib/git_helper/checkout_default.rb +0 -2
  10. data/lib/git_helper/clean_branches.rb +0 -2
  11. data/lib/git_helper/code_request.rb +0 -5
  12. data/lib/git_helper/empty_commit.rb +0 -2
  13. data/lib/git_helper/forget_local_commits.rb +0 -2
  14. data/lib/git_helper/git_config_reader.rb +1 -3
  15. data/lib/git_helper/gitlab_client.rb +0 -3
  16. data/lib/git_helper/highline_cli.rb +0 -2
  17. data/lib/git_helper/local_code.rb +17 -13
  18. data/lib/git_helper/merge_request.rb +1 -4
  19. data/lib/git_helper/new_branch.rb +0 -3
  20. data/lib/git_helper/octokit_client.rb +0 -3
  21. data/lib/git_helper/pull_request.rb +1 -4
  22. data/lib/git_helper/version.rb +1 -1
  23. data/plugins.zip +0 -0
  24. data/spec/git_helper/change_remote_spec.rb +19 -16
  25. data/spec/git_helper/checkout_default_spec.rb +2 -1
  26. data/spec/git_helper/clean_branches_spec.rb +2 -1
  27. data/spec/git_helper/code_request_spec.rb +21 -18
  28. data/spec/git_helper/empty_commit_spec.rb +2 -1
  29. data/spec/git_helper/forget_local_commits_spec.rb +2 -1
  30. data/spec/git_helper/git_config_reader_spec.rb +11 -8
  31. data/spec/git_helper/gitlab_client_spec.rb +2 -1
  32. data/spec/git_helper/highline_cli_spec.rb +40 -37
  33. data/spec/git_helper/local_code_spec.rb +64 -27
  34. data/spec/git_helper/merge_request_spec.rb +36 -28
  35. data/spec/git_helper/new_branch_spec.rb +2 -1
  36. data/spec/git_helper/octokit_client_spec.rb +2 -1
  37. data/spec/git_helper/pull_request_spec.rb +36 -28
  38. data/spec/spec_helper.rb +2 -1
  39. metadata +21 -6
@@ -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: 2.0.0
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-10-02 00:00:00.000000000 Z
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.2
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 to provide a smoother development
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