gemsmith 10.3.0 → 10.4.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.md +51 -44
- data/lib/gemsmith.rb +1 -0
- data/lib/gemsmith/cli.rb +50 -44
- data/lib/gemsmith/credentials.rb +1 -1
- data/lib/gemsmith/generators/bundler_audit.rb +15 -0
- data/lib/gemsmith/generators/rake.rb +11 -1
- data/lib/gemsmith/identity.rb +1 -1
- data/lib/gemsmith/templates/%gem_name%/%gem_name%.gemspec.tt +5 -3
- data/lib/gemsmith/templates/%gem_name%/.codeclimate.yml.tt +4 -4
- data/lib/gemsmith/templates/%gem_name%/.rubocop.yml.tt +2 -2
- data/lib/gemsmith/templates/%gem_name%/Rakefile.tt +2 -0
- data/lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt +0 -1
- metadata +15 -14
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95e49c9bf5321a58a222fd15ab5b2cabc3919cf9
|
4
|
+
data.tar.gz: 8e8b79b715cc99f3e66fc409c63a631bf1fce070
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9881088acbc7badcaa562c05f61130dc82a8e63d06417db155a5b24a9265d821cb67b2bbf4ee0d1792e018a51aad9ae598031584ba137ac6bb5f06eda90f227d
|
7
|
+
data.tar.gz: '068ff4db778e1e90c0debce59e175dd2dad805dd01e80e8914137bffb2095d5f0cd3541bc14d64f7c626eb6dc6ba977cdf0de184b31fe4ba4de49018c5c8b930'
|
checksums.yaml.gz.sig
CHANGED
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 [
|
54
|
-
- Supports [
|
55
|
-
- Supports [
|
56
|
-
- Supports [
|
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 [
|
64
|
-
- Supports
|
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
|
-
:
|
141
|
-
:
|
142
|
-
:pry: true
|
143
|
-
:guard: true
|
143
|
+
:code_climate: false
|
144
|
+
:gemnasium: false
|
144
145
|
:git_cop: true
|
145
|
-
:
|
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
|
-
:
|
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
|
-
[--
|
199
|
-
[--
|
200
|
-
[--
|
201
|
-
|
202
|
-
[--
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
[--
|
207
|
-
|
208
|
-
[--
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
[--
|
213
|
-
|
214
|
-
[--
|
215
|
-
|
216
|
-
[--
|
217
|
-
|
218
|
-
[--
|
219
|
-
[--
|
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`
|
data/lib/gemsmith.rb
CHANGED
@@ -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"
|
data/lib/gemsmith/cli.rb
CHANGED
@@ -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
|
-
|
59
|
-
|
60
|
-
pry: true,
|
61
|
-
guard: true,
|
60
|
+
code_climate: false,
|
61
|
+
gemnasium: false,
|
62
62
|
git_cop: true,
|
63
|
-
|
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
|
-
|
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 :
|
117
|
-
desc: "Add
|
126
|
+
method_option :code_climate,
|
127
|
+
desc: "Add Code Climate support.",
|
118
128
|
type: :boolean,
|
119
|
-
default: configuration.to_h.dig(:generate, :
|
120
|
-
method_option :
|
121
|
-
desc: "Add
|
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, :
|
124
|
-
method_option :
|
125
|
-
desc: "Add
|
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, :
|
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 :
|
133
|
-
desc: "Add
|
146
|
+
method_option :patreon,
|
147
|
+
desc: "Add Patreon support.",
|
134
148
|
type: :boolean,
|
135
|
-
default: configuration.to_h.dig(:generate, :
|
136
|
-
method_option :
|
137
|
-
desc: "Add
|
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, :
|
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 :
|
153
|
-
desc: "Add
|
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, :
|
177
|
+
default: configuration.to_h.dig(:generate, :security)
|
172
178
|
# rubocop:disable Metrics/AbcSize
|
173
179
|
# :reek:TooManyStatements
|
174
180
|
def generate name
|
data/lib/gemsmith/credentials.rb
CHANGED
@@ -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
|
-
[
|
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
|
data/lib/gemsmith/identity.rb
CHANGED
@@ -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.
|
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.
|
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.
|
4
|
-
path: .rubocop-https---raw-githubusercontent-com-bkuhlmann-code-quality-v1-
|
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.
|
7
|
-
path: .rubocop-https---raw-githubusercontent-com-bkuhlmann-code-quality-v1-
|
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
|
+
- 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.
|
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
|
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.
|
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-
|
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.
|
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.
|
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:
|
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.
|
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.
|
188
|
+
version: '0.6'
|
189
189
|
- !ruby/object:Gem::Dependency
|
190
|
-
name: pry
|
190
|
+
name: pry
|
191
191
|
requirement: !ruby/object:Gem::Requirement
|
192
192
|
requirements:
|
193
193
|
- - "~>"
|
194
194
|
- !ruby/object:Gem::Version
|
195
|
-
version: '
|
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: '
|
202
|
+
version: '0.10'
|
203
203
|
- !ruby/object:Gem::Dependency
|
204
|
-
name: pry-
|
204
|
+
name: pry-byebug
|
205
205
|
requirement: !ruby/object:Gem::Requirement
|
206
206
|
requirements:
|
207
207
|
- - "~>"
|
208
208
|
- !ruby/object:Gem::Version
|
209
|
-
version: '
|
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: '
|
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.
|
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
|