gemsmith 14.10.0 → 15.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +4 -1
- data/README.adoc +0 -1
- data/bin/gemsmith +0 -3
- data/lib/gemsmith.rb +0 -2
- data/lib/gemsmith/cli.rb +13 -12
- data/lib/gemsmith/credentials.rb +10 -8
- data/lib/gemsmith/gem/requirement.rb +1 -1
- data/lib/gemsmith/gem/specification.rb +3 -2
- data/lib/gemsmith/generators/base.rb +5 -3
- data/lib/gemsmith/generators/bundler.rb +5 -1
- data/lib/gemsmith/generators/documentation.rb +1 -2
- data/lib/gemsmith/generators/git.rb +4 -1
- data/lib/gemsmith/identity.rb +1 -1
- data/lib/gemsmith/rake/builder.rb +9 -6
- data/lib/gemsmith/rake/publisher.rb +5 -3
- data/lib/gemsmith/rake/tasks.rb +5 -2
- data/lib/gemsmith/templates/%gem_name%/%gem_name%.gemspec.tt +4 -3
- data/lib/gemsmith/templates/%gem_name%/Gemfile.tt +7 -7
- data/lib/gemsmith/templates/%gem_name%/circle.yml.tt +4 -3
- data/lib/gemsmith/templates/%gem_name%/lib/generators/%gem_path%/install/install_generator.rb.tt +3 -1
- data/lib/gemsmith/templates/%gem_name%/lib/generators/%gem_path%/upgrade/upgrade_generator.rb.tt +1 -1
- data/lib/gemsmith/templates/%gem_name%/spec/lib/%gem_path%/cli_spec.rb.tt +5 -2
- data/lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt +1 -1
- data/lib/gemsmith/templates/%gem_name%/spec/support/shared_contexts/temp_dir.rb.tt +1 -1
- metadata +30 -18
- metadata.gz.sig +0 -0
- data/lib/gemsmith/generators/git_cop.rb +0 -14
- data/lib/gemsmith/git.rb +0 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f190e2e184c6e7bc0162db81fafa6e6b540f002a8ea8aaaa40f5e74962c79b9
|
4
|
+
data.tar.gz: 24e012ab124c2ad7b2bd44d7924d3dba5dffd3f2ca101b9c0a2559fb52015294
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5888b48be409236bdc4a3bb4e0a4bf5ff9c0853e54ee89af15d555188dc34aac3668d8537ebc8a21de40c4da71a589eed43427e5a07bd75ffebf4157b94e02d
|
7
|
+
data.tar.gz: 8f435efd7a8b247eb5d68577e0b55a8986603fbb394595e958dbfdce61632e376b84e9272ef7aaea57a5faba1ad02d487e5ed458bc48530de53bc89c57fc5e64
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
@@ -1 +1,4 @@
|
|
1
|
-
|
1
|
+
���w�^�g�x+3��0;[�ٙ�H\�-P�4�*㙲���
|
2
|
+
�8�;ֱTGU�y�q��]EtKc�7�D�ۯ��/t�B$�.
|
3
|
+
L`N�H;"`�ŧ�H���#���@z�Xu���~��;�#�X��&I���G����
|
4
|
+
@���QS6��W�XӁ����tOp�4�
|
data/README.adoc
CHANGED
@@ -94,7 +94,6 @@ For more gem generation options, type: `gemsmith --help --generate`
|
|
94
94
|
[--circle-ci], [--no-circle-ci] # Add Circle CI support.
|
95
95
|
[--cli], [--no-cli] # Add CLI support.
|
96
96
|
[--engine], [--no-engine] # Add Rails Engine support.
|
97
|
-
[--git-cop], [--no-git-cop] # Add Git Cop support. DEPRECATED: Use Git Lint instead.
|
98
97
|
[--git-lint], [--no-git-lint] # Add Git Lint support.
|
99
98
|
# Default: true
|
100
99
|
[--git-hub], [--no-git-hub] # Add GitHub support.
|
data/bin/gemsmith
CHANGED
data/lib/gemsmith.rb
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "gemsmith/identity"
|
4
|
-
require "gemsmith/git"
|
5
4
|
require "gemsmith/credentials"
|
6
5
|
require "gemsmith/errors/base"
|
7
6
|
require "gemsmith/errors/requirement_conversion"
|
@@ -19,7 +18,6 @@ require "gemsmith/generators/cli"
|
|
19
18
|
require "gemsmith/generators/documentation"
|
20
19
|
require "gemsmith/generators/gem"
|
21
20
|
require "gemsmith/generators/git"
|
22
|
-
require "gemsmith/generators/git_cop"
|
23
21
|
require "gemsmith/generators/git_lint"
|
24
22
|
require "gemsmith/generators/git_hub"
|
25
23
|
require "gemsmith/generators/guard"
|
data/lib/gemsmith/cli.rb
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "git_plus"
|
3
4
|
require "thor"
|
4
5
|
require "thor/actions"
|
5
6
|
require "refinements/strings"
|
@@ -7,6 +8,7 @@ require "refinements/hashes"
|
|
7
8
|
require "runcom"
|
8
9
|
require "gemsmith/helpers/cli"
|
9
10
|
require "gemsmith/helpers/template"
|
11
|
+
require "pathname"
|
10
12
|
|
11
13
|
module Gemsmith
|
12
14
|
# The Command Line Interface (CLI) for the gem.
|
@@ -23,27 +25,29 @@ module Gemsmith
|
|
23
25
|
|
24
26
|
# Overwrites Thor's template source root.
|
25
27
|
def self.source_root
|
26
|
-
|
28
|
+
Pathname(__dir__).join("templates").freeze
|
27
29
|
end
|
28
30
|
|
29
31
|
# rubocop:disable Metrics/MethodLength
|
30
32
|
def self.configuration
|
33
|
+
repository = GitPlus::Repository.new
|
34
|
+
|
31
35
|
Runcom::Config.new "#{Identity::NAME}/configuration.yml",
|
32
36
|
defaults: {
|
33
37
|
year: Time.now.year,
|
34
|
-
github_user:
|
38
|
+
github_user: repository.config_get("github.user"),
|
35
39
|
gem: {
|
36
40
|
label: "Undefined",
|
37
41
|
name: "undefined",
|
38
42
|
path: "undefined",
|
39
43
|
class: "Undefined",
|
40
44
|
platform: "Gem::Platform::RUBY",
|
41
|
-
url:
|
45
|
+
url: "",
|
42
46
|
license: "MIT"
|
43
47
|
},
|
44
48
|
author: {
|
45
|
-
name:
|
46
|
-
email:
|
49
|
+
name: repository.config_get("user.name"),
|
50
|
+
email: repository.config_get("user.email"),
|
47
51
|
url: ""
|
48
52
|
},
|
49
53
|
organization: {
|
@@ -52,7 +56,7 @@ module Gemsmith
|
|
52
56
|
},
|
53
57
|
versions: {
|
54
58
|
ruby: RUBY_VERSION,
|
55
|
-
rails: "
|
59
|
+
rails: "6.1"
|
56
60
|
},
|
57
61
|
generate: {
|
58
62
|
bundler_audit: true,
|
@@ -87,7 +91,6 @@ module Gemsmith
|
|
87
91
|
Generators::Engine,
|
88
92
|
Generators::Rspec,
|
89
93
|
Generators::BundlerAudit,
|
90
|
-
Generators::GitCop,
|
91
94
|
Generators::GitLint,
|
92
95
|
Generators::Reek,
|
93
96
|
Generators::Guard,
|
@@ -127,10 +130,6 @@ module Gemsmith
|
|
127
130
|
desc: "Add Rails Engine support.",
|
128
131
|
type: :boolean,
|
129
132
|
default: configuration.to_h.dig(:generate, :engine)
|
130
|
-
method_option :git_cop,
|
131
|
-
desc: "Add Git Cop support. DEPRECATED: Use Git Lint instead.",
|
132
|
-
type: :boolean,
|
133
|
-
default: false
|
134
133
|
method_option :git_lint,
|
135
134
|
desc: "Add Git Lint support.",
|
136
135
|
type: :boolean,
|
@@ -232,6 +231,8 @@ module Gemsmith
|
|
232
231
|
# :reek:FeatureEnvy
|
233
232
|
# rubocop:disable Metrics/MethodLength
|
234
233
|
def setup_configuration name:, options: {}
|
234
|
+
repository = GitPlus::Repository.new
|
235
|
+
|
235
236
|
@configuration = configuration.to_h.merge(
|
236
237
|
gem: {
|
237
238
|
label: name.titleize,
|
@@ -239,7 +240,7 @@ module Gemsmith
|
|
239
240
|
path: name.snakecase,
|
240
241
|
class: name.camelcase,
|
241
242
|
platform: "Gem::Platform::RUBY",
|
242
|
-
url:
|
243
|
+
url: %(https://github.com/#{repository.config_get "github.user"}/#{name}),
|
243
244
|
license: "MIT"
|
244
245
|
},
|
245
246
|
generate: options.symbolize_keys
|
data/lib/gemsmith/credentials.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "yaml"
|
4
|
-
require "
|
4
|
+
require "refinements/pathnames"
|
5
5
|
require "gemsmith/authenticators/basic"
|
6
6
|
require "gemsmith/authenticators/ruby_gems"
|
7
7
|
|
@@ -11,10 +11,12 @@ module Gemsmith
|
|
11
11
|
DEFAULT_KEY = :rubygems_api_key
|
12
12
|
DEFAULT_URL = "https://rubygems.org"
|
13
13
|
|
14
|
+
using Refinements::Pathnames
|
15
|
+
|
14
16
|
attr_reader :key, :url
|
15
17
|
|
16
18
|
def self.file_path
|
17
|
-
|
19
|
+
Pathname(ENV.fetch("HOME")).join ".gem", "credentials"
|
18
20
|
end
|
19
21
|
|
20
22
|
def self.authenticators
|
@@ -52,7 +54,7 @@ module Gemsmith
|
|
52
54
|
attr_reader :credentials, :shell
|
53
55
|
|
54
56
|
def exist?
|
55
|
-
|
57
|
+
self.class.file_path.exist?
|
56
58
|
end
|
57
59
|
|
58
60
|
def read
|
@@ -62,11 +64,11 @@ module Gemsmith
|
|
62
64
|
end
|
63
65
|
|
64
66
|
def write
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
67
|
+
self.class
|
68
|
+
.file_path
|
69
|
+
.tap { |path| path.parent.make_path }
|
70
|
+
.write(YAML.dump(update))
|
71
|
+
.chmod 0o600
|
70
72
|
end
|
71
73
|
|
72
74
|
def update
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "pathname"
|
3
4
|
require "versionaire"
|
4
5
|
|
5
6
|
module Gemsmith
|
@@ -26,7 +27,7 @@ module Gemsmith
|
|
26
27
|
|
27
28
|
def initialize file_path
|
28
29
|
@file_path = file_path
|
29
|
-
@spec = self.class.specification.load file_path
|
30
|
+
@spec = self.class.specification.load file_path.to_s
|
30
31
|
validate
|
31
32
|
@version = Versionaire::Version @spec.version.to_s
|
32
33
|
end
|
@@ -56,7 +57,7 @@ module Gemsmith
|
|
56
57
|
end
|
57
58
|
|
58
59
|
def package_path
|
59
|
-
|
60
|
+
Pathname("pkg").join package_file_name
|
60
61
|
end
|
61
62
|
|
62
63
|
private
|
@@ -1,11 +1,13 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "pathname"
|
4
|
+
|
3
5
|
module Gemsmith
|
4
6
|
module Generators
|
5
7
|
# Abstract class from which all generators inherit from.
|
6
8
|
class Base
|
7
|
-
LIB_ROOT =
|
8
|
-
LIB_ROOT_GEM =
|
9
|
+
LIB_ROOT = Pathname("%gem_name%/lib").freeze
|
10
|
+
LIB_ROOT_GEM = LIB_ROOT.join("%gem_path%").freeze
|
9
11
|
|
10
12
|
def self.run cli, configuration: {}
|
11
13
|
new(cli, configuration: configuration).run
|
@@ -33,7 +35,7 @@ module Gemsmith
|
|
33
35
|
end
|
34
36
|
|
35
37
|
def gem_root
|
36
|
-
|
38
|
+
Pathname(cli.destination_root).join gem_name
|
37
39
|
end
|
38
40
|
|
39
41
|
def template path
|
@@ -1,11 +1,15 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "refinements/pathnames"
|
4
|
+
|
3
5
|
module Gemsmith
|
4
6
|
module Generators
|
5
7
|
# Generates Bundler support.
|
6
8
|
class Bundler < Base
|
9
|
+
using Refinements::Pathnames
|
10
|
+
|
7
11
|
def run
|
8
|
-
|
12
|
+
gem_root.change_dir do
|
9
13
|
cli.say_status :info, "Installing gem dependencies...", :green
|
10
14
|
cli.run "bundle install"
|
11
15
|
end
|
@@ -1,11 +1,14 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "open3"
|
4
|
+
require "refinements/pathnames"
|
4
5
|
|
5
6
|
module Gemsmith
|
6
7
|
module Generators
|
7
8
|
# Generates Git support.
|
8
9
|
class Git < Base
|
10
|
+
using Refinements::Pathnames
|
11
|
+
|
9
12
|
def initialize cli, configuration: {}, shell: Open3
|
10
13
|
super cli, configuration: configuration
|
11
14
|
@shell = shell
|
@@ -31,7 +34,7 @@ module Gemsmith
|
|
31
34
|
end
|
32
35
|
|
33
36
|
def create_commit subject, body
|
34
|
-
|
37
|
+
gem_root.change_dir do
|
35
38
|
shell.capture3 "git init"
|
36
39
|
shell.capture3 "git add ."
|
37
40
|
shell.capture3 %(git commit --all --no-verify --message "#{subject}" --message "#{body}")
|
data/lib/gemsmith/identity.rb
CHANGED
@@ -1,19 +1,22 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "bundler/ui/shell"
|
4
|
-
require "
|
4
|
+
require "refinements/pathnames"
|
5
5
|
|
6
6
|
module Gemsmith
|
7
7
|
module Rake
|
8
8
|
# Provides gem build functionality. Meant to be wrapped in Rake tasks.
|
9
9
|
class Builder
|
10
|
-
|
10
|
+
using Refinements::Pathnames
|
11
|
+
|
12
|
+
def initialize root: Pathname("pkg"), shell: Bundler::UI::Shell.new, kernel: Kernel
|
13
|
+
@root = root
|
11
14
|
@shell = shell
|
12
15
|
@kernel = kernel
|
13
16
|
end
|
14
17
|
|
15
18
|
def clean
|
16
|
-
|
19
|
+
root.remove_tree
|
17
20
|
shell.confirm "Cleaned gem artifacts."
|
18
21
|
end
|
19
22
|
|
@@ -28,8 +31,8 @@ module Gemsmith
|
|
28
31
|
path = gem_spec.package_path
|
29
32
|
|
30
33
|
if kernel.system "gem build #{gem_spec.name}.gemspec"
|
31
|
-
|
32
|
-
|
34
|
+
root.make_path
|
35
|
+
Pathname(gem_spec.package_file_name).copy path
|
33
36
|
shell.confirm "Built: #{path}."
|
34
37
|
else
|
35
38
|
shell.error "Unable to build: #{path}."
|
@@ -48,7 +51,7 @@ module Gemsmith
|
|
48
51
|
|
49
52
|
private
|
50
53
|
|
51
|
-
attr_reader :shell, :kernel
|
54
|
+
attr_reader :root, :shell, :kernel
|
52
55
|
end
|
53
56
|
end
|
54
57
|
end
|
@@ -1,9 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "milestoner"
|
4
|
+
require "refinements/pathnames"
|
4
5
|
require "gemsmith/identity"
|
5
6
|
require "gemsmith/credentials"
|
6
|
-
require "gemsmith/git"
|
7
7
|
require "gemsmith/cli"
|
8
8
|
|
9
9
|
module Gemsmith
|
@@ -11,13 +11,15 @@ module Gemsmith
|
|
11
11
|
# Provides gem release functionality. Meant to be wrapped in Rake tasks.
|
12
12
|
# :reek:TooManyInstanceVariables
|
13
13
|
class Publisher
|
14
|
+
using Refinements::Pathnames
|
15
|
+
|
14
16
|
def self.gem_spec_path
|
15
|
-
|
17
|
+
Pathname.pwd.files("*.gemspec").first.to_s
|
16
18
|
end
|
17
19
|
|
18
20
|
# rubocop:disable Metrics/ParameterLists
|
19
21
|
# :reek:LongParameterList
|
20
|
-
def initialize gem_spec: Gemsmith::Gem::Specification.new(self.class.gem_spec_path),
|
22
|
+
def initialize gem_spec: Gemsmith::Gem::Specification.new(self.class.gem_spec_path.to_s),
|
21
23
|
gem_config: Gemsmith::CLI.configuration.to_h,
|
22
24
|
credentials: Gemsmith::Credentials,
|
23
25
|
publisher: Milestoner::Publisher.new,
|
data/lib/gemsmith/rake/tasks.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "rake"
|
4
|
+
require "refinements/pathnames"
|
4
5
|
require "tocer/rake/tasks"
|
5
6
|
require "gemsmith/gem/specification"
|
6
7
|
require "gemsmith/errors/base"
|
@@ -14,15 +15,17 @@ module Gemsmith
|
|
14
15
|
class Tasks
|
15
16
|
include ::Rake::DSL
|
16
17
|
|
18
|
+
using Refinements::Pathnames
|
19
|
+
|
17
20
|
def self.default_gem_spec
|
18
|
-
|
21
|
+
Pathname.pwd.files("*.gemspec").first
|
19
22
|
end
|
20
23
|
|
21
24
|
def self.setup
|
22
25
|
new.install
|
23
26
|
end
|
24
27
|
|
25
|
-
def initialize gem_spec: Gem::Specification.new(self.class.default_gem_spec),
|
28
|
+
def initialize gem_spec: Gem::Specification.new(self.class.default_gem_spec.to_s),
|
26
29
|
builder: Rake::Builder.new,
|
27
30
|
publisher: Rake::Publisher.new
|
28
31
|
@gem_spec = gem_spec
|
@@ -11,9 +11,10 @@ Gem::Specification.new do |spec|
|
|
11
11
|
spec.license = "MIT"
|
12
12
|
|
13
13
|
spec.metadata = {
|
14
|
-
"
|
14
|
+
"bug_tracker_uri" => "<%= config.dig(:gem, :url) %>/issues",
|
15
15
|
"changelog_uri" => "<%= config.dig(:gem, :url) %>/blob/master/CHANGES.md",
|
16
|
-
"
|
16
|
+
"documentation_uri" => "<%= config.dig(:gem, :url) %>",
|
17
|
+
"source_code_uri" => "<%= config.dig(:gem, :url) %>"
|
17
18
|
}
|
18
19
|
|
19
20
|
<%- if config.dig(:generate, :security) -%>
|
@@ -26,7 +27,7 @@ Gem::Specification.new do |spec|
|
|
26
27
|
spec.add_dependency "rails", "~> <%= config.dig(:versions, :rails) %>"
|
27
28
|
<%- end -%>
|
28
29
|
<%- if config.dig(:generate, :cli) -%>
|
29
|
-
spec.add_dependency "runcom", "~>
|
30
|
+
spec.add_dependency "runcom", "~> 7.0"
|
30
31
|
spec.add_dependency "thor", "~> 0.20"
|
31
32
|
<%- end -%>
|
32
33
|
|
@@ -7,7 +7,7 @@ group :code_quality do
|
|
7
7
|
gem "bundler-audit", "~> 0.7"
|
8
8
|
<%- end -%>
|
9
9
|
<%- if config.dig(:generate, :git_lint) -%>
|
10
|
-
gem "git-lint", "~>
|
10
|
+
gem "git-lint", "~> 2.0"
|
11
11
|
<%- end -%>
|
12
12
|
<%- if config.dig(:generate, :reek) -%>
|
13
13
|
gem "reek", "~> 6.0"
|
@@ -20,23 +20,23 @@ group :code_quality do
|
|
20
20
|
<%- if config.dig(:generate, :rubocop) && config.dig(:generate, :rspec) -%>
|
21
21
|
gem "rubocop-rspec", "~> 2.0"
|
22
22
|
<%- end -%>
|
23
|
+
<%- if config.dig(:generate, :simple_cov) -%>
|
24
|
+
gem "simplecov", "~> 0.20"
|
25
|
+
<%- end -%>
|
23
26
|
end
|
24
27
|
|
25
28
|
group :development do
|
26
29
|
gem "gemsmith", "~> <%= Gemsmith::Identity::VERSION[/\d+\.\d+/] %>"
|
27
|
-
<%- if config.dig(:generate, :guard) -%>
|
28
|
-
gem "guard-rspec", "~> 4.7", require: false
|
29
|
-
<%- end -%>
|
30
30
|
gem "rake", "~> 13.0"
|
31
31
|
end
|
32
32
|
|
33
33
|
group :test do
|
34
|
+
<%- if config.dig(:generate, :guard) -%>
|
35
|
+
gem "guard-rspec", "~> 4.7", require: false
|
36
|
+
<%- end -%>
|
34
37
|
<%- if config.dig(:generate, :rspec) -%>
|
35
38
|
gem "<%= config.dig(:generate, :engine) ? "rspec-rails" : "rspec" %>", "~> 3.9"
|
36
39
|
<%- end -%>
|
37
|
-
<%- if config.dig(:generate, :simple_cov) -%>
|
38
|
-
gem "simplecov", "~> 0.20"
|
39
|
-
<%- end -%>
|
40
40
|
end
|
41
41
|
|
42
42
|
group :tools do
|
@@ -25,9 +25,9 @@ jobs:
|
|
25
25
|
- run:
|
26
26
|
name: Ruby Install
|
27
27
|
command: |
|
28
|
-
curl https://cache.ruby-lang.org/pub/ruby/${CI_RUBY_VERSION::-2}/ruby-$CI_RUBY_VERSION.tar.bz2 > ../ruby-$CI_RUBY_VERSION.tar.gz
|
29
28
|
cd ..
|
30
|
-
tar
|
29
|
+
curl https://cache.ruby-lang.org/pub/ruby/${CI_RUBY_VERSION::-2}/ruby-$CI_RUBY_VERSION.tar.gz > ruby-$CI_RUBY_VERSION.tar.gz
|
30
|
+
tar --extract --gzip --verbose --file ruby-$CI_RUBY_VERSION.tar.gz
|
31
31
|
cd ruby-$CI_RUBY_VERSION
|
32
32
|
./configure
|
33
33
|
make
|
@@ -49,7 +49,8 @@ jobs:
|
|
49
49
|
name: Bundler Install
|
50
50
|
command: |
|
51
51
|
gem update --system
|
52
|
-
bundle
|
52
|
+
bundle config set path "vendor/bundle"
|
53
|
+
bundle install
|
53
54
|
|
54
55
|
- type: cache-save
|
55
56
|
name: Bundler Store
|
data/lib/gemsmith/templates/%gem_name%/lib/generators/%gem_path%/install/install_generator.rb.tt
CHANGED
@@ -1,7 +1,9 @@
|
|
1
|
+
require "pathname"
|
2
|
+
|
1
3
|
<% render_namespace do %>
|
2
4
|
# Generator for installing new files.
|
3
5
|
class InstallGenerator < Rails::Generators::Base
|
4
|
-
source_root
|
6
|
+
source_root Pathname(__dir__).join("../templates")
|
5
7
|
|
6
8
|
desc "Installs additional <%= config.dig(:gem, :label) %> resources."
|
7
9
|
def install
|
data/lib/gemsmith/templates/%gem_name%/lib/generators/%gem_path%/upgrade/upgrade_generator.rb.tt
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
<% render_namespace do %>
|
2
2
|
# Generator for updating existing files.
|
3
3
|
class UpgradeGenerator < Rails::Generators::Base
|
4
|
-
source_root
|
4
|
+
source_root Pathname(__dir__).join("../templates")
|
5
5
|
|
6
6
|
desc "Upgrades previously installed <%= config.dig(:gem, :label) %> resources."
|
7
7
|
def upgrade
|
@@ -3,11 +3,14 @@
|
|
3
3
|
require "spec_helper"
|
4
4
|
|
5
5
|
RSpec.describe <%= config.dig(:gem, :class) %>::CLI do
|
6
|
+
subject(:cli) { described_class.start command_line }
|
7
|
+
|
8
|
+
include_context "with temporary directory"
|
9
|
+
|
6
10
|
let(:options) { [] }
|
7
11
|
let(:command_line) { Array(command).concat options }
|
8
|
-
let(:cli) { described_class.start command_line }
|
9
12
|
|
10
|
-
shared_examples_for "a config command"
|
13
|
+
shared_examples_for "a config command" do
|
11
14
|
context "with no options" do
|
12
15
|
it "prints help text" do
|
13
16
|
result = -> { cli }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gemsmith
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 15.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brooke Kuhlmann
|
@@ -28,50 +28,64 @@ cert_chain:
|
|
28
28
|
2XV8FRa7/JimI07sPLC13eLY3xd/aYTi85Z782KIA4j0G8XEEWAX0ouBhlXPocZv
|
29
29
|
QWc=
|
30
30
|
-----END CERTIFICATE-----
|
31
|
-
date:
|
31
|
+
date: 2021-01-04 00:00:00.000000000 Z
|
32
32
|
dependencies:
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: git_plus
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0.2'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0.2'
|
33
47
|
- !ruby/object:Gem::Dependency
|
34
48
|
name: milestoner
|
35
49
|
requirement: !ruby/object:Gem::Requirement
|
36
50
|
requirements:
|
37
51
|
- - "~>"
|
38
52
|
- !ruby/object:Gem::Version
|
39
|
-
version: '
|
53
|
+
version: '11.1'
|
40
54
|
type: :runtime
|
41
55
|
prerelease: false
|
42
56
|
version_requirements: !ruby/object:Gem::Requirement
|
43
57
|
requirements:
|
44
58
|
- - "~>"
|
45
59
|
- !ruby/object:Gem::Version
|
46
|
-
version: '
|
60
|
+
version: '11.1'
|
47
61
|
- !ruby/object:Gem::Dependency
|
48
62
|
name: pragmater
|
49
63
|
requirement: !ruby/object:Gem::Requirement
|
50
64
|
requirements:
|
51
65
|
- - "~>"
|
52
66
|
- !ruby/object:Gem::Version
|
53
|
-
version: '
|
67
|
+
version: '9.0'
|
54
68
|
type: :runtime
|
55
69
|
prerelease: false
|
56
70
|
version_requirements: !ruby/object:Gem::Requirement
|
57
71
|
requirements:
|
58
72
|
- - "~>"
|
59
73
|
- !ruby/object:Gem::Version
|
60
|
-
version: '
|
74
|
+
version: '9.0'
|
61
75
|
- !ruby/object:Gem::Dependency
|
62
76
|
name: refinements
|
63
77
|
requirement: !ruby/object:Gem::Requirement
|
64
78
|
requirements:
|
65
79
|
- - "~>"
|
66
80
|
- !ruby/object:Gem::Version
|
67
|
-
version: '
|
81
|
+
version: '8.0'
|
68
82
|
type: :runtime
|
69
83
|
prerelease: false
|
70
84
|
version_requirements: !ruby/object:Gem::Requirement
|
71
85
|
requirements:
|
72
86
|
- - "~>"
|
73
87
|
- !ruby/object:Gem::Version
|
74
|
-
version: '
|
88
|
+
version: '8.0'
|
75
89
|
- !ruby/object:Gem::Dependency
|
76
90
|
name: rubocop
|
77
91
|
requirement: !ruby/object:Gem::Requirement
|
@@ -92,14 +106,14 @@ dependencies:
|
|
92
106
|
requirements:
|
93
107
|
- - "~>"
|
94
108
|
- !ruby/object:Gem::Version
|
95
|
-
version: '
|
109
|
+
version: '7.0'
|
96
110
|
type: :runtime
|
97
111
|
prerelease: false
|
98
112
|
version_requirements: !ruby/object:Gem::Requirement
|
99
113
|
requirements:
|
100
114
|
- - "~>"
|
101
115
|
- !ruby/object:Gem::Version
|
102
|
-
version: '
|
116
|
+
version: '7.0'
|
103
117
|
- !ruby/object:Gem::Dependency
|
104
118
|
name: thor
|
105
119
|
requirement: !ruby/object:Gem::Requirement
|
@@ -120,28 +134,28 @@ dependencies:
|
|
120
134
|
requirements:
|
121
135
|
- - "~>"
|
122
136
|
- !ruby/object:Gem::Version
|
123
|
-
version: '
|
137
|
+
version: '11.0'
|
124
138
|
type: :runtime
|
125
139
|
prerelease: false
|
126
140
|
version_requirements: !ruby/object:Gem::Requirement
|
127
141
|
requirements:
|
128
142
|
- - "~>"
|
129
143
|
- !ruby/object:Gem::Version
|
130
|
-
version: '
|
144
|
+
version: '11.0'
|
131
145
|
- !ruby/object:Gem::Dependency
|
132
146
|
name: versionaire
|
133
147
|
requirement: !ruby/object:Gem::Requirement
|
134
148
|
requirements:
|
135
149
|
- - "~>"
|
136
150
|
- !ruby/object:Gem::Version
|
137
|
-
version: '
|
151
|
+
version: '9.0'
|
138
152
|
type: :runtime
|
139
153
|
prerelease: false
|
140
154
|
version_requirements: !ruby/object:Gem::Requirement
|
141
155
|
requirements:
|
142
156
|
- - "~>"
|
143
157
|
- !ruby/object:Gem::Version
|
144
|
-
version: '
|
158
|
+
version: '9.0'
|
145
159
|
description:
|
146
160
|
email:
|
147
161
|
- brooke@alchemists.io
|
@@ -177,7 +191,6 @@ files:
|
|
177
191
|
- lib/gemsmith/generators/engine.rb
|
178
192
|
- lib/gemsmith/generators/gem.rb
|
179
193
|
- lib/gemsmith/generators/git.rb
|
180
|
-
- lib/gemsmith/generators/git_cop.rb
|
181
194
|
- lib/gemsmith/generators/git_hub.rb
|
182
195
|
- lib/gemsmith/generators/git_lint.rb
|
183
196
|
- lib/gemsmith/generators/guard.rb
|
@@ -187,7 +200,6 @@ files:
|
|
187
200
|
- lib/gemsmith/generators/rspec.rb
|
188
201
|
- lib/gemsmith/generators/rubocop.rb
|
189
202
|
- lib/gemsmith/generators/ruby.rb
|
190
|
-
- lib/gemsmith/git.rb
|
191
203
|
- lib/gemsmith/helpers/cli.rb
|
192
204
|
- lib/gemsmith/helpers/template.rb
|
193
205
|
- lib/gemsmith/identity.rb
|
@@ -242,14 +254,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
242
254
|
requirements:
|
243
255
|
- - "~>"
|
244
256
|
- !ruby/object:Gem::Version
|
245
|
-
version: '
|
257
|
+
version: '3.0'
|
246
258
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
247
259
|
requirements:
|
248
260
|
- - ">="
|
249
261
|
- !ruby/object:Gem::Version
|
250
262
|
version: '0'
|
251
263
|
requirements: []
|
252
|
-
rubygems_version: 3.
|
264
|
+
rubygems_version: 3.2.4
|
253
265
|
signing_key:
|
254
266
|
specification_version: 4
|
255
267
|
summary: A command line interface for smithing Ruby gems.
|
metadata.gz.sig
CHANGED
Binary file
|
@@ -1,14 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Gemsmith
|
4
|
-
module Generators
|
5
|
-
# Generates Git Cop support.
|
6
|
-
class GitCop < Base
|
7
|
-
def run
|
8
|
-
return unless configuration.dig :generate, :git_cop
|
9
|
-
|
10
|
-
warn "[DEPRECATION]: Git Cop is deprecated, use Git Lint instead."
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
data/lib/gemsmith/git.rb
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Gemsmith
|
4
|
-
# A thin wrapper to Git.
|
5
|
-
# rubocop:disable Style/StaticClass
|
6
|
-
class Git
|
7
|
-
def self.config_value key
|
8
|
-
`git config #{key}`.chomp
|
9
|
-
end
|
10
|
-
|
11
|
-
def self.github_user
|
12
|
-
config_value "github.user"
|
13
|
-
end
|
14
|
-
|
15
|
-
def self.github_url project
|
16
|
-
return "" if github_user.empty?
|
17
|
-
|
18
|
-
"https://github.com/#{github_user}/#{project}"
|
19
|
-
end
|
20
|
-
end
|
21
|
-
# rubocop:enable Style/StaticClass
|
22
|
-
end
|