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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 04e6b089be2dd16efd3f77d05a257ee8c4f3a8ef5629bd9263946868c1a263f0
4
- data.tar.gz: 40607b60b6f7b0f8bf60b012859d02a23c2f25b9af509e91784543847a17458d
3
+ metadata.gz: 89e1d84fb792a8b186348ab6a91e0b13fa0a6df5888671d40a047459de1424c7
4
+ data.tar.gz: 8c5fc1b1459f272276d9f6e29c3a1c90c360ef01bde9f809a635c68e2a3fce14
5
5
  SHA512:
6
- metadata.gz: d281699fed06fcc76a735acf7dbe16206f2efc205cd94c451a236aa8fbe1fbee35cc50ac5a7d431205481bc4571e0b2c39f82174a563d9899459b2ac5df616ef
7
- data.tar.gz: e6b5215f579edff838d5e3b3a8808de4c8ca21664a23e50a40829d942e0370f4558144157669f6f33e528325094986f50a278d928df5c9a38ae3d27b3a3434bb
6
+ metadata.gz: 2a9eda96473459ecfb5a1d6e53056de97332c0bdf9c652633ba73f31c2de11597bc1e75252ad21b99e651ce25310d00710860f632f99406cec7b9643a919d4fa
7
+ data.tar.gz: 0efbe4aba0cf6b4c177694a63bc8d7d8238deb18537ed42f26e68d63d8a3a3265bc0d3a59cc257eebc3466354f52d9516d95682d7fbe0be1d80535f2e1a9dfb5
checksums.yaml.gz.sig CHANGED
@@ -1,4 +1,4 @@
1
- ��uUS��.�c)�8���m��XȘJ�����`m��4�Q�oH�/�go�t��n`W�P�lQ�{n\��ځm���-�����<�&��pj���>J�Z��M�,�0P ���|+�T�+`�o�ȉ�u� f/��/�Sq�X�f�l
2
- {|�~�lDM��wb��F����Ł=���Jk�fY�
3
- %rlln�[���9�@��
4
- 87�a���:X�����Ú����a�b�,G��B��?{�͵:��+��I�+P�8L�d;ދ����%��E ӝ:�~��>[QC�2%�l
1
+ vC3�����oXE�/���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
+ ͏?N9XB~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
@@ -15,5 +15,6 @@ def modernize
15
15
  "modernize:gemspec",
16
16
  "modernize:license",
17
17
  "modernize:contributing",
18
+ "modernize:copilot",
18
19
  )
19
20
  end
@@ -5,6 +5,6 @@
5
5
 
6
6
  module Bake
7
7
  module Modernize
8
- VERSION = "0.41.0"
8
+ VERSION = "0.43.0"
9
9
  end
10
10
  end
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
@@ -1,5 +1,9 @@
1
1
  # Releases
2
2
 
3
+ ## v0.43.0
4
+
5
+ - Improved copilot instructions for using agent context.
6
+
3
7
  ## v0.33.0
4
8
 
5
9
  - Add `modernize:releases` to add release notes.
@@ -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.
@@ -8,5 +8,5 @@
8
8
  # @parameter version [String] The new version number.
9
9
  def after_gem_release_version_increment(version)
10
10
  context["releases:update"].call(version)
11
- context["utopia:project:readme:update"].call
11
+ context["utopia:project:update"].call
12
12
  end
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.41.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