gemsmith 14.4.0 → 14.5.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/README.adoc +1 -1
- data/lib/gemsmith/cli.rb +0 -2
- data/lib/gemsmith/identity.rb +1 -1
- data/lib/gemsmith/templates/%gem_name%/%gem_name%.gemspec.tt +1 -1
- data/lib/gemsmith/templates/%gem_name%/.rubocop.yml.tt +5 -5
- metadata +4 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8b7457300e915d5d07eba2cce6833fed4a167bcd107d2fc91373d31457c113c6
|
|
4
|
+
data.tar.gz: 9f08ed76e0fa3fbd8d02610a034ef820585691ebcb3a2dd116ae199957e501fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c18d96a5a586ef9017daaac65ce0f5f1ceecfa199c1c38c68d545e310b43a5e2a097cea4a4beb52d23f0b0b6bc53b92bfe490e42277ab28887d374cfbce8b28d
|
|
7
|
+
data.tar.gz: 1bd72ecbbdd888bd6997314ca6fbdcd0d1d27cd6406737f5a9cd82cfe33e2e0f12bb00f11038d014d1dfdac9d3dd6c2f460dffdbf7a5162d5e79d19feb898a3e
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/README.adoc
CHANGED
|
@@ -50,7 +50,7 @@ toc::[]
|
|
|
50
50
|
== Screencasts
|
|
51
51
|
|
|
52
52
|
[link=https://www.alchemists.io/screencasts/gemsmith]
|
|
53
|
-
image::https://www.alchemists.io/images/screencasts/gemsmith/cover
|
|
53
|
+
image::https://www.alchemists.io/images/screencasts/gemsmith/cover.svg[Screencast,600,240,role=focal_point]
|
|
54
54
|
|
|
55
55
|
== Requirements
|
|
56
56
|
|
data/lib/gemsmith/cli.rb
CHANGED
|
@@ -167,7 +167,6 @@ module Gemsmith
|
|
|
167
167
|
desc: "Add security support.",
|
|
168
168
|
type: :boolean,
|
|
169
169
|
default: configuration.to_h.dig(:generate, :security)
|
|
170
|
-
# rubocop:disable Metrics/AbcSize
|
|
171
170
|
# :reek:TooManyStatements
|
|
172
171
|
def generate name
|
|
173
172
|
print_cli_and_rails_engine_option_error && return if options.cli? && options.engine?
|
|
@@ -179,7 +178,6 @@ module Gemsmith
|
|
|
179
178
|
|
|
180
179
|
say_status :info, "Gem generation finished.", :green
|
|
181
180
|
end
|
|
182
|
-
# rubocop:enable Metrics/AbcSize
|
|
183
181
|
|
|
184
182
|
desc "-o, [--open=GEM]", "Open a gem in default editor."
|
|
185
183
|
map %w[-o --open] => :open
|
data/lib/gemsmith/identity.rb
CHANGED
|
@@ -51,7 +51,7 @@ Gem::Specification.new do |spec|
|
|
|
51
51
|
spec.add_development_dependency "<%= config.dig(:generate, :engine) ? "rspec-rails" : "rspec" %>", "~> 3.9"
|
|
52
52
|
<%- end -%>
|
|
53
53
|
<%- if config.dig(:generate, :rubocop) -%>
|
|
54
|
-
spec.add_development_dependency "rubocop", "~> 0.
|
|
54
|
+
spec.add_development_dependency "rubocop", "~> 0.89"
|
|
55
55
|
spec.add_development_dependency "rubocop-performance", "~> 1.5"
|
|
56
56
|
spec.add_development_dependency "rubocop-rake", "~> 0.5"
|
|
57
57
|
<%- end -%>
|
|
@@ -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.11.0/configurations/rubocop/ruby.yml
|
|
3
|
+
- https://raw.githubusercontent.com/bkuhlmann/code_quality/4.11.0/configurations/rubocop/rake.yml
|
|
4
|
+
- https://raw.githubusercontent.com/bkuhlmann/code_quality/4.11.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.11.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.11.0/configurations/rubocop/rails.yml
|
|
10
10
|
<%- end -%>
|
|
11
11
|
|
|
12
12
|
<%- if config.dig(:generate, :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: 14.
|
|
4
|
+
version: 14.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brooke Kuhlmann
|
|
@@ -28,7 +28,7 @@ cert_chain:
|
|
|
28
28
|
2XV8FRa7/JimI07sPLC13eLY3xd/aYTi85Z782KIA4j0G8XEEWAX0ouBhlXPocZv
|
|
29
29
|
QWc=
|
|
30
30
|
-----END CERTIFICATE-----
|
|
31
|
-
date: 2020-07
|
|
31
|
+
date: 2020-08-07 00:00:00.000000000 Z
|
|
32
32
|
dependencies:
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: milestoner
|
|
@@ -78,14 +78,14 @@ dependencies:
|
|
|
78
78
|
requirements:
|
|
79
79
|
- - "~>"
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
|
-
version: '0.
|
|
81
|
+
version: '0.89'
|
|
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.89'
|
|
89
89
|
- !ruby/object:Gem::Dependency
|
|
90
90
|
name: runcom
|
|
91
91
|
requirement: !ruby/object:Gem::Requirement
|
metadata.gz.sig
CHANGED
|
Binary file
|