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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/rubysmith/builders/git_hub/template.rb +8 -3
- data/lib/rubysmith/templates/%project_name%/.github/ISSUE_TEMPLATE/config.yml.erb +8 -0
- data/lib/rubysmith/templates/%project_name%/.github/ISSUE_TEMPLATE/issue.md.erb +18 -0
- data/lib/rubysmith/templates/%project_name%/.github/PULL_REQUEST_TEMPLATE.md.erb +3 -3
- data/rubysmith.gemspec +1 -1
- data.tar.gz.sig +0 -0
- metadata +4 -3
- metadata.gz.sig +0 -0
- data/lib/rubysmith/templates/%project_name%/.github/ISSUE_TEMPLATE.md.erb +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eefdefe78c920a85bddc7f790c388dddb5232864b1962bc5bd4269033c6e68fd
|
4
|
+
data.tar.gz: 3cc8227b07aa1a9f265e0f0e82327ff5ce9a60c49e0bbf18dee9820894980a6c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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(
|
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
|
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.
|
2
|
+
<!-- Required. Describe, briefly, why this is necessary and what the overarching architecture is. -->
|
3
3
|
|
4
4
|
## Screenshots/Screencasts
|
5
|
-
<!-- Optional. Provide supporting
|
5
|
+
<!-- Optional. Provide supporting screen shots/casts. -->
|
6
6
|
|
7
7
|
## Details
|
8
|
-
<!-- Optional.
|
8
|
+
<!-- Optional. As bullet points, list related issue(s); major highlights; team callouts; and/or other information that is helpful. -->
|
data/rubysmith.gemspec
CHANGED
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.
|
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.
|
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.
|
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.) -->
|