gemsmith 14.0.2 → 14.2.0
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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/{LICENSE.md → LICENSE.adoc} +29 -30
- data/README.adoc +417 -0
- data/bin/gemsmith +1 -1
- data/lib/gemsmith.rb +1 -0
- data/lib/gemsmith/cli.rb +11 -6
- data/lib/gemsmith/generators/bundler_audit.rb +2 -2
- data/lib/gemsmith/generators/git.rb +2 -1
- data/lib/gemsmith/generators/git_cop.rb +1 -1
- data/lib/gemsmith/generators/git_lint.rb +14 -0
- data/lib/gemsmith/generators/rake.rb +3 -3
- data/lib/gemsmith/identity.rb +5 -19
- data/lib/gemsmith/templates/%gem_name%/%gem_name%.gemspec.tt +11 -12
- data/lib/gemsmith/templates/%gem_name%/.github/ISSUE_TEMPLATE.md.tt +8 -5
- data/lib/gemsmith/templates/%gem_name%/.github/PULL_REQUEST_TEMPLATE.md.tt +6 -6
- data/lib/gemsmith/templates/%gem_name%/.rubocop.yml.tt +5 -5
- data/lib/gemsmith/templates/%gem_name%/CHANGES.md.tt +1 -1
- data/lib/gemsmith/templates/%gem_name%/README.md.tt +14 -0
- data/lib/gemsmith/templates/%gem_name%/Rakefile.tt +1 -1
- data/lib/gemsmith/templates/%gem_name%/bin/%gem_name%.tt +1 -1
- data/lib/gemsmith/templates/%gem_name%/lib/%gem_path%/cli.rb.tt +3 -3
- data/lib/gemsmith/templates/%gem_name%/lib/%gem_path%/identity.rb.tt +4 -15
- data/lib/gemsmith/templates/%gem_name%/spec/lib/%gem_path%/cli_spec.rb.tt +2 -2
- metadata +41 -39
- metadata.gz.sig +0 -0
- data/README.md +0 -383
data/bin/gemsmith
CHANGED
data/lib/gemsmith.rb
CHANGED
@@ -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"
|
data/lib/gemsmith/cli.rb
CHANGED
@@ -19,7 +19,7 @@ module Gemsmith
|
|
19
19
|
using Refinements::Strings
|
20
20
|
using Refinements::Hashes
|
21
21
|
|
22
|
-
package_name Identity
|
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
|
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
|
-
|
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:
|
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
|
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
|
11
|
-
cli.uncomment_lines "#{gem_name}/Rakefile", /Bundler
|
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
|
-
"
|
29
|
+
"Generated with [#{Identity::LABEL}](#{Identity::URL})\n" \
|
30
|
+
"#{Identity::VERSION}."
|
30
31
|
end
|
31
32
|
|
32
33
|
def create_commit subject, body
|
@@ -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
|
40
|
-
configuration.dig(:generate, :
|
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
|
-
|
54
|
+
git_lint_task,
|
55
55
|
reek_task,
|
56
56
|
rubocop_task
|
57
57
|
].compress.join " "
|
data/lib/gemsmith/identity.rb
CHANGED
@@ -3,24 +3,10 @@
|
|
3
3
|
module Gemsmith
|
4
4
|
# Gem identity information.
|
5
5
|
module Identity
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
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
|
-
|
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
|
6
|
-
spec.version = <%= config.dig(:gem, :class) %>::Identity
|
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
|
37
|
-
<%- if config.dig(:generate, :
|
38
|
-
spec.add_development_dependency "git-
|
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.
|
45
|
-
spec.add_development_dependency "pry-byebug", "~> 3.
|
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", "~>
|
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.
|
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.
|
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,
|
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
|
-
<!--
|
8
|
+
<!-- Required. List exact steps (numbered list) to reproduce errant behavior. -->
|
6
9
|
|
7
|
-
##
|
8
|
-
<!--
|
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
|
-
<!--
|
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.
|
8
|
+
<!-- Optional. List the key features/highlights as bullet points. -->
|
6
9
|
|
7
10
|
## Notes
|
8
|
-
<!-- Optional. List additional notes/references as bullet points.
|
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
|
-
- https://raw.githubusercontent.com/bkuhlmann/code_quality/4.
|
4
|
-
- https://raw.githubusercontent.com/bkuhlmann/code_quality/4.
|
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.
|
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.
|
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) -%>
|
@@ -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) -%>
|
@@ -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
|
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
|
10
|
+
package_name Identity::VERSION_LABEL
|
11
11
|
|
12
12
|
def self.configuration
|
13
|
-
Runcom::Config.new "#{Identity
|
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
|
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
|
-
|
5
|
-
|
6
|
-
|
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
|
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
|
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
|
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/
|
14
|
-
|
15
|
-
|
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/
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
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-
|
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.
|
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.
|
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.
|
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.
|
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-
|
174
|
+
name: git-lint
|
175
175
|
requirement: !ruby/object:Gem::Requirement
|
176
176
|
requirements:
|
177
177
|
- - "~>"
|
178
178
|
- !ruby/object:Gem::Version
|
179
|
-
version: '
|
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: '
|
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.
|
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.
|
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.
|
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.
|
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: '
|
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: '
|
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.
|
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.
|
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.
|
335
|
-
- LICENSE.
|
334
|
+
- README.adoc
|
335
|
+
- LICENSE.adoc
|
336
336
|
files:
|
337
|
-
- LICENSE.
|
338
|
-
- README.
|
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://
|
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
|
-
|
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.
|
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: []
|