rubysmith 7.2.0 → 7.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/README.adoc +218 -47
  4. data/lib/rubysmith/builder.rb +7 -5
  5. data/lib/rubysmith/builders/abstract.rb +2 -2
  6. data/lib/rubysmith/builders/bundler.rb +1 -1
  7. data/lib/rubysmith/builders/dev_container/compose.rb +22 -0
  8. data/lib/rubysmith/builders/dev_container/configuration.rb +22 -0
  9. data/lib/rubysmith/builders/dev_container/dockerfile.rb +22 -0
  10. data/lib/rubysmith/builders/docker/build.rb +24 -0
  11. data/lib/rubysmith/builders/docker/console.rb +24 -0
  12. data/lib/rubysmith/builders/docker/entrypoint.rb +24 -0
  13. data/lib/rubysmith/builders/docker/file.rb +21 -0
  14. data/lib/rubysmith/builders/docker/ignore.rb +21 -0
  15. data/lib/rubysmith/cli/actions/bootsnap.rb +22 -0
  16. data/lib/rubysmith/cli/actions/circle_ci.rb +1 -1
  17. data/lib/rubysmith/cli/actions/dcoo.rb +22 -0
  18. data/lib/rubysmith/cli/actions/dev_container.rb +22 -0
  19. data/lib/rubysmith/cli/actions/docker.rb +22 -0
  20. data/lib/rubysmith/cli/actions/funding.rb +1 -1
  21. data/lib/rubysmith/cli/actions/git_hub.rb +1 -1
  22. data/lib/rubysmith/cli/actions/git_hub_ci.rb +1 -1
  23. data/lib/rubysmith/cli/actions/maximum.rb +1 -1
  24. data/lib/rubysmith/cli/actions/minimum.rb +1 -1
  25. data/lib/rubysmith/cli/commands/build.rb +45 -33
  26. data/lib/rubysmith/configuration/contract.rb +6 -0
  27. data/lib/rubysmith/configuration/defaults.yml +6 -0
  28. data/lib/rubysmith/configuration/model.rb +8 -0
  29. data/lib/rubysmith/container.rb +2 -0
  30. data/lib/rubysmith/extensions/bundler.rb +16 -4
  31. data/lib/rubysmith/extensions/pragmater.rb +16 -2
  32. data/lib/rubysmith/extensions/rubocop.rb +11 -7
  33. data/lib/rubysmith/extensions/tocer.rb +8 -4
  34. data/lib/rubysmith/templates/%project_name%/.devcontainer/Dockerfile.erb +1 -0
  35. data/lib/rubysmith/templates/%project_name%/.devcontainer/compose.yaml.erb +35 -0
  36. data/lib/rubysmith/templates/%project_name%/.devcontainer/devcontainer.json.erb +17 -0
  37. data/lib/rubysmith/templates/%project_name%/.dockerignore.erb +36 -0
  38. data/lib/rubysmith/templates/%project_name%/.github/workflows/ci.yml.erb +5 -0
  39. data/lib/rubysmith/templates/%project_name%/Dockerfile.erb +60 -0
  40. data/lib/rubysmith/templates/%project_name%/Gemfile.erb +3 -0
  41. data/lib/rubysmith/templates/%project_name%/LICENSE-fair.adoc.erb +75 -0
  42. data/lib/rubysmith/templates/%project_name%/LICENSE-fair.md.erb +75 -0
  43. data/lib/rubysmith/templates/%project_name%/README.adoc.erb +4 -0
  44. data/lib/rubysmith/templates/%project_name%/README.md.erb +4 -0
  45. data/lib/rubysmith/templates/%project_name%/bin/docker/build.erb +15 -0
  46. data/lib/rubysmith/templates/%project_name%/bin/docker/console.erb +14 -0
  47. data/lib/rubysmith/templates/%project_name%/bin/docker/entrypoint.erb +8 -0
  48. data/lib/rubysmith.rb +1 -0
  49. data/rubysmith.gemspec +1 -1
  50. data.tar.gz.sig +0 -0
  51. metadata +24 -2
  52. metadata.gz.sig +0 -0
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "<%= settings.project_name %>",
3
+ "dockerComposeFile": "compose.yaml",
4
+ "service": "app",
5
+ "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
6
+ "features": {
7
+ "ghcr.io/devcontainers/features/github-cli:1": {}
8
+ },
9
+ "containerEnv": {
10
+ "CAPYBARA_SERVER_PORT": "45678",
11
+ "REDIS_URL": "redis://redis:6379/1"
12
+ },
13
+ "forwardPorts": [2300, 3000, 5432, 6379],
14
+ <% if settings.build_setup %>
15
+ "postCreateCommand": "bin/setup"
16
+ <% end %>
17
+ }
@@ -0,0 +1,36 @@
1
+ # Assets
2
+ /node_modules/
3
+
4
+ # Bin
5
+ /bin
6
+ !/bin/console
7
+ !/bin/docker/entrypoint
8
+
9
+ # Bundler
10
+ /.bundle
11
+
12
+ # Development
13
+ /.devcontainer
14
+
15
+ # Docker
16
+ /.dockerignore
17
+ /Dockerfile*
18
+
19
+ # Environment
20
+ /.env*
21
+
22
+ # Git
23
+ /.git/
24
+ /.gitignore
25
+
26
+ # GitHub
27
+ /.github
28
+
29
+ # Log
30
+ /log/
31
+
32
+ # Temp
33
+ /tmp/
34
+
35
+ # XDG
36
+ /.config
@@ -8,6 +8,11 @@ jobs:
8
8
  runs-on: ubuntu-latest
9
9
 
10
10
  steps:
11
+ - name: System Update
12
+ run: |
13
+ sudo apt-get update
14
+ sudo apt-get install --no-install-recommends -y curl libjemalloc2
15
+
11
16
  - name: Checkout
12
17
  uses: actions/checkout@v4
13
18
 
@@ -0,0 +1,60 @@
1
+ # syntax = docker/dockerfile:1.4
2
+
3
+ ARG RUBY_VERSION=<%= RUBY_VERSION %>
4
+
5
+ FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base
6
+
7
+ LABEL description="<%= [settings.organization_label, "Application"].compact.join " " %>"
8
+ LABEL maintainer="<%= settings.author_name %> <<%= settings.author_email %>>"
9
+
10
+ WORKDIR /app
11
+
12
+ RUN <<STEPS
13
+ apt-get update -qq \
14
+ && apt-get install --no-install-recommends -y curl libjemalloc2 \
15
+ && rm -rf /var/lib/apt/lists /var/cache/apt/archives
16
+ STEPS
17
+
18
+ ENV RACK_ENV=production
19
+ ENV BUNDLE_DEPLOYMENT=1
20
+ ENV BUNDLE_PATH=/usr/local/bundle
21
+ ENV BUNDLE_WITHOUT="development:quality:test:tools"
22
+
23
+ FROM base AS build
24
+
25
+ RUN <<STEPS
26
+ apt-get update -qq \
27
+ && apt-get install --no-install-recommends -y build-essential git pkg-config \
28
+ && rm -rf /var/lib/apt/lists /var/cache/apt/archives
29
+ STEPS
30
+
31
+ COPY .ruby-version Gemfile Gemfile.lock ./
32
+
33
+ RUN <<STEPS
34
+ bundle install
35
+ rm -rf "${BUNDLE_PATH}"/ruby/*/cache "${BUNDLE_PATH}"/ruby/*/bundler/gems/*/.git
36
+ <% if settings.build_bootsnap %>
37
+ bundle exec bootsnap precompile --gemfile
38
+ <% end %>
39
+ STEPS
40
+
41
+ COPY . .
42
+ <% if settings.build_bootsnap %>
43
+ RUN bundle exec bootsnap precompile app/ lib/ slices/
44
+ <% end %>
45
+ FROM base
46
+ COPY --from=build "${BUNDLE_PATH}" "${BUNDLE_PATH}"
47
+ COPY --from=build /app /app
48
+
49
+ RUN <<STEPS
50
+ mkdir -p /app/log
51
+ mkdir -p /app/tmp
52
+ STEPS
53
+
54
+ RUN groupadd --system --gid 1000 app && \
55
+ useradd app --uid 1000 --gid 1000 --create-home --shell /bin/bash && \
56
+ chown -R app:app log tmp
57
+
58
+ USER 1000:1000
59
+
60
+ ENTRYPOINT ["/app/bin/docker/entrypoint"]
@@ -2,6 +2,9 @@ ruby file: ".ruby-version"
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
+ <% if settings.build_bootsnap %>
6
+ gem "bootsnap", "~> 1.18"
7
+ <% end %>
5
8
  <% if settings.build_refinements %>
6
9
  gem "refinements", "~> 12.7"
7
10
  <% end %>
@@ -0,0 +1,75 @@
1
+ = Functional Source License, Version 1.1, Apache 2.0 Future License
2
+
3
+ == Abbreviation
4
+
5
+ FSL-1.1-Apache-2.0
6
+
7
+ == Notice
8
+
9
+ Copyright <%= settings.loaded_at.strftime "%Y" %> link:<%= settings.author_uri %>[<%= settings.author_name %>]
10
+
11
+ == Terms and Conditions
12
+
13
+ === Licensor ("We")
14
+
15
+ The party offering the Software under these Terms and Conditions.
16
+
17
+ === The Software
18
+
19
+ The "Software" is each version of the software that we make available under these Terms and Conditions, as indicated by our inclusion of these Terms and Conditions with the Software.
20
+
21
+ === License Grant
22
+
23
+ Subject to your compliance with this License Grant and the Patents, Redistribution and Trademark clauses below, we hereby grant you the right to use, copy, modify, create derivative works, publicly perform, publicly display and redistribute the Software for any Permitted Purpose identified below.
24
+
25
+ === Permitted Purpose
26
+
27
+ A Permitted Purpose is any purpose other than a Competing Use. A Competing Use means making the Software available to others in a commercial product or service that:
28
+
29
+ 1. substitutes for the Software;
30
+
31
+ 2. substitutes for any other product or service we offer using the Software that exists as of the date we make the Software available; or
32
+
33
+ 3. offers the same or substantially similar functionality as the Software.
34
+
35
+ Permitted Purposes specifically include using the Software:
36
+
37
+ 1. for your internal use and access;
38
+
39
+ 2. for non-commercial education;
40
+
41
+ 3. for non-commercial research; and
42
+
43
+ 4. in connection with professional services that you provide to a licensee using the Software in accordance with these Terms and Conditions.
44
+
45
+ === Patents
46
+
47
+ To the extent your use for a Permitted Purpose would necessarily infringe our patents, the license grant above includes a license under our patents. If you make a claim against any party that the Software infringes or contributes to the infringement of any patent, then your patent license to the Software ends immediately.
48
+
49
+ === Redistribution
50
+
51
+ The Terms and Conditions apply to all copies, modifications and derivatives of the Software.
52
+
53
+ If you redistribute any copies, modifications or derivatives of the Software, you must include a copy of or a link to these Terms and Conditions and not remove any copyright notices provided in or with the Software.
54
+
55
+ === Disclaimer
56
+
57
+ THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, TITLE OR NON-INFRINGEMENT.
58
+
59
+ IN NO EVENT WILL WE HAVE ANY LIABILITY TO YOU ARISING OUT OF OR RELATED TO THE SOFTWARE, INCLUDING INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES, EVEN IF WE HAVE BEEN INFORMED OF THEIR POSSIBILITY IN ADVANCE.
60
+
61
+ === Trademarks
62
+
63
+ Except for displaying the License Details and identifying us as the origin of the Software, you have no right under these Terms and Conditions to use our trademarks, trade names, service marks or product names.
64
+
65
+ == Grant of Future License
66
+
67
+ We hereby irrevocably grant you an additional license to use the Software under the Apache License, Version 2.0 that is effective on the second anniversary of the date we make the Software available. On or after that date, you may use the Software under the Apache License, Version 2.0, in which case the following will apply:
68
+
69
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
70
+
71
+ You may obtain a copy of the License at
72
+
73
+ http://www.apache.org/licenses/LICENSE-2.0
74
+
75
+ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
@@ -0,0 +1,75 @@
1
+ # Functional Source License, Version 1.1, Apache 2.0 Future License
2
+
3
+ ## Abbreviation
4
+
5
+ FSL-1.1-Apache-2.0
6
+
7
+ ## Notice
8
+
9
+ Copyright <%= settings.loaded_at.strftime "%Y" %> [<%= settings.author_name %>](<%= settings.author_uri %>)
10
+
11
+ ## Terms and Conditions
12
+
13
+ ### Licensor ("We")
14
+
15
+ The party offering the Software under these Terms and Conditions.
16
+
17
+ ### The Software
18
+
19
+ The "Software" is each version of the software that we make available under these Terms and Conditions, as indicated by our inclusion of these Terms and Conditions with the Software.
20
+
21
+ ### License Grant
22
+
23
+ Subject to your compliance with this License Grant and the Patents, Redistribution and Trademark clauses below, we hereby grant you the right to use, copy, modify, create derivative works, publicly perform, publicly display and redistribute the Software for any Permitted Purpose identified below.
24
+
25
+ ### Permitted Purpose
26
+
27
+ A Permitted Purpose is any purpose other than a Competing Use. A Competing Use means making the Software available to others in a commercial product or service that:
28
+
29
+ 1. substitutes for the Software;
30
+
31
+ 2. substitutes for any other product or service we offer using the Software that exists as of the date we make the Software available; or
32
+
33
+ 3. offers the same or substantially similar functionality as the Software.
34
+
35
+ Permitted Purposes specifically include using the Software:
36
+
37
+ 1. for your internal use and access;
38
+
39
+ 2. for non-commercial education;
40
+
41
+ 3. for non-commercial research; and
42
+
43
+ 4. in connection with professional services that you provide to a licensee using the Software in accordance with these Terms and Conditions.
44
+
45
+ ### Patents
46
+
47
+ To the extent your use for a Permitted Purpose would necessarily infringe our patents, the license grant above includes a license under our patents. If you make a claim against any party that the Software infringes or contributes to the infringement of any patent, then your patent license to the Software ends immediately.
48
+
49
+ ### Redistribution
50
+
51
+ The Terms and Conditions apply to all copies, modifications and derivatives of the Software.
52
+
53
+ If you redistribute any copies, modifications or derivatives of the Software, you must include a copy of or a link to these Terms and Conditions and not remove any copyright notices provided in or with the Software.
54
+
55
+ ### Disclaimer
56
+
57
+ THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, TITLE OR NON-INFRINGEMENT.
58
+
59
+ IN NO EVENT WILL WE HAVE ANY LIABILITY TO YOU ARISING OUT OF OR RELATED TO THE SOFTWARE, INCLUDING INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES, EVEN IF WE HAVE BEEN INFORMED OF THEIR POSSIBILITY IN ADVANCE.
60
+
61
+ ### Trademarks
62
+
63
+ Except for displaying the License Details and identifying us as the origin of the Software, you have no right under these Terms and Conditions to use our trademarks, trade names, service marks or product names.
64
+
65
+ ## Grant of Future License
66
+
67
+ We hereby irrevocably grant you an additional license to use the Software under the Apache License, Version 2.0 that is effective on the second anniversary of the date we make the Software available. On or after that date, you may use the Software under the Apache License, Version 2.0, in which case the following will apply:
68
+
69
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
70
+
71
+ You may obtain a copy of the License at
72
+
73
+ http://www.apache.org/licenses/LICENSE-2.0
74
+
75
+ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
@@ -75,6 +75,10 @@ bin/rake
75
75
  == link:<%= settings.computed_project_uri_contributions %>[Contributions]
76
76
  <% end %>
77
77
 
78
+ <% if settings.build_dcoo %>
79
+ == link:<%= settings.computed_project_uri_dcoo %>[Developer Certificate of Origin]
80
+ <% end %>
81
+
78
82
  <% if settings.build_versions %>
79
83
  == link:<%= settings.computed_project_uri_versions %>[Versions]
80
84
  <% end %>
@@ -60,6 +60,10 @@ To test, run:
60
60
  ## [Contributions](<%= settings.computed_project_uri_contributions %>)
61
61
  <% end %>
62
62
 
63
+ <% if settings.build_dcoo %>
64
+ ## [Developer Certificate of Origin](<%= settings.computed_project_uri_dcoo %>)
65
+ <% end %>
66
+
63
67
  <% if settings.build_versions %>
64
68
  ## [Versions](<%= settings.computed_project_uri_versions %>)
65
69
  <% end %>
@@ -0,0 +1,15 @@
1
+ #! /usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ Bundler.require :tools
5
+
6
+ version = Bundler.root.join(".ruby-version").read.chop
7
+
8
+ system <<~COMMAND
9
+ docker buildx \
10
+ build \
11
+ --load \
12
+ --build-arg RUBY_VERSION=#{version} \
13
+ --tag <%= settings.project_name %>:latest \
14
+ #{Bundler.root}
15
+ COMMAND
@@ -0,0 +1,14 @@
1
+ #! /usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ Bundler.require :tools
5
+
6
+ system <<~COMMAND
7
+ docker run \
8
+ --disable-content-trust \
9
+ --pull never \
10
+ --interactive \
11
+ --tty \
12
+ --rm <%= settings.project_name %>:latest \
13
+ bash
14
+ COMMAND
@@ -0,0 +1,8 @@
1
+ #! /usr/bin/env ruby
2
+
3
+ $VERBOSE = true
4
+
5
+ path = Dir["/usr/lib/*/libjemalloc.so.2"]
6
+ ENV["LD_PRELOAD"] = path.first unless ENV.key?("LD_PRELOAD") && path.empty?
7
+
8
+ system ARGV.join(" ")
data/lib/rubysmith.rb CHANGED
@@ -6,6 +6,7 @@ Zeitwerk::Loader.new.then do |loader|
6
6
  loader.inflector.inflect "cli" => "CLI",
7
7
  "ci" => "CI",
8
8
  "circle_ci" => "CircleCI",
9
+ "dcoo" => "DCOO",
9
10
  "erb" => "ERB",
10
11
  "git_hub_ci" => "GitHubCI",
11
12
  "irb_kit" => "IRBKit",
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 = "7.2.0"
5
+ spec.version = "7.4.0"
6
6
  spec.authors = ["Brooke Kuhlmann"]
7
7
  spec.email = ["brooke@alchemists.io"]
8
8
  spec.homepage = "https://alchemists.io/projects/rubysmith"
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: 7.2.0
4
+ version: 7.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -35,7 +35,7 @@ cert_chain:
35
35
  3n5C8/6Zh9DYTkpcwPSuIfAga6wf4nXc9m6JAw8AuMLaiWN/r/2s4zJsUHYERJEu
36
36
  gZGm4JqtuSg8pYjPeIJxS960owq+SfuC+jxqmRA54BisFCv/0VOJi7tiJVY=
37
37
  -----END CERTIFICATE-----
38
- date: 2024-08-11 00:00:00.000000000 Z
38
+ date: 2024-08-22 00:00:00.000000000 Z
39
39
  dependencies:
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: cogger
@@ -282,6 +282,14 @@ files:
282
282
  - lib/rubysmith/builders/circle_ci.rb
283
283
  - lib/rubysmith/builders/console.rb
284
284
  - lib/rubysmith/builders/core.rb
285
+ - lib/rubysmith/builders/dev_container/compose.rb
286
+ - lib/rubysmith/builders/dev_container/configuration.rb
287
+ - lib/rubysmith/builders/dev_container/dockerfile.rb
288
+ - lib/rubysmith/builders/docker/build.rb
289
+ - lib/rubysmith/builders/docker/console.rb
290
+ - lib/rubysmith/builders/docker/entrypoint.rb
291
+ - lib/rubysmith/builders/docker/file.rb
292
+ - lib/rubysmith/builders/docker/ignore.rb
285
293
  - lib/rubysmith/builders/documentation/citation.rb
286
294
  - lib/rubysmith/builders/documentation/license.rb
287
295
  - lib/rubysmith/builders/documentation/readme.rb
@@ -304,6 +312,7 @@ files:
304
312
  - lib/rubysmith/builders/setup.rb
305
313
  - lib/rubysmith/builders/version.rb
306
314
  - lib/rubysmith/cli/actions/amazing_print.rb
315
+ - lib/rubysmith/cli/actions/bootsnap.rb
307
316
  - lib/rubysmith/cli/actions/caliber.rb
308
317
  - lib/rubysmith/cli/actions/circle_ci.rb
309
318
  - lib/rubysmith/cli/actions/citation.rb
@@ -311,7 +320,10 @@ files:
311
320
  - lib/rubysmith/cli/actions/conduct.rb
312
321
  - lib/rubysmith/cli/actions/console.rb
313
322
  - lib/rubysmith/cli/actions/contributions.rb
323
+ - lib/rubysmith/cli/actions/dcoo.rb
314
324
  - lib/rubysmith/cli/actions/debug.rb
325
+ - lib/rubysmith/cli/actions/dev_container.rb
326
+ - lib/rubysmith/cli/actions/docker.rb
315
327
  - lib/rubysmith/cli/actions/funding.rb
316
328
  - lib/rubysmith/cli/actions/git.rb
317
329
  - lib/rubysmith/cli/actions/git_hub.rb
@@ -354,6 +366,10 @@ files:
354
366
  - lib/rubysmith/renderers/namespace.rb
355
367
  - lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
356
368
  - lib/rubysmith/templates/%project_name%/.config/rubocop/config.yml.erb
369
+ - lib/rubysmith/templates/%project_name%/.devcontainer/Dockerfile.erb
370
+ - lib/rubysmith/templates/%project_name%/.devcontainer/compose.yaml.erb
371
+ - lib/rubysmith/templates/%project_name%/.devcontainer/devcontainer.json.erb
372
+ - lib/rubysmith/templates/%project_name%/.dockerignore.erb
357
373
  - lib/rubysmith/templates/%project_name%/.github/FUNDING.yml.erb
358
374
  - lib/rubysmith/templates/%project_name%/.github/ISSUE_TEMPLATE.md.erb
359
375
  - lib/rubysmith/templates/%project_name%/.github/PULL_REQUEST_TEMPLATE.md.erb
@@ -362,10 +378,13 @@ files:
362
378
  - lib/rubysmith/templates/%project_name%/.reek.yml.erb
363
379
  - lib/rubysmith/templates/%project_name%/.ruby-version.erb
364
380
  - lib/rubysmith/templates/%project_name%/CITATION.cff.erb
381
+ - lib/rubysmith/templates/%project_name%/Dockerfile.erb
365
382
  - lib/rubysmith/templates/%project_name%/Gemfile.erb
366
383
  - lib/rubysmith/templates/%project_name%/Guardfile.erb
367
384
  - lib/rubysmith/templates/%project_name%/LICENSE-apache.adoc.erb
368
385
  - lib/rubysmith/templates/%project_name%/LICENSE-apache.md.erb
386
+ - lib/rubysmith/templates/%project_name%/LICENSE-fair.adoc.erb
387
+ - lib/rubysmith/templates/%project_name%/LICENSE-fair.md.erb
369
388
  - lib/rubysmith/templates/%project_name%/LICENSE-hippocratic.adoc.erb
370
389
  - lib/rubysmith/templates/%project_name%/LICENSE-hippocratic.md.erb
371
390
  - lib/rubysmith/templates/%project_name%/LICENSE-mit.adoc.erb
@@ -376,6 +395,9 @@ files:
376
395
  - lib/rubysmith/templates/%project_name%/VERSIONS.adoc.erb
377
396
  - lib/rubysmith/templates/%project_name%/VERSIONS.md.erb
378
397
  - lib/rubysmith/templates/%project_name%/bin/console.erb
398
+ - lib/rubysmith/templates/%project_name%/bin/docker/build.erb
399
+ - lib/rubysmith/templates/%project_name%/bin/docker/console.erb
400
+ - lib/rubysmith/templates/%project_name%/bin/docker/entrypoint.erb
379
401
  - lib/rubysmith/templates/%project_name%/bin/guard.erb
380
402
  - lib/rubysmith/templates/%project_name%/bin/rake.erb
381
403
  - lib/rubysmith/templates/%project_name%/bin/rspec.erb
metadata.gz.sig CHANGED
Binary file