git_helper 2.0.1 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a1e24bf2314c2574a9158042ecf88500c5cd00a6cad451f55bdcc1d35a273b85
4
- data.tar.gz: e3506380e78e33599df212c386a3e65abd2436e732dad95e4cbeff2c0fcc7eb6
3
+ metadata.gz: e9613df3e7ab9cb13b6f955b09d4b128bad3f9cf9a2e8888404c8a3c7a995924
4
+ data.tar.gz: a7a3341b2cfe6a807b351f0c5c09a889c900ab3c058f5babceb8134f341801c3
5
5
  SHA512:
6
- metadata.gz: 8a971a9faca09229a62f28dbdc244eb0913292cc7d2e4d667dae6c5d40b5c53240497f808a48409349faf6d3dbe535e6f4571d28e002509c88251aef8ae23c1d
7
- data.tar.gz: a492d9be7914fb1d9d995ae0b721336bfaa8749ffcea90b1c4dca6d9443f03beac7b254aa9347b6260153060e387c293de382900bb01511692f741ecc9a7778c
6
+ metadata.gz: c5ec564ba24b1af28ce27a74d27a74fecbabd085eab8bdf0fac7b55f31533bdd92077419218829988588f93e8b2df6b4e3138e9a3db2b5073db8d3c435c18df1
7
+ data.tar.gz: b94d58e9a348fd97635a51c7f42eef77d7bbf7619141b14c07bcc551412de677a7af8e55975a81650bb2127da02e36ab5ec759846fa69d952b831960c7e34e31
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- git_helper (2.0.1)
4
+ git_helper (2.0.2)
5
5
  gitlab (~> 4.16)
6
6
  gli (~> 2.13)
7
7
  highline (~> 2.0)
data/README.md CHANGED
@@ -32,7 +32,7 @@ As an additional option, you can set each of the following commands to be a git
32
32
  ```bash
33
33
  # As a Gem # As a Plugin
34
34
  git-helper clean-branches git clean-branches
35
- git-helper pull-request --create git pull-request --create
35
+ git-helper code-request --create git code-request --create
36
36
  ```
37
37
 
38
38
  To do this, clone this repository from GitHub, and add the following line to your `~/.bash_profile`:
@@ -101,7 +101,7 @@ git-helper clean-branches
101
101
 
102
102
  ### `code-request`
103
103
 
104
- This command can be used to handily make new GitHub/GitLab pull/merge requests and to merge those requests from the command line. The command uses either the [`Octokit::Client`](https://octokit.github.io/octokit.rb/Octokit/Client.html) or [`Gitlab` client](https://github.com/NARKOZ/gitlab) to do this, so make sure you have a `.git_config.yml` file set up in the home directory of your computer. For instructions on how to do that, see [Usage](#usage).
104
+ This command can be used to handily make new GitHub/GitLab pull/merge requests and to merge those requests from the command line. The command uses either the [`Octokit::Client`](https://octokit.github.io/octokit.rb/Octokit/Client.html) or [`Gitlab` client](https://github.com/NARKOZ/gitlab) to do this, so make sure you have a `.git_config.yml` file set up in the home directory of your computer. For instructions on how to do that, see [Gem Usage](#gem-usage).
105
105
 
106
106
  After setup is complete, you can call the file, and send in a flag indicating whether to create a code request, `-c`, or to merge a code request, `-m`.
107
107
 
File without changes
@@ -1,3 +1,3 @@
1
1
  module GitHelper
2
- VERSION = '2.0.1'
2
+ VERSION = '2.0.2'
3
3
  end
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.1
4
+ version: 2.0.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: 2020-10-02 00:00:00.000000000 Z
11
+ date: 2020-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gitlab
@@ -188,7 +188,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
188
188
  - !ruby/object:Gem::Version
189
189
  version: '0'
190
190
  requirements: []
191
- rubygems_version: 3.1.2
191
+ rubygems_version: 3.1.4
192
192
  signing_key:
193
193
  specification_version: 4
194
194
  summary: A set of GitHub and GitLab workflow scripts.