gemsmith 14.0.2 → 14.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,5 +5,5 @@ require "gemsmith"
5
5
  require "gemsmith/cli"
6
6
  require "gemsmith/identity"
7
7
 
8
- Process.setproctitle Gemsmith::Identity.version_label
8
+ Process.setproctitle Gemsmith::Identity::VERSION_LABEL
9
9
  Gemsmith::CLI.start
@@ -20,6 +20,7 @@ require "gemsmith/generators/documentation"
20
20
  require "gemsmith/generators/gem"
21
21
  require "gemsmith/generators/git"
22
22
  require "gemsmith/generators/git_cop"
23
+ require "gemsmith/generators/git_lint"
23
24
  require "gemsmith/generators/git_hub"
24
25
  require "gemsmith/generators/guard"
25
26
  require "gemsmith/generators/pragma"
@@ -19,7 +19,7 @@ module Gemsmith
19
19
  using Refinements::Strings
20
20
  using Refinements::Hashes
21
21
 
22
- package_name Identity.version_label
22
+ package_name Identity::VERSION_LABEL
23
23
 
24
24
  # Overwrites Thor's template source root.
25
25
  def self.source_root
@@ -28,7 +28,7 @@ module Gemsmith
28
28
 
29
29
  # rubocop:disable Metrics/MethodLength
30
30
  def self.configuration
31
- Runcom::Config.new "#{Identity.name}/configuration.yml",
31
+ Runcom::Config.new "#{Identity::NAME}/configuration.yml",
32
32
  defaults: {
33
33
  year: Time.now.year,
34
34
  github_user: Git.github_user,
@@ -58,7 +58,7 @@ module Gemsmith
58
58
  bundler_audit: true,
59
59
  circle_ci: false,
60
60
  cli: false,
61
- git_cop: true,
61
+ git_lint: true,
62
62
  git_hub: false,
63
63
  guard: true,
64
64
  pry: true,
@@ -88,6 +88,7 @@ module Gemsmith
88
88
  Generators::Rspec,
89
89
  Generators::BundlerAudit,
90
90
  Generators::GitCop,
91
+ Generators::GitLint,
91
92
  Generators::Reek,
92
93
  Generators::Guard,
93
94
  Generators::CircleCI,
@@ -127,9 +128,13 @@ module Gemsmith
127
128
  type: :boolean,
128
129
  default: configuration.to_h.dig(:generate, :engine)
129
130
  method_option :git_cop,
130
- desc: "Add Git Cop support.",
131
+ desc: "Add Git Cop support. DEPRECATED: Use Git Lint instead.",
131
132
  type: :boolean,
132
- default: configuration.to_h.dig(:generate, :git_cop)
133
+ default: false
134
+ method_option :git_lint,
135
+ desc: "Add Git Lint support.",
136
+ type: :boolean,
137
+ default: configuration.to_h.dig(:generate, :git_lint)
133
138
  method_option :git_hub,
134
139
  desc: "Add GitHub support.",
135
140
  type: :boolean,
@@ -213,7 +218,7 @@ module Gemsmith
213
218
  desc "-v, [--version]", "Show gem version."
214
219
  map %w[-v --version] => :version
215
220
  def version
216
- say Identity.version_label
221
+ say Identity::VERSION_LABEL
217
222
  end
218
223
 
219
224
  desc "-h, [--help=COMMAND]", "Show this message or get help for a command."
@@ -7,8 +7,8 @@ module Gemsmith
7
7
  def run
8
8
  return unless configuration.dig :generate, :bundler_audit
9
9
 
10
- cli.uncomment_lines "#{gem_name}/Rakefile", %r(require.+bundler\/audit.+)
11
- cli.uncomment_lines "#{gem_name}/Rakefile", /Bundler\:\:Audit.+/
10
+ cli.uncomment_lines "#{gem_name}/Rakefile", %r(require.+bundler/audit.+)
11
+ cli.uncomment_lines "#{gem_name}/Rakefile", /Bundler::Audit.+/
12
12
  end
13
13
  end
14
14
  end
@@ -26,7 +26,8 @@ module Gemsmith
26
26
 
27
27
  def create_repository
28
28
  create_commit "Added gem skeleton",
29
- "Built with [#{Identity.label}](#{Identity.url}) #{Identity.version}."
29
+ "Generated with [#{Identity::LABEL}](#{Identity::URL})\n" \
30
+ "#{Identity::VERSION}."
30
31
  end
31
32
 
32
33
  def create_commit subject, body
@@ -7,7 +7,7 @@ module Gemsmith
7
7
  def run
8
8
  return unless configuration.dig :generate, :git_cop
9
9
 
10
- cli.uncomment_lines "#{gem_name}/Rakefile", %r(require.+git\/cop.+)
10
+ warn "[DEPRECATION]: Git Cop is deprecated, use Git Lint instead."
11
11
  end
12
12
  end
13
13
  end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Gemsmith
4
+ module Generators
5
+ # Generates Git Lint support.
6
+ class GitLint < Base
7
+ def run
8
+ return unless configuration.dig :generate, :git_lint
9
+
10
+ cli.uncomment_lines "#{gem_name}/Rakefile", %r(require.+git/lint.+)
11
+ end
12
+ end
13
+ end
14
+ end
@@ -36,8 +36,8 @@ module Gemsmith
36
36
  configuration.dig(:generate, :bundler_audit) ? "bundle:audit" : ""
37
37
  end
38
38
 
39
- def git_cop_task
40
- configuration.dig(:generate, :git_cop) ? "git_cop" : ""
39
+ def git_lint_task
40
+ configuration.dig(:generate, :git_lint) ? "git_lint" : ""
41
41
  end
42
42
 
43
43
  def reek_task
@@ -51,7 +51,7 @@ module Gemsmith
51
51
  def code_quality_tasks
52
52
  [
53
53
  bundler_audit_task,
54
- git_cop_task,
54
+ git_lint_task,
55
55
  reek_task,
56
56
  rubocop_task
57
57
  ].compress.join " "
@@ -3,24 +3,10 @@
3
3
  module Gemsmith
4
4
  # Gem identity information.
5
5
  module Identity
6
- def self.name
7
- "gemsmith"
8
- end
9
-
10
- def self.label
11
- "Gemsmith"
12
- end
13
-
14
- def self.version
15
- "14.0.2"
16
- end
17
-
18
- def self.version_label
19
- "#{label} #{version}"
20
- end
21
-
22
- def self.url
23
- "https://github.com/bkuhlmann/gemsmith"
24
- end
6
+ NAME = "gemsmith"
7
+ LABEL = "Gemsmith"
8
+ VERSION = "14.2.0"
9
+ VERSION_LABEL = "#{LABEL} #{VERSION}"
10
+ URL = "https://www.alchemists.io/projects/gemsmith"
25
11
  end
26
12
  end
@@ -1,9 +1,8 @@
1
- $LOAD_PATH.append File.expand_path("lib", __dir__)
2
- require "<%= config.dig(:gem, :path) %>/identity"
1
+ require_relative "lib/<%= config.dig(:gem, :path) %>/identity"
3
2
 
4
3
  Gem::Specification.new do |spec|
5
- spec.name = <%= config.dig(:gem, :class) %>::Identity.name
6
- spec.version = <%= config.dig(:gem, :class) %>::Identity.version
4
+ spec.name = <%= config.dig(:gem, :class) %>::Identity::NAME
5
+ spec.version = <%= config.dig(:gem, :class) %>::Identity::VERSION
7
6
  spec.platform = <%= config.dig(:gem, :platform) %>
8
7
  spec.authors = ["<%= config.dig(:author, :name) %>"]
9
8
  spec.email = ["<%= config.dig(:author, :email) %>"]
@@ -33,31 +32,31 @@ Gem::Specification.new do |spec|
33
32
  <%- if config.dig(:generate, :bundler_audit) -%>
34
33
  spec.add_development_dependency "bundler-audit", "~> 0.6"
35
34
  <%- end -%>
36
- spec.add_development_dependency "gemsmith", "~> <%= Gemsmith::Identity.version[/\d+\.\d+/] %>"
37
- <%- if config.dig(:generate, :git_cop) -%>
38
- spec.add_development_dependency "git-cop", "~> 4.0"
35
+ spec.add_development_dependency "gemsmith", "~> <%= Gemsmith::Identity::VERSION[/\d+\.\d+/] %>"
36
+ <%- if config.dig(:generate, :git_lint) -%>
37
+ spec.add_development_dependency "git-lint", "~> 1.0"
39
38
  <%- end -%>
40
39
  <%- if config.dig(:generate, :guard) -%>
41
40
  spec.add_development_dependency "guard-rspec", "~> 4.7"
42
41
  <%- end -%>
43
42
  <%- if config.dig(:generate, :pry) -%>
44
- spec.add_development_dependency "pry", "~> 0.12"
45
- spec.add_development_dependency "pry-byebug", "~> 3.7"
43
+ spec.add_development_dependency "pry", "~> 0.13"
44
+ spec.add_development_dependency "pry-byebug", "~> 3.9"
46
45
  <%- end -%>
47
46
  spec.add_development_dependency "rake", "~> 13.0"
48
47
  <%- if config.dig(:generate, :reek) -%>
49
- spec.add_development_dependency "reek", "~> 5.6"
48
+ spec.add_development_dependency "reek", "~> 6.0"
50
49
  <%- end -%>
51
50
  <%- if config.dig(:generate, :rspec) -%>
52
51
  spec.add_development_dependency "<%= config.dig(:generate, :engine) ? "rspec-rails" : "rspec" %>", "~> 3.9"
53
52
  <%- end -%>
54
53
  <%- if config.dig(:generate, :rubocop) -%>
55
- spec.add_development_dependency "rubocop", "~> 0.79"
54
+ spec.add_development_dependency "rubocop", "~> 0.83"
56
55
  spec.add_development_dependency "rubocop-performance", "~> 1.5"
57
56
  spec.add_development_dependency "rubocop-rake", "~> 0.5"
58
57
  <%- end -%>
59
58
  <%- if config.dig(:generate, :rubocop) && config.dig(:generate, :rspec) -%>
60
- spec.add_development_dependency "rubocop-rspec", "~> 1.37"
59
+ spec.add_development_dependency "rubocop-rspec", "~> 1.39"
61
60
  <%- end -%>
62
61
  <%- if config.dig(:generate, :simple_cov) -%>
63
62
  spec.add_development_dependency "simplecov", "~> 0.18"
@@ -1,11 +1,14 @@
1
1
  ## Overview
2
- <!-- Required. Describe, in detail, the behavior experienced and what is desired. -->
2
+ <!-- Required. Describe, briefly, the behavior experienced. -->
3
+
4
+ ## Screenshots/Screencasts
5
+ <!-- Optional. Attach screenshot(s) and/or screencast(s) that demo the behavior. -->
3
6
 
4
7
  ## Steps to Recreate
5
- <!-- Optional. List exact steps (numbered list) to reproduce errant behavior. Delete if unused. -->
8
+ <!-- Required. List exact steps (numbered list) to reproduce errant behavior. -->
6
9
 
7
- ## Screenshots/Screencasts
8
- <!-- Optional. Attach screenshot/screencast(s) that demo the behavior. Delete if unused. -->
10
+ ## Desired Behavior
11
+ <!-- Required. Describe the behavior you'd like to see or your idea of a proposed solution. -->
9
12
 
10
13
  ## Environment
11
- <!-- Optional. What is your operating system, software version(s), etc. Delete if unused. -->
14
+ <!-- Required. What is your operating system, software version(s), etc. -->
@@ -1,11 +1,11 @@
1
1
  ## Overview
2
- <!-- Required. Why is this important/necessary? -->
2
+ <!-- Required. Why is this important/necessary and what is the overarching architecture. -->
3
+
4
+ ## Screenshots/Screencasts
5
+ <!-- Optional. Provide supporting image/video. -->
3
6
 
4
7
  ## Details
5
- <!-- Optional. List the key features/highlights as bullet points. Delete if unused. -->
8
+ <!-- Optional. List the key features/highlights as bullet points. -->
6
9
 
7
10
  ## Notes
8
- <!-- Optional. List additional notes/references as bullet points. Delete if unused. -->
9
-
10
- ## Screenshots/Screencasts
11
- <!-- Optional. Provide supporting image/video. Delete if unused. -->
11
+ <!-- Optional. List additional notes/references as bullet points. -->
@@ -1,12 +1,12 @@
1
1
  inherit_from:
2
- - https://raw.githubusercontent.com/bkuhlmann/code_quality/4.3.0/configurations/rubocop/ruby.yml
3
- - https://raw.githubusercontent.com/bkuhlmann/code_quality/4.3.0/configurations/rubocop/rake.yml
4
- - https://raw.githubusercontent.com/bkuhlmann/code_quality/4.3.0/configurations/rubocop/performance.yml
2
+ - https://raw.githubusercontent.com/bkuhlmann/code_quality/4.8.0/configurations/rubocop/ruby.yml
3
+ - https://raw.githubusercontent.com/bkuhlmann/code_quality/4.8.0/configurations/rubocop/rake.yml
4
+ - https://raw.githubusercontent.com/bkuhlmann/code_quality/4.8.0/configurations/rubocop/performance.yml
5
5
  <%- if config.dig(:generate, :rspec) -%>
6
- - https://raw.githubusercontent.com/bkuhlmann/code_quality/4.3.0/configurations/rubocop/rspec.yml
6
+ - https://raw.githubusercontent.com/bkuhlmann/code_quality/4.8.0/configurations/rubocop/rspec.yml
7
7
  <%- end -%>
8
8
  <%- if config.dig(:generate, :engine) -%>
9
- - https://raw.githubusercontent.com/bkuhlmann/code_quality/4.3.0/configurations/rubocop/rails.yml
9
+ - https://raw.githubusercontent.com/bkuhlmann/code_quality/4.8.0/configurations/rubocop/rails.yml
10
10
  <%- end -%>
11
11
 
12
12
  <%- if config.dig(:generate, :cli) -%>
@@ -1,3 +1,3 @@
1
1
  # 0.1.0 (<%= Time.now.strftime "%Y-%m-%d" %>)
2
2
 
3
- - Initial version.
3
+ - Initial implementation.
@@ -25,6 +25,8 @@
25
25
 
26
26
  ## Setup
27
27
 
28
+ ### Production
29
+
28
30
  To install, run:
29
31
 
30
32
  gem install <%= config.dig(:gem, :name) %>
@@ -35,6 +37,18 @@ Add the following to your Gemfile:
35
37
  gem "<%= config.dig(:gem, :name) %>"
36
38
  <%- end -%>
37
39
 
40
+ ### Development
41
+
42
+ To contribute, run:
43
+
44
+ git clone https://github.com/<%= config.dig(:github_user) %>/<%= config.dig(:gem, :name) %>.git
45
+ cd <%= config.dig(:gem, :name) %>
46
+ bin/setup
47
+
48
+ You can also use the IRB console for direct access to all objects:
49
+
50
+ bin/console
51
+
38
52
  ## Usage
39
53
 
40
54
  <%- if config.dig(:generate, :rspec) -%>
@@ -1,7 +1,7 @@
1
1
  begin
2
2
  require "gemsmith/rake/setup"
3
3
  # require "bundler/audit/task"
4
- # require "git/cop/rake/setup"
4
+ # require "git/lint/rake/setup"
5
5
  # require "rspec/core/rake_task"
6
6
  # require "reek/rake/task"
7
7
  # require "rubocop/rake_task"
@@ -4,5 +4,5 @@ require "<%= config.dig(:gem, :path) %>"
4
4
  require "<%= config.dig(:gem, :path) %>/cli"
5
5
  require "<%= config.dig(:gem, :path) %>/identity"
6
6
 
7
- Process.setproctitle <%= config.dig(:gem, :class) %>::Identity.version_label
7
+ Process.setproctitle <%= config.dig(:gem, :class) %>::Identity::VERSION_LABEL
8
8
  <%= config.dig(:gem, :class) %>::CLI.start
@@ -7,10 +7,10 @@ require "runcom"
7
7
  class CLI < Thor
8
8
  include Thor::Actions
9
9
 
10
- package_name Identity.version_label
10
+ package_name Identity::VERSION_LABEL
11
11
 
12
12
  def self.configuration
13
- Runcom::Config.new "#{Identity.name}/configuration.yml"
13
+ Runcom::Config.new "#{Identity::NAME}/configuration.yml"
14
14
  end
15
15
 
16
16
  def initialize args = [], options = {}, config = {}
@@ -45,7 +45,7 @@ require "runcom"
45
45
  desc "-v, [--version]", "Show gem version."
46
46
  map %w[-v --version] => :version
47
47
  def version
48
- say Identity.version_label
48
+ say Identity::VERSION_LABEL
49
49
  end
50
50
 
51
51
  desc "-h, [--help=COMMAND]", "Show this message or get help for a command."
@@ -1,20 +1,9 @@
1
1
  <% render_namespace do %>
2
2
  # Gem identity information.
3
3
  module Identity
4
- def self.name
5
- "<%= config.dig(:gem, :name) %>"
6
- end
7
-
8
- def self.label
9
- "<%= config.dig(:gem, :label) %>"
10
- end
11
-
12
- def self.version
13
- "0.1.0"
14
- end
15
-
16
- def self.version_label
17
- "#{label} #{version}"
18
- end
4
+ NAME = "<%= config.dig(:gem, :name) %>"
5
+ LABEL = "<%= config.dig(:gem, :label) %>"
6
+ VERSION = "0.1.0"
7
+ VERSION_LABEL = "#{LABEL} #{VERSION}"
19
8
  end
20
9
  <% end %>
@@ -19,7 +19,7 @@ RSpec.describe <%= config.dig(:gem, :class) %>::CLI do
19
19
  shared_examples_for "a version command" do
20
20
  it "prints version" do
21
21
  result = -> { cli }
22
- pattern = /#{Regexp.escape <%= config.dig(:gem, :class) %>::Identity.version_label}\n/
22
+ pattern = /#{Regexp.escape <%= config.dig(:gem, :class) %>::Identity::VERSION_LABEL}\n/
23
23
 
24
24
  expect(result).to output(pattern).to_stdout
25
25
  end
@@ -28,7 +28,7 @@ RSpec.describe <%= config.dig(:gem, :class) %>::CLI do
28
28
  shared_examples_for "a help command" do
29
29
  it "prints usage" do
30
30
  result = -> { cli }
31
- pattern = /#{Regexp.escape <%= config.dig(:gem, :class) %>::Identity.version_label}\scommands:\n/
31
+ pattern = /#{Regexp.escape <%= config.dig(:gem, :class) %>::Identity::VERSION_LABEL}\scommands:\n/
32
32
 
33
33
  expect(result).to output(pattern).to_stdout
34
34
  end
metadata CHANGED
@@ -1,18 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gemsmith
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.0.2
4
+ version: 14.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain:
11
11
  - |
12
12
  -----BEGIN CERTIFICATE-----
13
- MIIC/jCCAeagAwIBAgIBAjANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDDBpicm9v
14
- a2UvREM9YWxjaGVtaXN0cy9EQz1pbzAeFw0xOTAyMTcxNjAxMTFaFw0yMDAyMTcx
15
- NjAxMTFaMCUxIzAhBgNVBAMMGmJyb29rZS9EQz1hbGNoZW1pc3RzL0RDPWlvMIIB
13
+ MIIC/jCCAeagAwIBAgIBAzANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDDBpicm9v
14
+ a2UvREM9YWxjaGVtaXN0cy9EQz1pbzAeFw0yMDAzMTUxNDQ1MzJaFw0yMTAzMTUx
15
+ NDQ1MzJaMCUxIzAhBgNVBAMMGmJyb29rZS9EQz1hbGNoZW1pc3RzL0RDPWlvMIIB
16
16
  IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6l1qpXTiomH1RfMRloyw7MiE
17
17
  xyVx/x8Yc3EupdH7uhNaTXQGyORN6aOY//1QXXMHIZ9tW74nZLhesWMSUMYy0XhB
18
18
  brs+KkurHnc9FnEJAbG7ebGvl/ncqZt72nQvaxpDxvuCBHgJAz+8i5wl6FhLw+oT
@@ -20,15 +20,15 @@ cert_chain:
20
20
  D5vkU0YlAm1r98BymuJlcQ1qdkVEI1d48ph4kcS0S0nv1RiuyVb6TCAR3Nu3VaVq
21
21
  3fPzZKJLZBx67UvXdbdicWPiUR75elI4PXpLIic3xytaF52ZJYyKZCNZJhNwfQID
22
22
  AQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU0nzow9vc
23
- 2CdikiiE3fJhP/gY4ggwDQYJKoZIhvcNAQELBQADggEBANgfX7kPZkJvsbdWMvbe
24
- DUUYxRTqTUzCDpLd2p3sQvgLMKjTNSKt6CFq/kh+98b6RCgO6DqiVfxvOEq02dvf
25
- ebMN/ylQqan2FgiAs1rpP0/D4C0MlBjoDktsT+2IyLol1KmkDB20ExJ4Sf1GRNdA
26
- hpWOtcgqHtmrc7xzgB6BuyoYufrKKUlCO3ewTM4C375D2qO7hIdKuMOO3CdPMtSk
27
- OrWpbzCL+nbbXqeoqiHgZaUvcyyQrGj5sQRxMTzuMXzzQxtHnuTuKrcz16HMTX/O
28
- dKvURM+1PwDCzC5tvRwjhUJIizau6+MtkFCvJHmaAj1aZL3odcPejHj5Hxt/0CUW
29
- y84=
23
+ 2CdikiiE3fJhP/gY4ggwDQYJKoZIhvcNAQELBQADggEBAIHhAlD3po4sTYqacXaQ
24
+ XI9jIhrfMy//2PgbHWcETtlJPBeNUbbSNBABcllUHKqYsVDlSvSmss034KSWNR8F
25
+ bF1GcloicyvcCC4y6IoW4it0COAcdeaaxkxiBSgKdQFpff9REnDlIKK4uQ9lLxIo
26
+ Y2G5xubiziKZkyfWFuSr67PIjW3Bu673D1JVBArhA1qbgQmYQcy1CkGOjo+iO8Nf
27
+ 7u/QSfBHb+r/bXhKscDgPpnKwbUmvgO2+94zJG9KsrmIydlzYfsD09aXKx0t6Xy4
28
+ 2XV8FRa7/JimI07sPLC13eLY3xd/aYTi85Z782KIA4j0G8XEEWAX0ouBhlXPocZv
29
+ QWc=
30
30
  -----END CERTIFICATE-----
31
- date: 2020-02-01 00:00:00.000000000 Z
31
+ date: 2020-06-13 00:00:00.000000000 Z
32
32
  dependencies:
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: milestoner
@@ -64,28 +64,28 @@ dependencies:
64
64
  requirements:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: '7.0'
67
+ version: '7.4'
68
68
  type: :runtime
69
69
  prerelease: false
70
70
  version_requirements: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - "~>"
73
73
  - !ruby/object:Gem::Version
74
- version: '7.0'
74
+ version: '7.4'
75
75
  - !ruby/object:Gem::Dependency
76
76
  name: rubocop
77
77
  requirement: !ruby/object:Gem::Requirement
78
78
  requirements:
79
79
  - - "~>"
80
80
  - !ruby/object:Gem::Version
81
- version: '0.79'
81
+ version: '0.83'
82
82
  type: :runtime
83
83
  prerelease: false
84
84
  version_requirements: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - "~>"
87
87
  - !ruby/object:Gem::Version
88
- version: '0.79'
88
+ version: '0.83'
89
89
  - !ruby/object:Gem::Dependency
90
90
  name: runcom
91
91
  requirement: !ruby/object:Gem::Requirement
@@ -171,19 +171,19 @@ dependencies:
171
171
  - !ruby/object:Gem::Version
172
172
  version: '0.2'
173
173
  - !ruby/object:Gem::Dependency
174
- name: git-cop
174
+ name: git-lint
175
175
  requirement: !ruby/object:Gem::Requirement
176
176
  requirements:
177
177
  - - "~>"
178
178
  - !ruby/object:Gem::Version
179
- version: '4.0'
179
+ version: '1.0'
180
180
  type: :development
181
181
  prerelease: false
182
182
  version_requirements: !ruby/object:Gem::Requirement
183
183
  requirements:
184
184
  - - "~>"
185
185
  - !ruby/object:Gem::Version
186
- version: '4.0'
186
+ version: '1.0'
187
187
  - !ruby/object:Gem::Dependency
188
188
  name: guard-rspec
189
189
  requirement: !ruby/object:Gem::Requirement
@@ -204,28 +204,28 @@ dependencies:
204
204
  requirements:
205
205
  - - "~>"
206
206
  - !ruby/object:Gem::Version
207
- version: '0.12'
207
+ version: '0.13'
208
208
  type: :development
209
209
  prerelease: false
210
210
  version_requirements: !ruby/object:Gem::Requirement
211
211
  requirements:
212
212
  - - "~>"
213
213
  - !ruby/object:Gem::Version
214
- version: '0.12'
214
+ version: '0.13'
215
215
  - !ruby/object:Gem::Dependency
216
216
  name: pry-byebug
217
217
  requirement: !ruby/object:Gem::Requirement
218
218
  requirements:
219
219
  - - "~>"
220
220
  - !ruby/object:Gem::Version
221
- version: '3.7'
221
+ version: '3.9'
222
222
  type: :development
223
223
  prerelease: false
224
224
  version_requirements: !ruby/object:Gem::Requirement
225
225
  requirements:
226
226
  - - "~>"
227
227
  - !ruby/object:Gem::Version
228
- version: '3.7'
228
+ version: '3.9'
229
229
  - !ruby/object:Gem::Dependency
230
230
  name: rake
231
231
  requirement: !ruby/object:Gem::Requirement
@@ -246,14 +246,14 @@ dependencies:
246
246
  requirements:
247
247
  - - "~>"
248
248
  - !ruby/object:Gem::Version
249
- version: '5.6'
249
+ version: '6.0'
250
250
  type: :development
251
251
  prerelease: false
252
252
  version_requirements: !ruby/object:Gem::Requirement
253
253
  requirements:
254
254
  - - "~>"
255
255
  - !ruby/object:Gem::Version
256
- version: '5.6'
256
+ version: '6.0'
257
257
  - !ruby/object:Gem::Dependency
258
258
  name: rspec
259
259
  requirement: !ruby/object:Gem::Requirement
@@ -302,14 +302,14 @@ dependencies:
302
302
  requirements:
303
303
  - - "~>"
304
304
  - !ruby/object:Gem::Version
305
- version: '1.37'
305
+ version: '1.39'
306
306
  type: :development
307
307
  prerelease: false
308
308
  version_requirements: !ruby/object:Gem::Requirement
309
309
  requirements:
310
310
  - - "~>"
311
311
  - !ruby/object:Gem::Version
312
- version: '1.37'
312
+ version: '1.39'
313
313
  - !ruby/object:Gem::Dependency
314
314
  name: simplecov
315
315
  requirement: !ruby/object:Gem::Requirement
@@ -324,18 +324,18 @@ dependencies:
324
324
  - - "~>"
325
325
  - !ruby/object:Gem::Version
326
326
  version: '0.18'
327
- description:
327
+ description:
328
328
  email:
329
329
  - brooke@alchemists.io
330
330
  executables:
331
331
  - gemsmith
332
332
  extensions: []
333
333
  extra_rdoc_files:
334
- - README.md
335
- - LICENSE.md
334
+ - README.adoc
335
+ - LICENSE.adoc
336
336
  files:
337
- - LICENSE.md
338
- - README.md
337
+ - LICENSE.adoc
338
+ - README.adoc
339
339
  - bin/gemsmith
340
340
  - lib/gemsmith.rb
341
341
  - lib/gemsmith/authenticators/basic.rb
@@ -361,6 +361,7 @@ files:
361
361
  - lib/gemsmith/generators/git.rb
362
362
  - lib/gemsmith/generators/git_cop.rb
363
363
  - lib/gemsmith/generators/git_hub.rb
364
+ - lib/gemsmith/generators/git_lint.rb
364
365
  - lib/gemsmith/generators/guard.rb
365
366
  - lib/gemsmith/generators/pragma.rb
366
367
  - lib/gemsmith/generators/rake.rb
@@ -407,14 +408,15 @@ files:
407
408
  - lib/gemsmith/templates/%gem_name%/spec/rails_helper.rb.tt
408
409
  - lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt
409
410
  - lib/gemsmith/templates/%gem_name%/spec/support/shared_contexts/temp_dir.rb.tt
410
- homepage: https://github.com/bkuhlmann/gemsmith
411
+ homepage: https://www.alchemists.io/projects/gemsmith
411
412
  licenses:
412
413
  - Apache-2.0
413
414
  metadata:
414
- source_code_uri: https://github.com/bkuhlmann/gemsmith
415
- changelog_uri: https://github.com/bkuhlmann/gemsmith/blob/master/CHANGES.md
416
415
  bug_tracker_uri: https://github.com/bkuhlmann/gemsmith/issues
417
- post_install_message:
416
+ changelog_uri: https://www.alchemists.io/projects/gemsmith/changes.html
417
+ documentation_uri: https://www.alchemists.io/projects/gemsmith
418
+ source_code_uri: https://github.com/bkuhlmann/gemsmith
419
+ post_install_message:
418
420
  rdoc_options: []
419
421
  require_paths:
420
422
  - lib
@@ -429,8 +431,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
429
431
  - !ruby/object:Gem::Version
430
432
  version: '0'
431
433
  requirements: []
432
- rubygems_version: 3.1.2
433
- signing_key:
434
+ rubygems_version: 3.1.4
435
+ signing_key:
434
436
  specification_version: 4
435
437
  summary: A command line interface for smithing new Ruby gems.
436
438
  test_files: []