rubysmith 8.5.0 → 8.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: acdb9542ad11b5af3f4d062dfcd1030fa11176c677e742526fb10b125ef18fd0
4
- data.tar.gz: 4d60f23fa3330f71bd88874b2147391eec652799b28ba1a53224fe2d756a2bc3
3
+ metadata.gz: eefdefe78c920a85bddc7f790c388dddb5232864b1962bc5bd4269033c6e68fd
4
+ data.tar.gz: 3cc8227b07aa1a9f265e0f0e82327ff5ce9a60c49e0bbf18dee9820894980a6c
5
5
  SHA512:
6
- metadata.gz: 176640fcd688b3a0c176b1f93420ef6618080a62720eb4e3fe83385aa5e86aa1695dfa11d9ff095e3e8ae40ba1258421e48fa03cee1a4e8c5116b2c14aabfb70
7
- data.tar.gz: da1793e349c5d0f2f45325cd8fe8561e554a52b458c78680663c519a34fddc0f056677546365f0da634ce959f1957403c7172edb9d6127428342185530e3d371
6
+ metadata.gz: dd4d5d22c4cd232e8acc2d6a972e3b659c68c73ed6bcd608c5990ec5cc1cc60590c6a017d21c6e8825e417a0b5cb382dee611670f42a1cba1902ec5ed72eb25a
7
+ data.tar.gz: d34e53676df4fe5fff9dea7fec897d03d0a962fce16e0b872e06f3b8216ec94e4e5e9825d991b091596191acacefeee638f69d043bdb101f84d3dd42d1a79830
checksums.yaml.gz.sig CHANGED
Binary file
@@ -13,19 +13,24 @@ module Rubysmith
13
13
  return false unless settings.build_git_hub
14
14
 
15
15
  builder.call(with_issue).render
16
- builder.call(with_code_review).render
16
+ builder.call(with_pull_request).render
17
+ builder.call(with_configuration).render
17
18
  true
18
19
  end
19
20
 
20
21
  private
21
22
 
22
23
  def with_issue
23
- settings.merge template_path: "%project_name%/.github/ISSUE_TEMPLATE.md.erb"
24
+ settings.merge template_path: "%project_name%/.github/ISSUE_TEMPLATE/issue.md.erb"
24
25
  end
25
26
 
26
- def with_code_review
27
+ def with_pull_request
27
28
  settings.merge template_path: "%project_name%/.github/PULL_REQUEST_TEMPLATE.md.erb"
28
29
  end
30
+
31
+ def with_configuration
32
+ settings.merge template_path: "%project_name%/.github/ISSUE_TEMPLATE/config.yml.erb"
33
+ end
29
34
  end
30
35
  end
31
36
  end
@@ -0,0 +1,8 @@
1
+ blank_issues_enabled: false
2
+ contact_links:
3
+ - name: Community
4
+ url: <%= settings.computed_project_uri_community %>
5
+ about: Please ask questions or discuss specifics here.
6
+ - name: Security
7
+ url: <%= settings.computed_project_uri_security %>
8
+ about: Please report security vulnerabilities here.
@@ -0,0 +1,18 @@
1
+ ---
2
+ name: Issue
3
+ title: "Add|Update|Fix|Remove|Refactor "
4
+ about: Report an issue. Please use only one of the subject prefixes.
5
+ ---
6
+
7
+ <!--
8
+ Please focus on well written issues. Context: https://alchemists.io/articles/software_issues.
9
+ -->
10
+
11
+ ## Why
12
+ <!-- Required. Describe, briefly, why this issue is important. -->
13
+
14
+ ## How
15
+ <!-- Optional. List exact steps to implement or reproduce behavior. Screen shots/casts are welcome! -->
16
+
17
+ ## Notes
18
+ <!-- Optional. Provide additional details like operating system, software version(s), stack dump, logs, or anything else that would be helpful. -->
@@ -1,8 +1,8 @@
1
1
  ## Overview
2
- <!-- Required. Why is this important/necessary and what is the overarching architecture. -->
2
+ <!-- Required. Describe, briefly, why this is necessary and what the overarching architecture is. -->
3
3
 
4
4
  ## Screenshots/Screencasts
5
- <!-- Optional. Provide supporting image/video. -->
5
+ <!-- Optional. Provide supporting screen shots/casts. -->
6
6
 
7
7
  ## Details
8
- <!-- Optional. List the key features/highlights as bullet points. -->
8
+ <!-- Optional. As bullet points, list related issue(s); major highlights; team callouts; and/or other information that is helpful. -->
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 = "8.5.0"
5
+ spec.version = "8.6.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: 8.5.0
4
+ version: 8.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -368,7 +368,8 @@ files:
368
368
  - lib/rubysmith/templates/%project_name%/.devcontainer/devcontainer.json.erb
369
369
  - lib/rubysmith/templates/%project_name%/.dockerignore.erb
370
370
  - lib/rubysmith/templates/%project_name%/.github/FUNDING.yml.erb
371
- - lib/rubysmith/templates/%project_name%/.github/ISSUE_TEMPLATE.md.erb
371
+ - lib/rubysmith/templates/%project_name%/.github/ISSUE_TEMPLATE/config.yml.erb
372
+ - lib/rubysmith/templates/%project_name%/.github/ISSUE_TEMPLATE/issue.md.erb
372
373
  - lib/rubysmith/templates/%project_name%/.github/PULL_REQUEST_TEMPLATE.md.erb
373
374
  - lib/rubysmith/templates/%project_name%/.github/workflows/ci.yml.erb
374
375
  - lib/rubysmith/templates/%project_name%/.gitignore.erb
@@ -430,7 +431,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
430
431
  - !ruby/object:Gem::Version
431
432
  version: '0'
432
433
  requirements: []
433
- rubygems_version: 3.6.9
434
+ rubygems_version: 3.7.1
434
435
  specification_version: 4
435
436
  summary: A command line interface for smithing Ruby projects.
436
437
  test_files: []
metadata.gz.sig CHANGED
Binary file
@@ -1,8 +0,0 @@
1
- ## Why
2
- <!-- Required. Describe, briefly, why this issue is important. -->
3
-
4
- ## How
5
- <!-- Optional. List exact steps (numbered) to implement or reproduce behavior. Screen shots/casts are welcome. -->
6
-
7
- ## Notes
8
- <!-- Optional. Provide additional details (i.e operating system, software version(s), stack dump, etc.) -->