rubysmith 1.3.0 → 2.0.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/README.adoc +31 -24
- data/lib/rubysmith/builders/{rubocop.rb → caliber.rb} +3 -3
- data/lib/rubysmith/builders/core.rb +1 -1
- data/lib/rubysmith/builders/version.rb +3 -1
- data/lib/rubysmith/cli/actions/build.rb +1 -1
- data/lib/rubysmith/cli/parsers/build.rb +9 -9
- data/lib/rubysmith/configuration/content.rb +5 -3
- data/lib/rubysmith/configuration/defaults.yml +1 -1
- data/lib/rubysmith/renderers/erb.rb +1 -1
- data/lib/rubysmith/templates/%project_name%/.gitignore.erb +0 -3
- data/lib/rubysmith/templates/%project_name%/.rubocop.yml.erb +2 -9
- data/lib/rubysmith/templates/%project_name%/Gemfile.erb +8 -13
- data/lib/rubysmith/templates/%project_name%/README.adoc.erb +0 -9
- data/lib/rubysmith/templates/%project_name%/README.md.erb +0 -7
- data/lib/rubysmith/templates/%project_name%/Rakefile.erb +3 -3
- data/rubysmith.gemspec +3 -3
- data.tar.gz.sig +0 -0
- metadata +8 -8
- 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: e5486da67dbe6ea1ef0ce376a6d4e59c32fa5a84c46b5fec2eef493339e6ca40
|
4
|
+
data.tar.gz: 7fc86c2c1e38733990b2f7236b44b068a9dfaaf38e7b109b923f30e7b548517a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d156e06cb6dd5003f35cba343887f6b8d1658a5e7b70085237af5ffed9466352c1cb6667259cdf5523786e078f04dcbc6b1f3e2352dd71d79c90a819b01b258
|
7
|
+
data.tar.gz: 3a10b92f11bf709ee8922fd85698ade151f6c557148110d2c2ba352ea3221fb2dbce5d2702772d5398c3fd54b26aa95e063157be3a8b7e9d5e5a6ba5385fa42e
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/README.adoc
CHANGED
@@ -22,8 +22,9 @@ toc::[]
|
|
22
22
|
* Uses link:https://www.alchemists.io/projects/pragmater[Pragmater] for Ruby source pragma directives.
|
23
23
|
* Supports link:https://github.com/amazing-print/amazing_print[Amazing Print].
|
24
24
|
* Supports link:https://github.com/rubymem/bundler-leak[Bundler Leak].
|
25
|
+
* Supports link:https://www.alchemists.io/projects/caliber[Caliber].
|
25
26
|
* Supports link:https://circleci.com[Circle CI].
|
26
|
-
* Supports link:https://orcid.org[ORCID
|
27
|
+
* Supports link:https://orcid.org[Citations (ORCID)].
|
27
28
|
* Supports console script for local development.
|
28
29
|
* Supports link:https://rubygems.org/gems/dead_end[DeadEnd].
|
29
30
|
* Supports link:https://github.com/ruby/debug[Debug].
|
@@ -35,11 +36,9 @@ toc::[]
|
|
35
36
|
* Supports link:https://github.com/troessner/reek[Reek].
|
36
37
|
* Supports link:https://www.alchemists.io/projects/refinements[Refinements].
|
37
38
|
* Supports link:https://rspec.info[RSpec].
|
38
|
-
* Supports
|
39
|
-
* Supports link:https://docs.rubocop.org/rubocop-performance[Rubocop Performance].
|
40
|
-
* Supports link:https://github.com/rubocop-hq/rubocop-rake[Rubocop Rake].
|
41
|
-
* Supports link:https://github.com/rubocop-hq/rubocop-rspec[Rubocop RSpec].
|
39
|
+
* Supports setup script for project setup.
|
42
40
|
* Supports link:https://github.com/simplecov-ruby/simplecov[SimpleCov].
|
41
|
+
* Supports link:https://yardoc.org[YARD].
|
43
42
|
* Supports link:https://github.com/fxn/zeitwerk[Zeitwerk].
|
44
43
|
* Supports common settings and a structured layout for building projects.
|
45
44
|
* Provides common documentation:
|
@@ -65,6 +64,16 @@ To install, run:
|
|
65
64
|
gem install rubysmith
|
66
65
|
----
|
67
66
|
|
67
|
+
== Upgrade
|
68
|
+
|
69
|
+
If upgrading from 1.0.0 to 2.0.0, you'll need to make the following changes:
|
70
|
+
|
71
|
+
* README badges are no longer injected so you can customize as desired.
|
72
|
+
* The `:rubocop:` build configuration has been removed. Use `:caliber:` instead.
|
73
|
+
* The `--rubocop` build option has been removed. Use `--caliber` instead.
|
74
|
+
* You no longer have to Git ignore RuboCop cached configurations since this is handled by the
|
75
|
+
Caliber gem now.
|
76
|
+
|
68
77
|
== Usage
|
69
78
|
|
70
79
|
=== Command Line Interface (CLI)
|
@@ -82,6 +91,7 @@ USAGE:
|
|
82
91
|
BUILD OPTIONS:
|
83
92
|
--[no-]amazing_print Add Amazing Print gem. Default: true.
|
84
93
|
--[no-]bundler-leak Add Bundler Leak gem. Default: true.
|
94
|
+
--[no-]caliber Add Caliber gem. Default: true.
|
85
95
|
--[no-]circle_ci Add Circle CI configuration and badge. Default: false.
|
86
96
|
--[no-]citation Add citation documentation. Default: true.
|
87
97
|
--[no-]community Add community documentation. Default: false.
|
@@ -102,7 +112,7 @@ BUILD OPTIONS:
|
|
102
112
|
--[no-]reek Add Reek gem. Default: true.
|
103
113
|
--[no-]refinements Add Refinements gem. Default: true.
|
104
114
|
--[no-]rspec Add RSpec gem. Default: true.
|
105
|
-
--[no-]
|
115
|
+
--[no-]security Add security. Default: true.
|
106
116
|
--[no-]setup Add setup script. Default: true.
|
107
117
|
--[no-]simple_cov Add SimpleCov gem. Default: true.
|
108
118
|
--[no-]versions Add version history. Default: true.
|
@@ -174,11 +184,17 @@ The `--bundler-leak` option allows you to build your project with the
|
|
174
184
|
link:https://github.com/rubymem/bundler-leak[Bundler Leak] gem which helps detect memory leaks in
|
175
185
|
your gem dependencies.
|
176
186
|
|
187
|
+
==== Caliber
|
188
|
+
|
189
|
+
The `--caliber` option allows you to build your project with the
|
190
|
+
link:https://www.alchemists.io/projects/caliber[Caliber] gem so you have an immediate working -- and
|
191
|
+
high quality -- link:https://docs.rubocop.org/rubocop[RuboCop] configuration. Read the Caliber
|
192
|
+
documentation for further customization.
|
193
|
+
|
177
194
|
==== Circle CI
|
178
195
|
|
179
196
|
The `--circle_ci` option allows you to build your project with link:https://circleci.com[Circle CI]
|
180
|
-
configured so you can get your project building as quickly as possible.
|
181
|
-
and configuration YAML.
|
197
|
+
configured so you can get your project building as quickly as possible.
|
182
198
|
|
183
199
|
==== Citation
|
184
200
|
|
@@ -211,8 +227,8 @@ contribute back to your work.
|
|
211
227
|
==== DeadEnd
|
212
228
|
|
213
229
|
The `--dead_end` option allows you build your project with the
|
214
|
-
link:https://github.com/zombocom/dead_end[
|
215
|
-
show you where you are missing `end`
|
230
|
+
link:https://github.com/zombocom/dead_end[Dead End] gem for debugging purposes since Dead End will
|
231
|
+
show you where you are missing closing `end` statements.
|
216
232
|
|
217
233
|
==== Debug
|
218
234
|
|
@@ -252,7 +268,7 @@ to build a new project with all options enabled without having to pick and choos
|
|
252
268
|
==== Minimum
|
253
269
|
|
254
270
|
The `--min` option allows you to build your project with _all_ options _disabled_. This is a quick
|
255
|
-
way to build a new project with the bare minimum of support which is a one step above reaching for
|
271
|
+
way to build a new project with the bare minimum of support which is a one step above reaching for a
|
256
272
|
Bundler Inline script.
|
257
273
|
|
258
274
|
==== Rake
|
@@ -280,13 +296,6 @@ Ruby core objects without monkey patching your code.
|
|
280
296
|
The `--rspec` option allows you add the link:https://rspec.info[RSpec] gem to your project for
|
281
297
|
defining your project specifications and have a framework for testing your code.
|
282
298
|
|
283
|
-
==== Rubocop
|
284
|
-
|
285
|
-
The `--rubocop` option allows you to add the link:https://docs.rubocop.org[RuboCop] gem and suite
|
286
|
-
of gems to your project for good code quality standards. This the Alchemists style guide, provided
|
287
|
-
by the link:https://www.alchemists.io/projects/code_quality[Code Quality] project, is what is used
|
288
|
-
by default.
|
289
|
-
|
290
299
|
==== Setup
|
291
300
|
|
292
301
|
The `--setup` option allows you to configure you project with automated setup instructions so anyone
|
@@ -352,6 +361,7 @@ variables. The default configuration is as follows:
|
|
352
361
|
:build:
|
353
362
|
:amazing_print: true
|
354
363
|
:bundler_leak: true
|
364
|
+
:caliber: true
|
355
365
|
:circle_ci: false
|
356
366
|
:citation: true
|
357
367
|
:community: false
|
@@ -372,7 +382,6 @@ variables. The default configuration is as follows:
|
|
372
382
|
:reek: true
|
373
383
|
:refinements: true
|
374
384
|
:rspec: true
|
375
|
-
:rubocop: true
|
376
385
|
:security: true
|
377
386
|
:setup: true
|
378
387
|
:simple_cov: true
|
@@ -467,7 +476,7 @@ these options are explained in greater detail above.
|
|
467
476
|
|
468
477
|
==== Citations
|
469
478
|
|
470
|
-
This section allows you to configure your link:https://orcid.org[
|
479
|
+
This section allows you to configure your link:https://orcid.org[ORCID]
|
471
480
|
link:https://citation-file-format.github.io[citation] information used by the research community.
|
472
481
|
You should definitely fill this in. Your author information, detailed above, will be used as well.
|
473
482
|
|
@@ -494,9 +503,7 @@ Follow the above links to learn more about each extension's gem configuration.
|
|
494
503
|
==== GitHub
|
495
504
|
|
496
505
|
Your GitHub user is the handle you setup when creating your GitHub account. This information is used
|
497
|
-
for
|
498
|
-
Rubysmith will automatically fallback to pulling this information from your Git configuration (i.e.
|
499
|
-
`github.user`). If all else fails, then nothing will be used.
|
506
|
+
for template and/or URL construction purposes.
|
500
507
|
|
501
508
|
==== License
|
502
509
|
|
@@ -509,7 +516,7 @@ license are available:
|
|
509
516
|
|
510
517
|
==== Project
|
511
518
|
|
512
|
-
There are two categories within this section: URLs and version. The URLs allow you to link to
|
519
|
+
There are two sub-categories within this section: URLs and version. The URLs allow you to link to
|
513
520
|
specific documentation related to your project. You'll definitely want to customize these as makes
|
514
521
|
sense since these URLs are used for documentation, citations, and general project information. You
|
515
522
|
can also use `%project_name%` as a placeholder anywhere in your URL and Rubysmith will ensure your
|
@@ -4,8 +4,8 @@ require "refinements/structs"
|
|
4
4
|
|
5
5
|
module Rubysmith
|
6
6
|
module Builders
|
7
|
-
# Builds project skeleton with
|
8
|
-
class
|
7
|
+
# Builds project skeleton with Caliber style support.
|
8
|
+
class Caliber
|
9
9
|
using Refinements::Structs
|
10
10
|
|
11
11
|
def self.call(...) = new(...).call
|
@@ -16,7 +16,7 @@ module Rubysmith
|
|
16
16
|
end
|
17
17
|
|
18
18
|
def call
|
19
|
-
return configuration unless configuration.
|
19
|
+
return configuration unless configuration.build_caliber
|
20
20
|
|
21
21
|
builder.call(configuration.merge(template_path: "%project_name%/bin/rubocop.erb"))
|
22
22
|
.render
|
@@ -16,7 +16,9 @@ module Rubysmith
|
|
16
16
|
end
|
17
17
|
|
18
18
|
def call
|
19
|
-
builder.call(configuration.merge(template_path: "%project_name%/.ruby-version.erb"))
|
19
|
+
builder.call(configuration.merge(template_path: "%project_name%/.ruby-version.erb"))
|
20
|
+
.render
|
21
|
+
.append("\n")
|
20
22
|
configuration
|
21
23
|
end
|
22
24
|
|
@@ -50,6 +50,15 @@ module Rubysmith
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
+
def add_caliber
|
54
|
+
client.on(
|
55
|
+
"--[no-]caliber",
|
56
|
+
"Add Caliber gem. #{default __method__}."
|
57
|
+
) do |value|
|
58
|
+
configuration.merge! build_caliber: value
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
53
62
|
def add_console
|
54
63
|
client.on(
|
55
64
|
"--[no-]console",
|
@@ -230,15 +239,6 @@ module Rubysmith
|
|
230
239
|
end
|
231
240
|
end
|
232
241
|
|
233
|
-
def add_rubocop
|
234
|
-
client.on(
|
235
|
-
"--[no-]rubocop",
|
236
|
-
"Add RuboCop gems. #{default __method__}."
|
237
|
-
) do |value|
|
238
|
-
configuration.merge! build_rubocop: value
|
239
|
-
end
|
240
|
-
end
|
241
|
-
|
242
242
|
def add_security
|
243
243
|
client.on(
|
244
244
|
"--[no-]security",
|
@@ -24,6 +24,7 @@ module Rubysmith
|
|
24
24
|
:author_url,
|
25
25
|
:build_amazing_print,
|
26
26
|
:build_bundler_leak,
|
27
|
+
:build_caliber,
|
27
28
|
:build_circle_ci,
|
28
29
|
:build_citation,
|
29
30
|
:build_cli,
|
@@ -45,7 +46,6 @@ module Rubysmith
|
|
45
46
|
:build_reek,
|
46
47
|
:build_refinements,
|
47
48
|
:build_rspec,
|
48
|
-
:build_rubocop,
|
49
49
|
:build_security,
|
50
50
|
:build_setup,
|
51
51
|
:build_simple_cov,
|
@@ -111,11 +111,13 @@ module Rubysmith
|
|
111
111
|
|
112
112
|
def license_label_version = [license_label, license_version].compress.join("-")
|
113
113
|
|
114
|
-
def project_class =
|
114
|
+
def project_class = project_namespaced_class.split("::").last
|
115
|
+
|
116
|
+
def project_namespaced_class = project_name.camelcase
|
115
117
|
|
116
118
|
def project_label = project_name.titleize
|
117
119
|
|
118
|
-
def project_levels =
|
120
|
+
def project_levels = project_namespaced_class.split("::").size - 1
|
119
121
|
|
120
122
|
def project_path = project_name.snakecase
|
121
123
|
|
@@ -6,6 +6,7 @@
|
|
6
6
|
:build:
|
7
7
|
:amazing_print: true
|
8
8
|
:bundler_leak: true
|
9
|
+
:caliber: true
|
9
10
|
:circle_ci: false
|
10
11
|
:citation: true
|
11
12
|
:cli: false
|
@@ -27,7 +28,6 @@
|
|
27
28
|
:reek: true
|
28
29
|
:refinements: true
|
29
30
|
:rspec: true
|
30
|
-
:rubocop: true
|
31
31
|
:security: true
|
32
32
|
:setup: true
|
33
33
|
:simple_cov: true
|
@@ -7,7 +7,7 @@ module Rubysmith
|
|
7
7
|
# Renders ERB templates as fully functional files.
|
8
8
|
class ERB
|
9
9
|
def initialize configuration,
|
10
|
-
scope: Renderers::Namespace.new(configuration.
|
10
|
+
scope: Renderers::Namespace.new(configuration.project_namespaced_class),
|
11
11
|
client: ::ERB
|
12
12
|
@configuration = configuration
|
13
13
|
@scope = scope
|
@@ -1,9 +1,2 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
<% if configuration.build_rake %>
|
4
|
-
- https://raw.githubusercontent.com/bkuhlmann/code_quality/main/configurations/rubocop/rake.yml
|
5
|
-
<% end %>
|
6
|
-
- https://raw.githubusercontent.com/bkuhlmann/code_quality/main/configurations/rubocop/performance.yml
|
7
|
-
<% if configuration.build_rspec %>
|
8
|
-
- https://raw.githubusercontent.com/bkuhlmann/code_quality/main/configurations/rubocop/rspec.yml
|
9
|
-
<% end %>
|
1
|
+
inherit_gem:
|
2
|
+
caliber: config/all.yml
|
@@ -3,7 +3,7 @@ ruby File.read(".ruby-version").strip
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
5
|
<% if configuration.build_refinements %>
|
6
|
-
gem "refinements", "~> 9.
|
6
|
+
gem "refinements", "~> 9.2"
|
7
7
|
<% end %>
|
8
8
|
<% if configuration.build_zeitwerk %>
|
9
9
|
gem "zeitwerk", "~> 2.5"
|
@@ -13,23 +13,18 @@ group :code_quality do
|
|
13
13
|
<% if configuration.build_bundler_leak %>
|
14
14
|
gem "bundler-leak", "~> 0.2"
|
15
15
|
<% end %>
|
16
|
+
<% if configuration.build_caliber %>
|
17
|
+
gem "caliber", "~> 0.1"
|
18
|
+
<% end %>
|
16
19
|
<% if configuration.build_dead_end %>
|
17
|
-
gem "dead_end", "~> 3.
|
20
|
+
gem "dead_end", "~> 3.1"
|
18
21
|
<% end %>
|
19
22
|
<% if configuration.build_git && configuration.build_git_lint %>
|
20
|
-
gem "git-lint", "~> 3.
|
23
|
+
gem "git-lint", "~> 3.2"
|
21
24
|
<% end %>
|
22
25
|
<% if configuration.build_reek %>
|
23
26
|
gem "reek", "~> 6.1"
|
24
27
|
<% end %>
|
25
|
-
<% if configuration.build_rubocop %>
|
26
|
-
gem "rubocop", "~> 1.25"
|
27
|
-
gem "rubocop-performance", "~> 1.12"
|
28
|
-
gem "rubocop-rake", "~> 0.6"
|
29
|
-
<% end %>
|
30
|
-
<% if configuration.build_rspec && configuration.build_rubocop %>
|
31
|
-
gem "rubocop-rspec", "~> 2.6"
|
32
|
-
<% end %>
|
33
28
|
<% if configuration.build_simple_cov %>
|
34
29
|
gem "simplecov", "~> 0.21"
|
35
30
|
<% end %>
|
@@ -43,7 +38,7 @@ group :development do
|
|
43
38
|
gem "rake", "~> 13.0"
|
44
39
|
<% end %>
|
45
40
|
<% if configuration.markdown? %>
|
46
|
-
gem "tocer", "~> 13.
|
41
|
+
gem "tocer", "~> 13.2"
|
47
42
|
<% end %>
|
48
43
|
<% if configuration.build_yard %>
|
49
44
|
gem "yard", "~> 0.9"
|
@@ -55,7 +50,7 @@ group :test do
|
|
55
50
|
gem "guard-rspec", "~> 4.7", require: false
|
56
51
|
<% end %>
|
57
52
|
<% if configuration.build_rspec %>
|
58
|
-
gem "rspec", "~> 3.
|
53
|
+
gem "rspec", "~> 3.11"
|
59
54
|
<% end %>
|
60
55
|
end
|
61
56
|
|
@@ -4,15 +4,6 @@
|
|
4
4
|
|
5
5
|
= <%= configuration.project_label %>
|
6
6
|
|
7
|
-
<% if configuration.build_rubocop %>
|
8
|
-
[link=https://www.alchemists.io/projects/code_quality]
|
9
|
-
image::https://img.shields.io/badge/code_style-alchemists-brightgreen.svg[Alchemists Style Guide]
|
10
|
-
<% end %>
|
11
|
-
<% if configuration.build_circle_ci %>
|
12
|
-
[link=https://circleci.com/gh/<%= configuration.git_hub_user %>/<%= configuration.project_name %>]
|
13
|
-
image::https://circleci.com/gh/<%= configuration.git_hub_user %>/<%= configuration.project_name %>.svg?style=svg[Circle CI Status]
|
14
|
-
<% end %>
|
15
|
-
|
16
7
|
toc::[]
|
17
8
|
|
18
9
|
== Features
|
@@ -1,12 +1,5 @@
|
|
1
1
|
# <%= configuration.project_label %>
|
2
2
|
|
3
|
-
<% if configuration.build_rubocop %>
|
4
|
-
[](https://www.alchemists.io/projects/code_quality)
|
5
|
-
<% end %>
|
6
|
-
<% if configuration.build_circle_ci %>
|
7
|
-
[](https://circleci.com/gh/<%= configuration.git_hub_user %>/<%= configuration.project_name %>)
|
8
|
-
<% end %>
|
9
|
-
|
10
3
|
<!-- Tocer[start]: Auto-generated, don't remove. -->
|
11
4
|
<!-- Tocer[finish]: Auto-generated, don't remove. -->
|
12
5
|
|
@@ -12,7 +12,7 @@ require "bundler/setup"
|
|
12
12
|
<% if configuration.build_rspec %>
|
13
13
|
require "rspec/core/rake_task"
|
14
14
|
<% end %>
|
15
|
-
<% if configuration.
|
15
|
+
<% if configuration.build_caliber %>
|
16
16
|
require "rubocop/rake_task"
|
17
17
|
<% end %>
|
18
18
|
<% if configuration.build_yard %>
|
@@ -28,7 +28,7 @@ require "bundler/setup"
|
|
28
28
|
<% if configuration.build_rspec %>
|
29
29
|
RSpec::Core::RakeTask.new :spec
|
30
30
|
<% end %>
|
31
|
-
<% if configuration.
|
31
|
+
<% if configuration.build_caliber %>
|
32
32
|
RuboCop::RakeTask.new
|
33
33
|
<% end %>
|
34
34
|
|
@@ -39,6 +39,6 @@ require "bundler/setup"
|
|
39
39
|
<% end %>
|
40
40
|
|
41
41
|
desc "Run code quality checks"
|
42
|
-
task code_quality: %i[<% if configuration.build_bundler_leak %>bundle:leak<% end %> <% if configuration.build_git && configuration.build_git_lint %>git_lint<% end %> <% if configuration.build_reek %>reek<% end %> <% if configuration.
|
42
|
+
task code_quality: %i[<% if configuration.build_bundler_leak %>bundle:leak<% end %> <% if configuration.build_git && configuration.build_git_lint %>git_lint<% end %> <% if configuration.build_reek %>reek<% end %> <% if configuration.build_caliber %>rubocop<% end %>]
|
43
43
|
|
44
44
|
task default: %i[code_quality <% if configuration.build_rspec %>spec<% end %>]
|
data/rubysmith.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = "rubysmith"
|
5
|
-
spec.version = "
|
5
|
+
spec.version = "2.0.0"
|
6
6
|
spec.authors = ["Brooke Kuhlmann"]
|
7
7
|
spec.email = ["brooke@alchemists.io"]
|
8
8
|
spec.homepage = "https://github.com/bkuhlmann/rubysmith"
|
@@ -27,11 +27,11 @@ Gem::Specification.new do |spec|
|
|
27
27
|
spec.add_dependency "milestoner", "~> 13.0"
|
28
28
|
spec.add_dependency "pastel", "~> 0.8"
|
29
29
|
spec.add_dependency "pragmater", "~> 10.0"
|
30
|
-
spec.add_dependency "refinements", "~> 9.
|
30
|
+
spec.add_dependency "refinements", "~> 9.2"
|
31
31
|
spec.add_dependency "rubocop", "~> 1.25"
|
32
32
|
spec.add_dependency "runcom", "~> 8.2"
|
33
33
|
spec.add_dependency "spek", "~> 0.0"
|
34
|
-
spec.add_dependency "tocer", "~> 13.
|
34
|
+
spec.add_dependency "tocer", "~> 13.2"
|
35
35
|
spec.add_dependency "zeitwerk", "~> 2.5"
|
36
36
|
|
37
37
|
spec.bindir = "exe"
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubysmith
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brooke Kuhlmann
|
@@ -28,7 +28,7 @@ cert_chain:
|
|
28
28
|
lkHilIrX69jq8wMPpBhlaw2mRmeSL50Wv5u6xVBvOHhXFSP1crXM95vfLhLyRYod
|
29
29
|
W2A=
|
30
30
|
-----END CERTIFICATE-----
|
31
|
-
date: 2022-02-
|
31
|
+
date: 2022-02-12 00:00:00.000000000 Z
|
32
32
|
dependencies:
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: dry-container
|
@@ -106,14 +106,14 @@ dependencies:
|
|
106
106
|
requirements:
|
107
107
|
- - "~>"
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version: '9.
|
109
|
+
version: '9.2'
|
110
110
|
type: :runtime
|
111
111
|
prerelease: false
|
112
112
|
version_requirements: !ruby/object:Gem::Requirement
|
113
113
|
requirements:
|
114
114
|
- - "~>"
|
115
115
|
- !ruby/object:Gem::Version
|
116
|
-
version: '9.
|
116
|
+
version: '9.2'
|
117
117
|
- !ruby/object:Gem::Dependency
|
118
118
|
name: rubocop
|
119
119
|
requirement: !ruby/object:Gem::Requirement
|
@@ -162,14 +162,14 @@ dependencies:
|
|
162
162
|
requirements:
|
163
163
|
- - "~>"
|
164
164
|
- !ruby/object:Gem::Version
|
165
|
-
version: '13.
|
165
|
+
version: '13.2'
|
166
166
|
type: :runtime
|
167
167
|
prerelease: false
|
168
168
|
version_requirements: !ruby/object:Gem::Requirement
|
169
169
|
requirements:
|
170
170
|
- - "~>"
|
171
171
|
- !ruby/object:Gem::Version
|
172
|
-
version: '13.
|
172
|
+
version: '13.2'
|
173
173
|
- !ruby/object:Gem::Dependency
|
174
174
|
name: zeitwerk
|
175
175
|
requirement: !ruby/object:Gem::Requirement
|
@@ -200,6 +200,7 @@ files:
|
|
200
200
|
- lib/rubysmith.rb
|
201
201
|
- lib/rubysmith/builder.rb
|
202
202
|
- lib/rubysmith/builders/bundler.rb
|
203
|
+
- lib/rubysmith/builders/caliber.rb
|
203
204
|
- lib/rubysmith/builders/circle_ci.rb
|
204
205
|
- lib/rubysmith/builders/console.rb
|
205
206
|
- lib/rubysmith/builders/core.rb
|
@@ -216,7 +217,6 @@ files:
|
|
216
217
|
- lib/rubysmith/builders/reek.rb
|
217
218
|
- lib/rubysmith/builders/rspec/context.rb
|
218
219
|
- lib/rubysmith/builders/rspec/helper.rb
|
219
|
-
- lib/rubysmith/builders/rubocop.rb
|
220
220
|
- lib/rubysmith/builders/setup.rb
|
221
221
|
- lib/rubysmith/builders/version.rb
|
222
222
|
- lib/rubysmith/cli/actions/build.rb
|
@@ -297,7 +297,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
297
297
|
- !ruby/object:Gem::Version
|
298
298
|
version: '0'
|
299
299
|
requirements: []
|
300
|
-
rubygems_version: 3.3.
|
300
|
+
rubygems_version: 3.3.7
|
301
301
|
signing_key:
|
302
302
|
specification_version: 4
|
303
303
|
summary: A command line interface for smithing Ruby projects.
|
metadata.gz.sig
CHANGED
Binary file
|