shuttlerock_shared_config 0.2.26 → 0.2.27
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
- data/lib/shuttlerock_shared_config/version.rb +1 -1
- data/lib/tasks/tasks.rb +10 -1
- data/lib/templates/PULL_REQUEST_TEMPLATE.md +21 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5b475019ac82d643a630e9fdd5f8c6a2f44cc3d88a05fd6f7965b3d1375f5a18
|
|
4
|
+
data.tar.gz: aff3c0239aa3b626e41f23901399c2d979541ba81fc8ab8922590f1fac617414
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea4945eaac94bf0c1c6163a2dcdb6584d9a01cb3e9cb78e6b7f4ec3110736a8b536828b2b41b4887b1d84e7e4f841b0e6dd4b026508eff6b27607505374532be
|
|
7
|
+
data.tar.gz: 8fa718c0d13a36390aec49882edcb2c8fb1ea9dab56a8a1e0b3ef0e7cebbb313158ab78dbaf5868f21a9c97b4244025bfa1e317f5b480dea2ac21fa763533b56
|
data/lib/tasks/tasks.rb
CHANGED
|
@@ -4,7 +4,7 @@ require 'rake'
|
|
|
4
4
|
require 'fileutils'
|
|
5
5
|
|
|
6
6
|
namespace :shuttlerock_shared_config do
|
|
7
|
-
task update: %i[update_codeclimate update_eslint update_rubocop update_stylelintrc update_dangerfile] do
|
|
7
|
+
task update: %i[update_codeclimate update_eslint update_rubocop update_stylelintrc update_dangerfile update_pull_request_template] do
|
|
8
8
|
end
|
|
9
9
|
|
|
10
10
|
desc 'Update .codeclimate.yml'
|
|
@@ -53,4 +53,13 @@ namespace :shuttlerock_shared_config do
|
|
|
53
53
|
warn('Created /doc/env_list.yml')
|
|
54
54
|
end
|
|
55
55
|
end
|
|
56
|
+
|
|
57
|
+
desc 'Update pull_request_template.md'
|
|
58
|
+
task :update_pull_request_template do
|
|
59
|
+
input_path = File.expand_path('../../lib/templates/PULL_REQUEST_TEMPLATE.md', __dir__)
|
|
60
|
+
result_dir = Dir.pwd + '/.github'
|
|
61
|
+
FileUtils.mkdir_p(result_dir) unless File.directory?(result_dir)
|
|
62
|
+
FileUtils.copy(input_path, result_dir)
|
|
63
|
+
warn('Updated pull_request_template.md')
|
|
64
|
+
end
|
|
56
65
|
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
## Clubhouse Card Name Here
|
|
2
|
+
|
|
3
|
+
[Clubhouse Story](link-here)
|
|
4
|
+
|
|
5
|
+
Description from the Clubhouse story
|
|
6
|
+
|
|
7
|
+
## How to test the PR
|
|
8
|
+
|
|
9
|
+
- How to test feature 1
|
|
10
|
+
- Do this
|
|
11
|
+
- Do that
|
|
12
|
+
- Success
|
|
13
|
+
- How to test feature 2
|
|
14
|
+
- How to test feature 3
|
|
15
|
+
|
|
16
|
+
## Deployment Notes
|
|
17
|
+
|
|
18
|
+
It requires new Environmental variables:
|
|
19
|
+
|
|
20
|
+
- `EXAMPLE_ENV_VARIABLE=content`
|
|
21
|
+
- `EXAMPLE_ENV_VARIABLE2=content`
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: shuttlerock_shared_config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.27
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ElseThen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-03-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -83,6 +83,7 @@ files:
|
|
|
83
83
|
- lib/templates/.rubocop.yml
|
|
84
84
|
- lib/templates/.stylelintrc
|
|
85
85
|
- lib/templates/Dangerfile
|
|
86
|
+
- lib/templates/PULL_REQUEST_TEMPLATE.md
|
|
86
87
|
- lib/templates/env_list.yml
|
|
87
88
|
homepage: https://github.com/Shuttlerock/shuttlerock_shared_config
|
|
88
89
|
licenses:
|