gh_draft_issues_converter 0.1.2 → 0.1.4
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/exe/gh_draft_issues_converter +6 -0
- data/gh_draft_issues_conerter.code-workspace +7 -0
- data/{gh_draft_issues_conerter.gemspec → gh_draft_issues_converter.gemspec} +5 -5
- data/lib/{gh_draft_issues_conerter → gh_draft_issues_converter}/cli.rb +2 -2
- data/lib/{gh_draft_issues_conerter/gh_draft_issues_conerter.rb → gh_draft_issues_converter/gh_draft_issues_converter.rb} +5 -0
- data/lib/gh_draft_issues_converter/version.rb +5 -0
- data/lib/gh_draft_issues_converter.rb +9 -0
- data/sig/gh_draft_issues_conerter.rbs +1 -1
- metadata +13 -12
- data/exe/gh_draft_issues_conerter +0 -6
- data/lib/gh_draft_issues_conerter/version.rb +0 -5
- data/lib/gh_draft_issues_conerter.rb +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90e65b30dabc270fdf07b0fbaba74aa02e6f8b5f3fd815f653bf7e5efbbda1d3
|
4
|
+
data.tar.gz: d7f856443b45713c3146201f7b7bfc5334ec01fb8800f1a66bccaacedca395eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9c295644f9cd312818330695df91cce9a65757814dc5c483e9d1f3c949a9bcecf4524de61dd670a19ed0a69319e32ab2a73e189780ec52f32b1332255800a34
|
7
|
+
data.tar.gz: a99bd0bd6669350d8362dc6af63b5f353e2d9c4d85bf709f8c3cc17dfe33175ca84fc2626191e92f6a0ea69c676ef30eb1f33fed6634f844227a54bac5ce8d64
|
@@ -1,21 +1,21 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require_relative "lib/
|
3
|
+
require_relative "lib/gh_draft_issues_converter/version"
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "gh_draft_issues_converter"
|
7
|
-
spec.version =
|
7
|
+
spec.version = GhDraftIssuesConverter::VERSION
|
8
8
|
spec.authors = ["Akira Kure"]
|
9
9
|
spec.email = ["kuredev@users.noreply.github.com"]
|
10
10
|
|
11
11
|
spec.summary = "Convert GitHub's DraftIssues to Issues"
|
12
12
|
spec.description = "Convert GitHub's DraftIssues to Issues"
|
13
|
-
spec.homepage = "https://github.com/kuredev/
|
13
|
+
spec.homepage = "https://github.com/kuredev/gh_draft_issues_converter"
|
14
14
|
spec.required_ruby_version = ">= 3.2.0"
|
15
15
|
|
16
16
|
spec.metadata["homepage_uri"] = spec.homepage
|
17
|
-
spec.metadata["source_code_uri"] = "https://github.com/kuredev/
|
18
|
-
spec.metadata["changelog_uri"] = "https://github.com/kuredev/
|
17
|
+
spec.metadata["source_code_uri"] = "https://github.com/kuredev/gh_draft_issues_converter"
|
18
|
+
spec.metadata["changelog_uri"] = "https://github.com/kuredev/gh_draft_issues_converter"
|
19
19
|
|
20
20
|
# Specify which files should be added to the gem when it is released.
|
21
21
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
@@ -3,9 +3,9 @@
|
|
3
3
|
require "optparse"
|
4
4
|
|
5
5
|
# Example
|
6
|
-
# bundle exec ruby
|
6
|
+
# bundle exec ruby gh_draft_issues_converter --projects_number N --repository_name "XXX"
|
7
7
|
|
8
|
-
module
|
8
|
+
module GhDraftIssuesConverter
|
9
9
|
class CLI
|
10
10
|
def self.start(argv)
|
11
11
|
options = {}
|
@@ -329,6 +329,11 @@ module GhDraftIssueConverter
|
|
329
329
|
!draft_issue.unnecessary_for_convert_issue?
|
330
330
|
end
|
331
331
|
|
332
|
+
if draft_issues.length.zero?
|
333
|
+
puts "Nothing to convert items."
|
334
|
+
exit
|
335
|
+
end
|
336
|
+
|
332
337
|
draft_issues.each_with_index do |draft_issue, index|
|
333
338
|
puts "Converting: #{draft_issue.title}"
|
334
339
|
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "gh_draft_issues_converter/version"
|
4
|
+
require_relative "gh_draft_issues_converter/cli"
|
5
|
+
require_relative "gh_draft_issues_converter/gh_draft_issues_converter"
|
6
|
+
|
7
|
+
module GhDraftIssuesConverter
|
8
|
+
class Error < StandardError; end
|
9
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gh_draft_issues_converter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Akira Kure
|
@@ -28,7 +28,7 @@ description: Convert GitHub's DraftIssues to Issues
|
|
28
28
|
email:
|
29
29
|
- kuredev@users.noreply.github.com
|
30
30
|
executables:
|
31
|
-
-
|
31
|
+
- gh_draft_issues_converter
|
32
32
|
extensions: []
|
33
33
|
extra_rdoc_files: []
|
34
34
|
files:
|
@@ -37,19 +37,20 @@ files:
|
|
37
37
|
- LICENSE
|
38
38
|
- README.md
|
39
39
|
- Rakefile
|
40
|
-
- exe/
|
41
|
-
- gh_draft_issues_conerter.
|
42
|
-
-
|
43
|
-
- lib/
|
44
|
-
- lib/
|
45
|
-
- lib/
|
40
|
+
- exe/gh_draft_issues_converter
|
41
|
+
- gh_draft_issues_conerter.code-workspace
|
42
|
+
- gh_draft_issues_converter.gemspec
|
43
|
+
- lib/gh_draft_issues_converter.rb
|
44
|
+
- lib/gh_draft_issues_converter/cli.rb
|
45
|
+
- lib/gh_draft_issues_converter/gh_draft_issues_converter.rb
|
46
|
+
- lib/gh_draft_issues_converter/version.rb
|
46
47
|
- sig/gh_draft_issues_conerter.rbs
|
47
|
-
homepage: https://github.com/kuredev/
|
48
|
+
homepage: https://github.com/kuredev/gh_draft_issues_converter
|
48
49
|
licenses: []
|
49
50
|
metadata:
|
50
|
-
homepage_uri: https://github.com/kuredev/
|
51
|
-
source_code_uri: https://github.com/kuredev/
|
52
|
-
changelog_uri: https://github.com/kuredev/
|
51
|
+
homepage_uri: https://github.com/kuredev/gh_draft_issues_converter
|
52
|
+
source_code_uri: https://github.com/kuredev/gh_draft_issues_converter
|
53
|
+
changelog_uri: https://github.com/kuredev/gh_draft_issues_converter
|
53
54
|
allowed_push_host: https://rubygems.org
|
54
55
|
post_install_message:
|
55
56
|
rdoc_options: []
|
@@ -1,9 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require_relative "gh_draft_issues_conerter/version"
|
4
|
-
require_relative "gh_draft_issues_conerter/cli"
|
5
|
-
require_relative "gh_draft_issues_conerter/gh_draft_issues_conerter"
|
6
|
-
|
7
|
-
module GhDraftIssuesConerter
|
8
|
-
class Error < StandardError; end
|
9
|
-
end
|