github_issue_sync 0.1.0 → 0.1.1
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/README.md +5 -3
- data/lib/github_issue_sync/version.rb +1 -1
- metadata +18 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d4e84d3ab31dd28d5681b7c14a44c7f70687a6620a472b2830e18bf80c2808d4
|
|
4
|
+
data.tar.gz: d0774e313d4da7fbc554fdcceeeb167eff75890c17480f6e1bc432ba25726d63
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c1c73dae2278ed3d816e374988e49eea4eae0b862b20394f1487fae70c6c0c39816ac2ba4fdb8d5e88a30658cd583440b71bea6e598388ff2195de377677c147
|
|
7
|
+
data.tar.gz: e27d47dda5c2775cf158a356896f4dde736b0406b14c00cffe8c2dc133fd32f31759547a5eea44e76cab6bac0e5358d9ce0efa1f8d1af4292e43892d217f3e3c
|
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# github_issue_sync
|
|
2
2
|
|
|
3
|
+
[](https://rubygems.org/gems/github_issue_sync)
|
|
4
|
+
|
|
3
5
|
Export GitHub issues to CSV and sync edits back to GitHub.
|
|
4
6
|
|
|
5
7
|
`github_issue_sync` provides two classes:
|
|
@@ -151,8 +153,8 @@ Done. Updated: 3, Created: 1
|
|
|
151
153
|
## Development
|
|
152
154
|
|
|
153
155
|
```sh
|
|
154
|
-
git clone https://github.com/briancolfer/
|
|
155
|
-
cd
|
|
156
|
+
git clone https://github.com/briancolfer/github_issue_sync
|
|
157
|
+
cd github_issue_sync
|
|
156
158
|
bundle install
|
|
157
159
|
bundle exec rspec
|
|
158
160
|
```
|
|
@@ -165,7 +167,7 @@ valid `GITHUB_TOKEN` in your environment.
|
|
|
165
167
|
## Contributing
|
|
166
168
|
|
|
167
169
|
Bug reports and pull requests are welcome on
|
|
168
|
-
[GitHub](https://github.com/briancolfer/
|
|
170
|
+
[GitHub](https://github.com/briancolfer/github_issue_sync).
|
|
169
171
|
|
|
170
172
|
## License
|
|
171
173
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: github_issue_sync
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Colfer
|
|
@@ -23,6 +23,20 @@ dependencies:
|
|
|
23
23
|
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
25
|
version: '3.0'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: faraday-retry
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '2.0'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '2.0'
|
|
26
40
|
- !ruby/object:Gem::Dependency
|
|
27
41
|
name: octokit
|
|
28
42
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -70,12 +84,12 @@ files:
|
|
|
70
84
|
- lib/github_issue_sync/issue_row.rb
|
|
71
85
|
- lib/github_issue_sync/issue_syncer.rb
|
|
72
86
|
- lib/github_issue_sync/version.rb
|
|
73
|
-
homepage: https://github.com/briancolfer/
|
|
87
|
+
homepage: https://github.com/briancolfer/github_issue_sync
|
|
74
88
|
licenses:
|
|
75
89
|
- MIT
|
|
76
90
|
metadata:
|
|
77
|
-
source_code_uri: https://github.com/briancolfer/
|
|
78
|
-
changelog_uri: https://github.com/briancolfer/
|
|
91
|
+
source_code_uri: https://github.com/briancolfer/github_issue_sync
|
|
92
|
+
changelog_uri: https://github.com/briancolfer/github_issue_sync/blob/main/CHANGELOG.md
|
|
79
93
|
rdoc_options: []
|
|
80
94
|
require_paths:
|
|
81
95
|
- lib
|