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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e04a283a7b4baffc3501a38faa3e684090112d29a2e3e4aef7009ae277210c81
4
- data.tar.gz: 29e46ce9aef94e0acf664b15e6d20ed737acba2dc438926482a2013e0a6eb3ef
3
+ metadata.gz: 90e65b30dabc270fdf07b0fbaba74aa02e6f8b5f3fd815f653bf7e5efbbda1d3
4
+ data.tar.gz: d7f856443b45713c3146201f7b7bfc5334ec01fb8800f1a66bccaacedca395eb
5
5
  SHA512:
6
- metadata.gz: 192f91de92d20f549cdfb20352877e39f78bbf406e704d6fc652b4d031d5d20bcab19b6c5cf4ea5bf62c28f66ac2fc611e388a1c487ff4d884de98979fe56b3a
7
- data.tar.gz: ef9e69ad0e2bba2cfb764f6a10865e2ede1d3cdf4af75610f95517834ec8b0d63831fb6462d1c60e8dfd6135f7114ef57eb5ce4a57de8c14636aad05a977bff9
6
+ metadata.gz: e9c295644f9cd312818330695df91cce9a65757814dc5c483e9d1f3c949a9bcecf4524de61dd670a19ed0a69319e32ab2a73e189780ec52f32b1332255800a34
7
+ data.tar.gz: a99bd0bd6669350d8362dc6af63b5f353e2d9c4d85bf709f8c3cc17dfe33175ca84fc2626191e92f6a0ea69c676ef30eb1f33fed6634f844227a54bac5ce8d64
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "gh_draft_issues_converter"
5
+
6
+ GhDraftIssuesConverter::CLI.start(ARGV)
@@ -0,0 +1,7 @@
1
+ {
2
+ "folders": [
3
+ {
4
+ "path": "."
5
+ }
6
+ ]
7
+ }
@@ -1,21 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "lib/gh_draft_issues_conerter/version"
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 = GhDraftIssuesConerter::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/gh_draft_issues_conerter"
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/gh_draft_issues_conerter"
18
- spec.metadata["changelog_uri"] = "https://github.com/kuredev/gh_draft_issues_conerter"
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 gh_draft_issues_conerter --projects_number N --repository_name "XXX"
6
+ # bundle exec ruby gh_draft_issues_converter --projects_number N --repository_name "XXX"
7
7
 
8
- module GhDraftIssuesConerter
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,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module GhDraftIssuesConverter
4
+ VERSION = "0.1.4"
5
+ end
@@ -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
@@ -1,4 +1,4 @@
1
- module GhDraftIssuesConerter
1
+ module GhDraftIssuesConverter
2
2
  VERSION: String
3
3
  # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
4
  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.2
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
- - gh_draft_issues_conerter
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/gh_draft_issues_conerter
41
- - gh_draft_issues_conerter.gemspec
42
- - lib/gh_draft_issues_conerter.rb
43
- - lib/gh_draft_issues_conerter/cli.rb
44
- - lib/gh_draft_issues_conerter/gh_draft_issues_conerter.rb
45
- - lib/gh_draft_issues_conerter/version.rb
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/gh_draft_issues_conerter
48
+ homepage: https://github.com/kuredev/gh_draft_issues_converter
48
49
  licenses: []
49
50
  metadata:
50
- homepage_uri: https://github.com/kuredev/gh_draft_issues_conerter
51
- source_code_uri: https://github.com/kuredev/gh_draft_issues_conerter
52
- changelog_uri: https://github.com/kuredev/gh_draft_issues_conerter
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,6 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- require "gh_draft_issues_conerter"
5
-
6
- GhDraftIssuesConerter::CLI.start(ARGV)
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module GhDraftIssuesConerter
4
- VERSION = "0.1.2"
5
- end
@@ -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