bake-modernize 0.41.0 → 0.43.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 +4 -4
- data/bake/modernize/copilot.rb +15 -0
- data/bake/modernize.rb +1 -0
- data/lib/bake/modernize/version.rb +1 -1
- data/readme.md +4 -0
- data/releases.md +4 -0
- data/template/copilot/.github/copilot-instructions.md +20 -0
- data/template/releases/bake.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +3 -1
- 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: 89e1d84fb792a8b186348ab6a91e0b13fa0a6df5888671d40a047459de1424c7
|
4
|
+
data.tar.gz: 8c5fc1b1459f272276d9f6e29c3a1c90c360ef01bde9f809a635c68e2a3fce14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a9eda96473459ecfb5a1d6e53056de97332c0bdf9c652633ba73f31c2de11597bc1e75252ad21b99e651ce25310d00710860f632f99406cec7b9643a919d4fa
|
7
|
+
data.tar.gz: 0efbe4aba0cf6b4c177694a63bc8d7d8238deb18537ed42f26e68d63d8a3a3265bc0d3a59cc257eebc3466354f52d9516d95682d7fbe0be1d80535f2e1a9dfb5
|
checksums.yaml.gz.sig
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
�
|
1
|
+
v�C3�����oXE�/���ij�nH����BL����
|
2
|
+
��ճ�E�Zv1�N&��+J��Z�I{��:�z5�R$�מ�v��Jw
|
3
|
+
�.�z�Oqנ�J�~9�_u7}u��'v�w,��;0*��Ub�tmN�|�:��<E�(%�C�cn���@gS�}��B���[�l^]�%�m���um����SN���F��D/P=cW�[�/��K�
|
4
|
+
͏?N9�XB~301a��-�"�Ϩ��~�"�΅��Ԡ�C���K��v�E<E�����1Y`9
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Released under the MIT License.
|
4
|
+
# Copyright, 2020-2024, by Samuel Williams.
|
5
|
+
|
6
|
+
require "bake/modernize"
|
7
|
+
|
8
|
+
def copilot
|
9
|
+
update(root: Dir.pwd)
|
10
|
+
end
|
11
|
+
|
12
|
+
def update(root:)
|
13
|
+
template_root = Bake::Modernize.template_path_for("copilot")
|
14
|
+
Bake::Modernize.copy_template(template_root, root)
|
15
|
+
end
|
data/bake/modernize.rb
CHANGED
data/readme.md
CHANGED
@@ -12,6 +12,10 @@ Please see the [project documentation](https://ioquatix.github.io/bake-modernize
|
|
12
12
|
|
13
13
|
Please see the [project releases](https://ioquatix.github.io/bake-modernize/releases/index) for all releases.
|
14
14
|
|
15
|
+
### v0.43.0
|
16
|
+
|
17
|
+
- Improved copilot instructions for using agent context.
|
18
|
+
|
15
19
|
### v0.33.0
|
16
20
|
|
17
21
|
- Add `modernize:releases` to add release notes.
|
data/releases.md
CHANGED
@@ -0,0 +1,20 @@
|
|
1
|
+
# GitHub Copilot Instructions
|
2
|
+
|
3
|
+
## Use Agent Context
|
4
|
+
|
5
|
+
When working on this project, consult the `agent.md` file for project-specific guidelines, architecture decisions, and development patterns. This file contains curated information that will help you make better decisions aligned with the project's goals and standards.
|
6
|
+
|
7
|
+
If the file does not exist, you will need to install it, by running the following command:
|
8
|
+
|
9
|
+
```bash
|
10
|
+
$ bundle install
|
11
|
+
$ bundle exec bake agent:context:install
|
12
|
+
```
|
13
|
+
|
14
|
+
This command will set up the necessary context files that help you understand the project structure, dependencies, and conventions.
|
15
|
+
|
16
|
+
## Ignoring Files
|
17
|
+
|
18
|
+
The `.gitignore` file is split into two sections, separated by a blank line. The first section is automatically generated, while the second section is user controlled.
|
19
|
+
|
20
|
+
While working on pull requests, you should not add unrelated changes to the `.gitignore` file as part of the pull request.
|
data/template/releases/bake.rb
CHANGED
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bake-modernize
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.43.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
@@ -117,6 +117,7 @@ files:
|
|
117
117
|
- bake/modernize/actions.rb
|
118
118
|
- bake/modernize/contributing.rb
|
119
119
|
- bake/modernize/contributors.rb
|
120
|
+
- bake/modernize/copilot.rb
|
120
121
|
- bake/modernize/editorconfig.rb
|
121
122
|
- bake/modernize/gemfile.rb
|
122
123
|
- bake/modernize/gemspec.rb
|
@@ -137,6 +138,7 @@ files:
|
|
137
138
|
- template/actions/.github/workflows/test-coverage.yaml
|
138
139
|
- template/actions/.github/workflows/test-external.yaml
|
139
140
|
- template/actions/.github/workflows/test.yaml
|
141
|
+
- template/copilot/.github/copilot-instructions.md
|
140
142
|
- template/editorconfig/.editorconfig
|
141
143
|
- template/git/.gitignore
|
142
144
|
- template/readme/readme.md
|
metadata.gz.sig
CHANGED
Binary file
|