gemsmith 10.3.0 → 10.4.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
  SHA1:
3
- metadata.gz: c427876dec1141ae4826c38d072b491b33d2afe3
4
- data.tar.gz: 7098bcf81ef3991b9f48c8eb9d6202ddd46faf25
3
+ metadata.gz: 95e49c9bf5321a58a222fd15ab5b2cabc3919cf9
4
+ data.tar.gz: 8e8b79b715cc99f3e66fc409c63a631bf1fce070
5
5
  SHA512:
6
- metadata.gz: 18ba37e44ff1e19d21a1bc334fa761c2528e4ab815dae773ca3ab386d81938d7e7fde92848f4d6bcdbe7e63e2322e4ec6af593646e57f6d04946f1dfac455abf
7
- data.tar.gz: f963eb4571ab762432f73108e568e15e293e45c9c24d29a8e458501e9b38eb3ba8edd2ae2d7942c40054586f64a6f3428b5fe01c754450bd87f5d6f862e3e56d
6
+ metadata.gz: 9881088acbc7badcaa562c05f61130dc82a8e63d06417db155a5b24a9265d821cb67b2bbf4ee0d1792e018a51aad9ae598031584ba137ac6bb5f06eda90f227d
7
+ data.tar.gz: '068ff4db778e1e90c0debce59e175dd2dad805dd01e80e8914137bffb2095d5f0cd3541bc14d64f7c626eb6dc6ba977cdf0de184b31fe4ba4de49018c5c8b930'
Binary file
data.tar.gz.sig CHANGED
Binary file
data/README.md CHANGED
@@ -50,22 +50,23 @@ A command line interface for smithing new Ruby gems.
50
50
  - Uses [Milestoner](https://github.com/bkuhlmann/milestoner) for consistent project/gem versioning.
51
51
  - Uses [Pragmater](https://github.com/bkuhlmann/pragmater) for Ruby source pragma directives.
52
52
  - Uses [Tocer](https://github.com/bkuhlmann/tocer) for README table of contents generation.
53
- - Supports [Thor](https://github.com/erikhuda/thor).
54
- - Supports [Ruby on Rails](http://rubyonrails.org).
55
- - Supports [RubyGems Security](http://guides.rubygems.org/security).
56
- - Supports [Pry](http://pryrepl.org).
57
- - Supports [Guard](https://github.com/guard/guard).
58
- - Supports [RSpec](http://rspec.info).
53
+ - Supports [Bundler Audit](https://github.com/rubysec/bundler-audit).
54
+ - Supports [Circle CI](https://circleci.com).
55
+ - Supports [Code Climate](https://codeclimate.com).
56
+ - Supports [Gemnasium](https://gemnasium.com).
59
57
  - Supports [Git Cop](https://github.com/bkuhlmann/git-cop).
58
+ - Supports [GitHub](https://github.com).
59
+ - Supports [Guard](https://github.com/guard/guard).
60
+ - Supports [Patreon](https://www.patreon.com).
61
+ - Supports [Pry](http://pryrepl.org).
60
62
  - Supports [Reek](https://github.com/troessner/reek).
63
+ - Supports [RSpec](http://rspec.info).
61
64
  - Supports [Rubocop](https://github.com/bbatsov/rubocop).
65
+ - Supports [Ruby on Rails](http://rubyonrails.org).
66
+ - Supports [RubyGems Security](http://guides.rubygems.org/security).
62
67
  - Supports [SCSS Lint](https://github.com/brigade/scss-lint).
63
- - Supports [GitHub](https://github.com).
64
- - Supports [Code Climate](https://codeclimate.com).
65
- - Supports [Gemnasium](https://gemnasium.com).
66
- - Supports [Circle CI](https://circleci.com).
67
- - Supports [Patreon](https://www.patreon.com).
68
- - Supports common settings and a structured layout for building new gems.
68
+ - Supports [Thor](https://github.com/erikhuda/thor).
69
+ - Supports common settings and a structured layout for building gems.
69
70
  - Supports publishing to public or private gem servers.
70
71
  - Provides common documentation:
71
72
  - [README](README.md)
@@ -136,21 +137,22 @@ The default configuration is as follows:
136
137
  :ruby: "<current Ruby version>"
137
138
  :rails: "5.1"
138
139
  :generate:
140
+ :bundler_audit: false
141
+ :circle_ci: false
139
142
  :cli: false
140
- :rails: false
141
- :security: true
142
- :pry: true
143
- :guard: true
143
+ :code_climate: false
144
+ :gemnasium: false
144
145
  :git_cop: true
145
- :rspec: true
146
+ :git_hub: false
147
+ :guard: true
148
+ :patreon: false
149
+ :pry: true
150
+ :rails: false
146
151
  :reek: true
152
+ :rspec: true
147
153
  :rubocop: true
148
154
  :scss_lint: false
149
- :git_hub: false
150
- :code_climate: false
151
- :gemnasium: false
152
- :circle_ci: false
153
- :patreon: false
155
+ :security: true
154
156
  :publish:
155
157
  :sign: false
156
158
 
@@ -195,28 +197,29 @@ From the command line, type: `gemsmith --help`
195
197
 
196
198
  For more gem generation options, type: `gemsmith --help --generate`
197
199
 
198
- [--cli], [--no-cli] # Add CLI support.
199
- [--rails], [--no-rails] # Add Rails support.
200
- [--security], [--no-security] # Add security support.
201
- # Default: true
202
- [--pry], [--no-pry] # Add Pry support.
203
- # Default: true
204
- [--guard], [--no-guard] # Add Guard support.
205
- # Default: true
206
- [--git-cop], [--no-git-cop] # Add Git Cop support.
207
- # Default: true
208
- [--rspec], [--no-rspec] # Add RSpec support.
209
- # Default: true
210
- [--reek], [--no-reek] # Add Reek support.
211
- # Default: true
212
- [--rubocop], [--no-rubocop] # Add Rubocop support.
213
- # Default: true
214
- [--scss-lint], [--no-scss-lint] # Add SCSS Lint support.
215
- [--git-hub], [--no-git-hub] # Add GitHub support.
216
- [--code-climate], [--no-code-climate] # Add Code Climate support.
217
- [--gemnasium], [--no-gemnasium] # Add Gemnasium support.
218
- [--circle-ci], [--no-circle-ci] # Add Circle CI support.
219
- [--patreon], [--no-patreon] # Add Patreon support.
200
+ [--bundler-audit], [--no-bundler-audit] # Add Bundler Audit support.
201
+ [--circle-ci], [--no-circle-ci] # Add Circle CI support.
202
+ [--cli], [--no-cli] # Add CLI support.
203
+ [--code-climate], [--no-code-climate] # Add Code Climate support.
204
+ [--gemnasium], [--no-gemnasium] # Add Gemnasium support.
205
+ [--git-cop], [--no-git-cop] # Add Git Cop support.
206
+ # Default: true
207
+ [--git-hub], [--no-git-hub] # Add GitHub support.
208
+ [--guard], [--no-guard] # Add Guard support.
209
+ # Default: true
210
+ [--patreon], [--no-patreon] # Add Patreon support.
211
+ [--pry], [--no-pry] # Add Pry support.
212
+ # Default: true
213
+ [--rails], [--no-rails] # Add Rails support.
214
+ [--reek], [--no-reek] # Add Reek support.
215
+ # Default: true
216
+ [--rspec], [--no-rspec] # Add RSpec support.
217
+ # Default: true
218
+ [--rubocop], [--no-rubocop] # Add Rubocop support.
219
+ # Default: true
220
+ [--scss-lint], [--no-scss-lint] # Add SCSS Lint support.
221
+ [--security], [--no-security] # Add security support.
222
+ # Default: true
220
223
 
221
224
  ### Rake
222
225
 
@@ -224,6 +227,7 @@ Once a gem skeleton has been created, the following tasks are available (i.e. `b
224
227
  -T`):
225
228
 
226
229
  rake build # Build example-0.1.0.gem package
230
+ rake bundle:audit # Updates the ruby-advisory-db then runs bundle-audit
227
231
  rake clean # Clean gem artifacts
228
232
  rake code_quality # Run code quality checks
229
233
  rake doc # Update README (table of contents)
@@ -235,6 +239,9 @@ Once a gem skeleton has been created, the following tasks are available (i.e. `b
235
239
  rake rubocop:auto_correct # Auto-correct RuboCop offenses
236
240
  rake spec # Run RSpec code examples
237
241
 
242
+ *NOTE: Some tasks might differ depending on what options you enabled/disabled during gem
243
+ generation.*
244
+
238
245
  When building/testing your gem locally, a typical workflow is:
239
246
 
240
247
  0. `bundle exec rake install`
@@ -13,6 +13,7 @@ require "gemsmith/gem/requirement"
13
13
  require "gemsmith/gem/specification"
14
14
  require "gemsmith/generators/base"
15
15
  require "gemsmith/generators/bundler"
16
+ require "gemsmith/generators/bundler_audit"
16
17
  require "gemsmith/generators/circle_ci"
17
18
  require "gemsmith/generators/cli"
18
19
  require "gemsmith/generators/code_climate"
@@ -54,21 +54,22 @@ module Gemsmith
54
54
  rails: "5.1"
55
55
  },
56
56
  generate: {
57
+ bundler_audit: false,
58
+ circle_ci: false,
57
59
  cli: false,
58
- rails: false,
59
- security: true,
60
- pry: true,
61
- guard: true,
60
+ code_climate: false,
61
+ gemnasium: false,
62
62
  git_cop: true,
63
- rspec: true,
63
+ git_hub: false,
64
+ guard: true,
65
+ patreon: false,
66
+ pry: true,
67
+ rails: false,
64
68
  reek: true,
69
+ rspec: true,
65
70
  rubocop: true,
66
71
  scss_lint: false,
67
- git_hub: false,
68
- code_climate: false,
69
- gemnasium: false,
70
- circle_ci: false,
71
- patreon: false
72
+ security: true
72
73
  },
73
74
  publish: {
74
75
  sign: false
@@ -85,6 +86,7 @@ module Gemsmith
85
86
  Generators::Ruby,
86
87
  Generators::Rails,
87
88
  Generators::Rspec,
89
+ Generators::BundlerAudit,
88
90
  Generators::GitCop,
89
91
  Generators::Reek,
90
92
  Generators::Rubocop,
@@ -109,38 +111,58 @@ module Gemsmith
109
111
 
110
112
  desc "-g, [--generate=GEM]", "Generate new gem."
111
113
  map %w[-g --generate] => :generate
114
+ method_option :bundler_audit,
115
+ desc: "Add Bundler Audit support.",
116
+ type: :boolean,
117
+ default: configuration.to_h.dig(:generate, :bundler_audit)
118
+ method_option :circle_ci,
119
+ desc: "Add Circle CI support.",
120
+ type: :boolean,
121
+ default: configuration.to_h.dig(:generate, :circle_ci)
112
122
  method_option :cli,
113
123
  desc: "Add CLI support.",
114
124
  type: :boolean,
115
125
  default: configuration.to_h.dig(:generate, :cli)
116
- method_option :rails,
117
- desc: "Add Rails support.",
126
+ method_option :code_climate,
127
+ desc: "Add Code Climate support.",
118
128
  type: :boolean,
119
- default: configuration.to_h.dig(:generate, :rails)
120
- method_option :security,
121
- desc: "Add security support.",
129
+ default: configuration.to_h.dig(:generate, :code_climate)
130
+ method_option :gemnasium,
131
+ desc: "Add Gemnasium support.",
122
132
  type: :boolean,
123
- default: configuration.to_h.dig(:generate, :security)
124
- method_option :pry,
125
- desc: "Add Pry support.",
133
+ default: configuration.to_h.dig(:generate, :gemnasium)
134
+ method_option :git_cop,
135
+ desc: "Add Git Cop support.",
126
136
  type: :boolean,
127
- default: configuration.to_h.dig(:generate, :pry)
137
+ default: configuration.to_h.dig(:generate, :git_cop)
138
+ method_option :git_hub,
139
+ desc: "Add GitHub support.",
140
+ type: :boolean,
141
+ default: configuration.to_h.dig(:generate, :git_hub)
128
142
  method_option :guard,
129
143
  desc: "Add Guard support.",
130
144
  type: :boolean,
131
145
  default: configuration.to_h.dig(:generate, :guard)
132
- method_option :git_cop,
133
- desc: "Add Git Cop support.",
146
+ method_option :patreon,
147
+ desc: "Add Patreon support.",
134
148
  type: :boolean,
135
- default: configuration.to_h.dig(:generate, :git_cop)
136
- method_option :rspec,
137
- desc: "Add RSpec support.",
149
+ default: configuration.to_h.dig(:generate, :patreon)
150
+ method_option :pry,
151
+ desc: "Add Pry support.",
138
152
  type: :boolean,
139
- default: configuration.to_h.dig(:generate, :rspec)
153
+ default: configuration.to_h.dig(:generate, :pry)
154
+ method_option :rails,
155
+ desc: "Add Rails support.",
156
+ type: :boolean,
157
+ default: configuration.to_h.dig(:generate, :rails)
140
158
  method_option :reek,
141
159
  desc: "Add Reek support.",
142
160
  type: :boolean,
143
161
  default: configuration.to_h.dig(:generate, :reek)
162
+ method_option :rspec,
163
+ desc: "Add RSpec support.",
164
+ type: :boolean,
165
+ default: configuration.to_h.dig(:generate, :rspec)
144
166
  method_option :rubocop,
145
167
  desc: "Add Rubocop support.",
146
168
  type: :boolean,
@@ -149,26 +171,10 @@ module Gemsmith
149
171
  desc: "Add SCSS Lint support.",
150
172
  type: :boolean,
151
173
  default: configuration.to_h.dig(:generate, :scss_lint)
152
- method_option :git_hub,
153
- desc: "Add GitHub support.",
154
- type: :boolean,
155
- default: configuration.to_h.dig(:generate, :git_hub)
156
- method_option :code_climate,
157
- desc: "Add Code Climate support.",
158
- type: :boolean,
159
- default: configuration.to_h.dig(:generate, :code_climate)
160
- method_option :gemnasium,
161
- desc: "Add Gemnasium support.",
162
- type: :boolean,
163
- default: configuration.to_h.dig(:generate, :gemnasium)
164
- method_option :circle_ci,
165
- desc: "Add Circle CI support.",
166
- type: :boolean,
167
- default: configuration.to_h.dig(:generate, :circle_ci)
168
- method_option :patreon,
169
- desc: "Add Patreon support.",
174
+ method_option :security,
175
+ desc: "Add security support.",
170
176
  type: :boolean,
171
- default: configuration.to_h.dig(:generate, :patreon)
177
+ default: configuration.to_h.dig(:generate, :security)
172
178
  # rubocop:disable Metrics/AbcSize
173
179
  # :reek:TooManyStatements
174
180
  def generate name
@@ -76,7 +76,7 @@ module Gemsmith
76
76
 
77
77
  def load_credentials
78
78
  Hash YAML.load_file(self.class.file_path)
79
- rescue
79
+ rescue StandardError
80
80
  {}
81
81
  end
82
82
  end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Gemsmith
4
+ module Generators
5
+ # Generates Bundler Audit support.
6
+ class BundlerAudit < Base
7
+ def run
8
+ return unless configuration.dig(:generate, :bundler_audit)
9
+
10
+ cli.uncomment_lines "#{gem_name}/Rakefile", %r(require.+bundler\/audit.+)
11
+ cli.uncomment_lines "#{gem_name}/Rakefile", /Bundler\:\:Audit.+/
12
+ end
13
+ end
14
+ end
15
+ end
@@ -30,6 +30,10 @@ module Gemsmith
30
30
  configuration.dig(:generate, :rspec) ? "spec" : ""
31
31
  end
32
32
 
33
+ def bundler_audit_task
34
+ configuration.dig(:generate, :bundler_audit) ? "bundle:audit" : ""
35
+ end
36
+
33
37
  def git_cop_task
34
38
  configuration.dig(:generate, :git_cop) ? "git_cop" : ""
35
39
  end
@@ -47,7 +51,13 @@ module Gemsmith
47
51
  end
48
52
 
49
53
  def code_quality_tasks
50
- [git_cop_task, reek_task, rubocop_task, scss_lint_task].compress.join " "
54
+ [
55
+ bundler_audit_task,
56
+ git_cop_task,
57
+ reek_task,
58
+ rubocop_task,
59
+ scss_lint_task
60
+ ].compress.join " "
51
61
  end
52
62
 
53
63
  def code_quality_task
@@ -12,7 +12,7 @@ module Gemsmith
12
12
  end
13
13
 
14
14
  def self.version
15
- "10.3.0"
15
+ "10.4.0"
16
16
  end
17
17
 
18
18
  def self.version_label
@@ -30,8 +30,7 @@ Gem::Specification.new do |spec|
30
30
  spec.add_development_dependency "gemsmith", "~> <%= Gemsmith::Identity.version[/\d+\.\d+/] %>"
31
31
  <%- if config.dig(:generate, :pry) -%>
32
32
  spec.add_development_dependency "pry", "~> 0.10"
33
- spec.add_development_dependency "pry-byebug", "~> 3.4"
34
- spec.add_development_dependency "pry-state", "~> 0.1"
33
+ spec.add_development_dependency "pry-byebug", "~> 3.5"
35
34
  <%- end -%>
36
35
  <%- if config.dig(:generate, :rspec) -%>
37
36
  spec.add_development_dependency "<%= config.dig(:generate, :rails) ? "rspec-rails" : "rspec" %>", "~> 3.6"
@@ -39,6 +38,9 @@ Gem::Specification.new do |spec|
39
38
  <%- if config.dig(:generate, :guard) -%>
40
39
  spec.add_development_dependency "guard-rspec", "~> 4.7"
41
40
  <%- end -%>
41
+ <%- if config.dig(:generate, :bundler_audit) -%>
42
+ spec.add_development_dependency "bundler-audit", "~> 0.6"
43
+ <%- end -%>
42
44
  <%- if config.dig(:generate, :git_cop) -%>
43
45
  spec.add_development_dependency "git-cop", "~> 1.6"
44
46
  <%- end -%>
@@ -46,7 +48,7 @@ Gem::Specification.new do |spec|
46
48
  spec.add_development_dependency "reek", "~> 4.7"
47
49
  <%- end -%>
48
50
  <%- if config.dig(:generate, :rubocop) -%>
49
- spec.add_development_dependency "rubocop", "~> 0.49"
51
+ spec.add_development_dependency "rubocop", "~> 0.50"
50
52
  <%- end -%>
51
53
  <%- if config.dig(:generate, :scss_lint) -%>
52
54
  spec.add_development_dependency "scss_lint", "~> 0.50"
@@ -1,10 +1,10 @@
1
1
  prepare:
2
2
  fetch:
3
- - url: https://raw.githubusercontent.com/bkuhlmann/code_quality/v1.2.0/configurations/rubocop/ruby.yml
4
- path: .rubocop-https---raw-githubusercontent-com-bkuhlmann-code-quality-v1-2-0-configurations-rubocop-ruby-yml
3
+ - url: https://raw.githubusercontent.com/bkuhlmann/code_quality/v1.3.0/configurations/rubocop/ruby.yml
4
+ path: .rubocop-https---raw-githubusercontent-com-bkuhlmann-code-quality-v1-3-0-configurations-rubocop-ruby-yml
5
5
  <%- if config.dig(:generate, :rails) -%>
6
- - url: https://raw.githubusercontent.com/bkuhlmann/code_quality/v1.2.0/configurations/rubocop/rails.yml
7
- path: .rubocop-https---raw-githubusercontent-com-bkuhlmann-code-quality-v1-2-0-configurations-rubocop-rails-yml
6
+ - url: https://raw.githubusercontent.com/bkuhlmann/code_quality/v1.3.0/configurations/rubocop/rails.yml
7
+ path: .rubocop-https---raw-githubusercontent-com-bkuhlmann-code-quality-v1-3-0-configurations-rubocop-rails-yml
8
8
  <%- end -%>
9
9
  engines:
10
10
  shellcheck:
@@ -1,5 +1,5 @@
1
1
  inherit_from:
2
- - https://raw.githubusercontent.com/bkuhlmann/code_quality/v1.2.0/configurations/rubocop/ruby.yml
2
+ - https://raw.githubusercontent.com/bkuhlmann/code_quality/v1.3.0/configurations/rubocop/ruby.yml
3
3
  <%- if config.dig(:generate, :rails) -%>
4
- - https://raw.githubusercontent.com/bkuhlmann/code_quality/v1.2.0/configurations/rubocop/rails.yml
4
+ - https://raw.githubusercontent.com/bkuhlmann/code_quality/v1.3.0/configurations/rubocop/rails.yml
5
5
  <%- end -%>
@@ -1,11 +1,13 @@
1
1
  begin
2
2
  require "gemsmith/rake/setup"
3
+ # require "bundler/audit/task"
3
4
  # require "git/cop/rake/setup"
4
5
  # require "rspec/core/rake_task"
5
6
  # require "reek/rake/task"
6
7
  # require "rubocop/rake_task"
7
8
  # require "scss_lint/rake_task"
8
9
 
10
+ # Bundler::Audit::Task.new
9
11
  # RSpec::Core::RakeTask.new(:spec)
10
12
  # Reek::Rake::Task.new
11
13
  # RuboCop::RakeTask.new
@@ -7,7 +7,6 @@ SimpleCov.start
7
7
  <%- if config.dig(:generate, :pry) -%>
8
8
  require "pry"
9
9
  require "pry-byebug"
10
- require "pry-state"
11
10
  <%- end -%>
12
11
  <%- unless config.dig(:generate, :rails) -%>require "<%= config.dig(:gem, :path) %>"<%- end -%>
13
12
 
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: 10.3.0
4
+ version: 10.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -30,7 +30,7 @@ cert_chain:
30
30
  n/LUZ1dKhIHzfKx1B4+TEIefArObGfkLIDM8+Dq1RX7TF1k81Men7iu4MgE9bYBn
31
31
  3dE+xI3FdB5gWcdWxdtgRCmWjtXeYYyb4z6NQQ==
32
32
  -----END CERTIFICATE-----
33
- date: 2017-08-20 00:00:00.000000000 Z
33
+ date: 2017-09-23 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: bundler
@@ -150,14 +150,14 @@ dependencies:
150
150
  requirements:
151
151
  - - "~>"
152
152
  - !ruby/object:Gem::Version
153
- version: '0.49'
153
+ version: '0.50'
154
154
  type: :runtime
155
155
  prerelease: false
156
156
  version_requirements: !ruby/object:Gem::Requirement
157
157
  requirements:
158
158
  - - "~>"
159
159
  - !ruby/object:Gem::Version
160
- version: '0.49'
160
+ version: '0.50'
161
161
  - !ruby/object:Gem::Dependency
162
162
  name: rake
163
163
  requirement: !ruby/object:Gem::Requirement
@@ -173,47 +173,47 @@ dependencies:
173
173
  - !ruby/object:Gem::Version
174
174
  version: '12.0'
175
175
  - !ruby/object:Gem::Dependency
176
- name: pry
176
+ name: bundler-audit
177
177
  requirement: !ruby/object:Gem::Requirement
178
178
  requirements:
179
179
  - - "~>"
180
180
  - !ruby/object:Gem::Version
181
- version: '0.10'
181
+ version: '0.6'
182
182
  type: :development
183
183
  prerelease: false
184
184
  version_requirements: !ruby/object:Gem::Requirement
185
185
  requirements:
186
186
  - - "~>"
187
187
  - !ruby/object:Gem::Version
188
- version: '0.10'
188
+ version: '0.6'
189
189
  - !ruby/object:Gem::Dependency
190
- name: pry-byebug
190
+ name: pry
191
191
  requirement: !ruby/object:Gem::Requirement
192
192
  requirements:
193
193
  - - "~>"
194
194
  - !ruby/object:Gem::Version
195
- version: '3.4'
195
+ version: '0.10'
196
196
  type: :development
197
197
  prerelease: false
198
198
  version_requirements: !ruby/object:Gem::Requirement
199
199
  requirements:
200
200
  - - "~>"
201
201
  - !ruby/object:Gem::Version
202
- version: '3.4'
202
+ version: '0.10'
203
203
  - !ruby/object:Gem::Dependency
204
- name: pry-state
204
+ name: pry-byebug
205
205
  requirement: !ruby/object:Gem::Requirement
206
206
  requirements:
207
207
  - - "~>"
208
208
  - !ruby/object:Gem::Version
209
- version: '0.1'
209
+ version: '3.5'
210
210
  type: :development
211
211
  prerelease: false
212
212
  version_requirements: !ruby/object:Gem::Requirement
213
213
  requirements:
214
214
  - - "~>"
215
215
  - !ruby/object:Gem::Version
216
- version: '0.1'
216
+ version: '3.5'
217
217
  - !ruby/object:Gem::Dependency
218
218
  name: bond
219
219
  requirement: !ruby/object:Gem::Requirement
@@ -382,6 +382,7 @@ files:
382
382
  - lib/gemsmith/gem/specification.rb
383
383
  - lib/gemsmith/generators/base.rb
384
384
  - lib/gemsmith/generators/bundler.rb
385
+ - lib/gemsmith/generators/bundler_audit.rb
385
386
  - lib/gemsmith/generators/circle_ci.rb
386
387
  - lib/gemsmith/generators/cli.rb
387
388
  - lib/gemsmith/generators/code_climate.rb
@@ -457,7 +458,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
457
458
  version: '0'
458
459
  requirements: []
459
460
  rubyforge_project:
460
- rubygems_version: 2.6.12
461
+ rubygems_version: 2.6.13
461
462
  signing_key:
462
463
  specification_version: 4
463
464
  summary: A command line interface for smithing new Ruby gems.
metadata.gz.sig CHANGED
Binary file