gemsmith 14.4.0 → 14.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6312399b5a70937198d5ac461a98046b0ce76ee8216dd922f834a608611f0926
4
- data.tar.gz: d8a4746727aaa738260c169b172ef020b4965fba06c9d3d68de83354627153eb
3
+ metadata.gz: 8b7457300e915d5d07eba2cce6833fed4a167bcd107d2fc91373d31457c113c6
4
+ data.tar.gz: 9f08ed76e0fa3fbd8d02610a034ef820585691ebcb3a2dd116ae199957e501fd
5
5
  SHA512:
6
- metadata.gz: 80a400ac90ac5a8ca79b065c956e71cbfa117030494a8d29207a952d73a05dca83a854c79c4938130f3c2a00cd1d5fe3bb69f3ed00cb7f34dd21dd993baca863
7
- data.tar.gz: 6ec8040e50c17625dce9231d7a1e6273bcab5b714743b0fb3e084ffdb0045dffdb8ef8d772d36c810ef20cb3a2710986f6707a0d7503a6c3bb061bd944202b3d
6
+ metadata.gz: c18d96a5a586ef9017daaac65ce0f5f1ceecfa199c1c38c68d545e310b43a5e2a097cea4a4beb52d23f0b0b6bc53b92bfe490e42277ab28887d374cfbce8b28d
7
+ data.tar.gz: 1bd72ecbbdd888bd6997314ca6fbdcd0d1d27cd6406737f5a9cd82cfe33e2e0f12bb00f11038d014d1dfdac9d3dd6c2f460dffdbf7a5162d5e79d19feb898a3e
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -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-original.png[Screencast,role=focal_point]
53
+ image::https://www.alchemists.io/images/screencasts/gemsmith/cover.svg[Screencast,600,240,role=focal_point]
54
54
 
55
55
  == Requirements
56
56
 
@@ -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
@@ -5,7 +5,7 @@ module Gemsmith
5
5
  module Identity
6
6
  NAME = "gemsmith"
7
7
  LABEL = "Gemsmith"
8
- VERSION = "14.4.0"
8
+ VERSION = "14.5.0"
9
9
  VERSION_LABEL = "#{LABEL} #{VERSION}"
10
10
  URL = "https://www.alchemists.io/projects/gemsmith"
11
11
  end
@@ -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.83"
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.10.0/configurations/rubocop/ruby.yml
3
- - https://raw.githubusercontent.com/bkuhlmann/code_quality/4.10.0/configurations/rubocop/rake.yml
4
- - https://raw.githubusercontent.com/bkuhlmann/code_quality/4.10.0/configurations/rubocop/performance.yml
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.10.0/configurations/rubocop/rspec.yml
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.10.0/configurations/rubocop/rails.yml
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.0
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-14 00:00:00.000000000 Z
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.83'
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.83'
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