bake-modernize 0.43.0 → 0.45.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: 89e1d84fb792a8b186348ab6a91e0b13fa0a6df5888671d40a047459de1424c7
4
- data.tar.gz: 8c5fc1b1459f272276d9f6e29c3a1c90c360ef01bde9f809a635c68e2a3fce14
3
+ metadata.gz: 3af72d311492e8aa5c1a7345d4c7311fae87b71c3e9f50113d2fb27b56ab943a
4
+ data.tar.gz: 7ce73daf0491e8fb1fa65f298bafc6e16f9c61fc4d0372db36cd494f05d87de6
5
5
  SHA512:
6
- metadata.gz: 2a9eda96473459ecfb5a1d6e53056de97332c0bdf9c652633ba73f31c2de11597bc1e75252ad21b99e651ce25310d00710860f632f99406cec7b9643a919d4fa
7
- data.tar.gz: 0efbe4aba0cf6b4c177694a63bc8d7d8238deb18537ed42f26e68d63d8a3a3265bc0d3a59cc257eebc3466354f52d9516d95682d7fbe0be1d80535f2e1a9dfb5
6
+ metadata.gz: 995901876634184f2132568518e19f248d203e3de0fa8c8cafa8f640e0411677fe1ed68c5730556b2ac5769569f253f414b36a1a2f387c11883133186c84228f
7
+ data.tar.gz: a7fa10e693f52bc5a114b41fc36b1dfd4c2b7d405a59b5c999377075237597e6f25ab6a8c79e5c414fe89a91a0d07924ac1c453c9d80641b8c81834abec1c9cb
checksums.yaml.gz.sig CHANGED
@@ -1,4 +1,2 @@
1
- v�C3�����oXE�/���ij�nH����BL����
2
- ��ճ�EZv1�N&��+J��Z�I{��:�z5R$�מ�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
1
+ "��Vk/���Y�0��B�`�*��EN�㌞q��k��p�}Μ �0�.<���hN��>d7(�_J�����q�uooK���i8��\�ۥ:���L0�� �r�[,�!v��cme��0�1y���uu*�5Ɋ�?���2]�Qf��=�,�& �X_
2
+ �W��X��*�fn�|���}?Q%ʉ�(��RԬ�)Z覇�U����뫮����;���K=�뚍[=)�������n$o��s|Xi������ul�Ӽ^�rP����)����c92���gN:�D�4���Ȇf�G���t ��o�+�unDbs�� �@0���:~�(ޖӎ�8(�o�����SnY�V ۪x ͵�@��i��5l4�QYֽ�� V
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2020-2024, by Samuel Williams.
4
+ # Copyright, 2025, by Copilot.
5
5
 
6
6
  require "bake/modernize"
7
7
 
@@ -12,4 +12,4 @@ end
12
12
  def update(root:)
13
13
  template_root = Bake::Modernize.template_path_for("copilot")
14
14
  Bake::Modernize.copy_template(template_root, root)
15
- end
15
+ end
@@ -11,7 +11,7 @@ def rubocop
11
11
  end
12
12
 
13
13
  def update(root:)
14
- system("bundle", "add", "rubocop", "rubocop-socketry", "--group", "test", chdir: root)
14
+ system("bundle", "add", "rubocop", "rubocop-md", "rubocop-socketry", "--group", "test", chdir: root)
15
15
 
16
16
  template_root = Bake::Modernize.template_path_for("rubocop")
17
17
  Bake::Modernize.copy_template(template_root, root)
data/bake/modernize.rb CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  # Released under the MIT License.
4
4
  # Copyright, 2020-2024, by Samuel Williams.
5
+ # Copyright, 2025, by Copilot.
5
6
 
6
7
  def modernize
7
8
  call(
@@ -5,6 +5,6 @@
5
5
 
6
6
  module Bake
7
7
  module Modernize
8
- VERSION = "0.43.0"
8
+ VERSION = "0.45.0"
9
9
  end
10
10
  end
data/license.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  Copyright, 2020-2025, by Samuel Williams.
4
4
  Copyright, 2021-2023, by Olle Jonsson.
5
+ Copyright, 2025, by Copilot.
5
6
 
6
7
  Permission is hereby granted, free of charge, to any person obtaining a copy
7
8
  of this software and associated documentation files (the "Software"), to deal
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Use Agent Context
4
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.
5
+ When working on this project, consult the `agents.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
6
 
7
7
  If the file does not exist, you will need to install it, by running the following command:
8
8
 
@@ -1,4 +1,4 @@
1
- /agent.md
1
+ /agents.md
2
2
  /.context
3
3
  /.bundle
4
4
  /pkg
@@ -1,4 +1,5 @@
1
1
  plugins:
2
+ - rubocop-md
2
3
  - rubocop-socketry
3
4
 
4
5
  AllCops:
data.tar.gz.sig CHANGED
@@ -1,2 +1,2 @@
1
- "�����ď��n��i��-��U��~���9f0|ٱ�2�:�BV.�
2
- |�R��p����zA��*�;�n>��Խ�!@N+����v��_��ѓ���� .w' E.�$��|�uS��h2zK�l�JK-�v�4=^;�%AiaWyz���Ć��~$�ˊ�V̷�MS�} �@D�U��‡����{� 8g�S�V��DP��:���&6X��]��}��b���JH�@�ꂏ=!�'�(]L�o��;��r��}+7 "l��[m�����Mֱ��"E�ߦ�t� <&3L���
1
+ ���`���;���D���� ��"���'c���c��� �Pm��x�`���w��E��O�:���Nkm.��'��-ڭ�r3%�ӃK �!�<�+w��@�O����ff� �j�^������X�wr��=�Ed��5?6��(����� ]� ¸��|!���3,��@r�5��
2
+ �̟sۅS��v���u���~]j]5!G�$�JTL��F0R3)7D�Г* x�<���6����]Mԋ�=>�'<=�|1mS��f��&@#U��h{���.VxtJ�����?'�F��?��@�f|KM�ꄿ���#��t��}H���b椕��������7,��j�� ��/���#���
metadata CHANGED
@@ -1,11 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bake-modernize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.43.0
4
+ version: 0.45.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
8
8
  - Olle Jonsson
9
+ - Copilot
9
10
  bindir: bin
10
11
  cert_chain:
11
12
  - |
metadata.gz.sig CHANGED
Binary file