gemsmith 14.1.2 → 14.1.3
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 +2 -1
- data.tar.gz.sig +0 -0
- 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/identity.rb +2 -2
- data/lib/gemsmith/templates/%gem_name%/.rubocop.yml.tt +5 -5
- metadata +7 -7
- 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: 71d69e330ddeb10a0f0ee86df268f4831ba97995c4ee7076258cff58c77f6f91
|
|
4
|
+
data.tar.gz: 5528d59e7b48c184f54158590fc87e384c0cfe6e9d581e50922a14029a20f93e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60eaeb450c590452151a0f18a79e8fb0bf2f42f49e34b76e6a0e2c5784f70f861c2a4ef434245d7cad84d53897fabca182c4ba3229e339a02f174e3431410d80
|
|
7
|
+
data.tar.gz: d26144e6176b38b04421c9ba163fd3b0d570b04d038c5491f49416d87257eb16a6537784ee7f7c819c94508def16cef19fa14384564ed3f9b6e61e3e092328f3
|
checksums.yaml.gz.sig
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
{
|
|
1
|
+
6�]�aƏc/X�T��F��"�x�TmMK4�[��2+���z%w{�&�E�:@�h/�JDь��P��@�������qY6r3̣��Rd���xy�ѥy�Q�����J�2������c�j�6Ϡ1�Ԣ���X�zl�
|
|
2
|
+
{\������4�Y1ij<�Q�SD��m�H~4M�y�9��$�Ki��w��8Iӊ�G;x��/F��Q9���:>�������Xz���ΜCV�%lf\Ku���Su�CbMb�ހ�
|
data.tar.gz.sig
CHANGED
|
Binary file
|
|
@@ -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
|
data/lib/gemsmith/identity.rb
CHANGED
|
@@ -5,8 +5,8 @@ module Gemsmith
|
|
|
5
5
|
module Identity
|
|
6
6
|
NAME = "gemsmith"
|
|
7
7
|
LABEL = "Gemsmith"
|
|
8
|
-
VERSION = "14.1.
|
|
8
|
+
VERSION = "14.1.3"
|
|
9
9
|
VERSION_LABEL = "#{LABEL} #{VERSION}"
|
|
10
|
-
URL = "https://
|
|
10
|
+
URL = "https://www.alchemists.io/projects/gemsmith"
|
|
11
11
|
end
|
|
12
12
|
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.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) -%>
|
metadata
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gemsmith
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 14.1.
|
|
4
|
+
version: 14.1.3
|
|
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
|
- |
|
|
@@ -28,7 +28,7 @@ cert_chain:
|
|
|
28
28
|
2XV8FRa7/JimI07sPLC13eLY3xd/aYTi85Z782KIA4j0G8XEEWAX0ouBhlXPocZv
|
|
29
29
|
QWc=
|
|
30
30
|
-----END CERTIFICATE-----
|
|
31
|
-
date: 2020-
|
|
31
|
+
date: 2020-06-06 00:00:00.000000000 Z
|
|
32
32
|
dependencies:
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: milestoner
|
|
@@ -324,7 +324,7 @@ 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:
|
|
@@ -415,7 +415,7 @@ metadata:
|
|
|
415
415
|
changelog_uri: https://www.alchemists.io/projects/gemsmith/changes.html
|
|
416
416
|
documentation_uri: https://www.alchemists.io/projects/gemsmith
|
|
417
417
|
source_code_uri: https://github.com/bkuhlmann/gemsmith
|
|
418
|
-
post_install_message:
|
|
418
|
+
post_install_message:
|
|
419
419
|
rdoc_options: []
|
|
420
420
|
require_paths:
|
|
421
421
|
- lib
|
|
@@ -430,8 +430,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
430
430
|
- !ruby/object:Gem::Version
|
|
431
431
|
version: '0'
|
|
432
432
|
requirements: []
|
|
433
|
-
rubygems_version: 3.1.
|
|
434
|
-
signing_key:
|
|
433
|
+
rubygems_version: 3.1.4
|
|
434
|
+
signing_key:
|
|
435
435
|
specification_version: 4
|
|
436
436
|
summary: A command line interface for smithing new Ruby gems.
|
|
437
437
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|