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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c91c0d547df03f932c337f11c0c0833fa4dac08b49a24e44aad5bf0ca90ad51b
4
- data.tar.gz: 18c1e0fac2508f956e56d7be063d2a1c86cc6f73bc41623bce05f3232f09f0c6
3
+ metadata.gz: d4e84d3ab31dd28d5681b7c14a44c7f70687a6620a472b2830e18bf80c2808d4
4
+ data.tar.gz: d0774e313d4da7fbc554fdcceeeb167eff75890c17480f6e1bc432ba25726d63
5
5
  SHA512:
6
- metadata.gz: 631e90c3e2e0aaecd7277141977de31b9e31f6704f1eae6c8a5c3d97d2e9cd488e9f49152390d673ebcebb8663335ff94a194add9511ba05ad21f83c5852d951
7
- data.tar.gz: 5ff7536007cff5d4d5c5ccf447533f8c0e57200dc1cdcdb25542c06099832fe65273d01a8f12d512a8182309abd5036e9628b688b49acbbb23b7ba40daeeaf63
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
+ [![Gem Version](https://img.shields.io/gem/v/github_issue_sync)](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/github_issue_sync_extract
155
- cd github_issue_sync_extract
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/github_issue_sync_extract).
170
+ [GitHub](https://github.com/briancolfer/github_issue_sync).
169
171
 
170
172
  ## License
171
173
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GithubIssueSync
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
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.0
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/github_issue_sync_extract
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/github_issue_sync_extract
78
- changelog_uri: https://github.com/briancolfer/github_issue_sync_extract/blob/main/CHANGELOG.md
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