gh_issues 0.4.5 → 0.4.6
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 +5 -5
- data/.bumpversion.cfg +12 -0
- data/README.md +12 -1
- data/gh_issues.gemspec +1 -0
- data/lib/gh_issues/version.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: f3206bb62ca22ed45e933f1544eb85e39f24ddeb6a49b208b775ac05b1c73bfe
|
|
4
|
+
data.tar.gz: 683d3647f76f21545662ed8e28ae3dae01f157224dcf28d243131dbb4ee66636
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f970b2039b2ad5ebcc07bf8165b5df3618fea128d9f4e1d481698c836eba015b83a80d1db7b17c4bdb2561b66f28fc6e4a8b68922e6b1d72864f6a74c59565e2
|
|
7
|
+
data.tar.gz: 37215acbfa284d06f18ec87a1a0ea9e5154c194d42570dc75e0e9844aeec7821906b5a5f7651c457b8fdefaa23240fddf3cea223ea047d94ad50c5c321a930b7
|
data/.bumpversion.cfg
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
[bumpversion]
|
|
2
|
+
current_version = 0.4.6
|
|
3
|
+
commit = True
|
|
4
|
+
|
|
5
|
+
[bumpversion:file:README.md]
|
|
6
|
+
search = version-{current_version}-yellow.svg
|
|
7
|
+
replace = version-{new_version}-yellow.svg
|
|
8
|
+
|
|
9
|
+
[bumpversion:file:lib/gh_issues/version.rb]
|
|
10
|
+
search = VERSION = "{current_version}"
|
|
11
|
+
replace = VERSION = "{new_version}"
|
|
12
|
+
|
data/README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
[](https://badge.fury.io/rb/gh_issues)
|
|
1
2
|
[](https://travis-ci.org/vigo/gh-issues)
|
|
2
|
-

|
|
3
4
|
|
|
4
5
|
# GitHub Issues
|
|
5
6
|
|
|
@@ -22,6 +23,14 @@ This is a command-line client. You can install via:
|
|
|
22
23
|
gem install gh_issues
|
|
23
24
|
```
|
|
24
25
|
|
|
26
|
+
or,
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
source "https://rubygems.pkg.github.com/vigo" do
|
|
30
|
+
gem "gh_issues"
|
|
31
|
+
end
|
|
32
|
+
```
|
|
33
|
+
|
|
25
34
|
## Usage
|
|
26
35
|
|
|
27
36
|
You need to create a [GitHub token](https://github.com/settings/tokens/new) or
|
|
@@ -233,6 +242,8 @@ run `bundle exec rake release`, which will create a git tag for the version,
|
|
|
233
242
|
push git commits and tags, and push the `.gem` file to
|
|
234
243
|
[rubygems.org](https://rubygems.org).
|
|
235
244
|
|
|
245
|
+
Or, you can use `bumpversion` (python) too :)
|
|
246
|
+
|
|
236
247
|
## Contributing
|
|
237
248
|
|
|
238
249
|
Bug reports and pull requests are welcome on GitHub at
|
data/gh_issues.gemspec
CHANGED
|
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.summary = %q{Manage your GitHub issues from command-line.}
|
|
13
13
|
spec.description = %q{Manage your GitHub issues from command-line.}
|
|
14
14
|
spec.homepage = "https://github.com/vigo/gh-issues"
|
|
15
|
+
spec.metadata = {"github_repo" => "ssh://github.com/vigo/gh-issues"}
|
|
15
16
|
spec.license = "MIT"
|
|
16
17
|
|
|
17
18
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
data/lib/gh_issues/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gh_issues
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Uğur Özyılmazel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-09-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -170,6 +170,7 @@ executables:
|
|
|
170
170
|
extensions: []
|
|
171
171
|
extra_rdoc_files: []
|
|
172
172
|
files:
|
|
173
|
+
- ".bumpversion.cfg"
|
|
173
174
|
- ".gitignore"
|
|
174
175
|
- ".travis.yml"
|
|
175
176
|
- CODE_OF_CONDUCT.md
|
|
@@ -188,7 +189,8 @@ files:
|
|
|
188
189
|
homepage: https://github.com/vigo/gh-issues
|
|
189
190
|
licenses:
|
|
190
191
|
- MIT
|
|
191
|
-
metadata:
|
|
192
|
+
metadata:
|
|
193
|
+
github_repo: ssh://github.com/vigo/gh-issues
|
|
192
194
|
post_install_message:
|
|
193
195
|
rdoc_options: []
|
|
194
196
|
require_paths:
|
|
@@ -205,7 +207,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
205
207
|
version: '0'
|
|
206
208
|
requirements: []
|
|
207
209
|
rubyforge_project:
|
|
208
|
-
rubygems_version: 2.6
|
|
210
|
+
rubygems_version: 2.7.6
|
|
209
211
|
signing_key:
|
|
210
212
|
specification_version: 4
|
|
211
213
|
summary: Manage your GitHub issues from command-line.
|