utopia 2.22.2 → 2.23.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bad66abbb1a3bfd34ad266594c8f79b713f6289e1e2e572280459bdf3fe3ac9b
4
- data.tar.gz: 04b1e9a3831cbbfe5551838725fd58ae71e5b218eeaa6ff708450e3a82c5007a
3
+ metadata.gz: fe8b55483bdf9ce333c4edc86df63f44089079c03ba671d8c0dfe889751733c0
4
+ data.tar.gz: cd2642132d31ac3a4e46e688daf3ff9d1e1f706f7eff89ea5f8ed25af9e0f337
5
5
  SHA512:
6
- metadata.gz: acee0556abc970a44077e739b344cd25f962b559d7238ae11535154e500bb3a529220970a031f437a5d37debc44edd1a279131680ae6cab012d1a404680d4628
7
- data.tar.gz: d6056af6f2a3b59b5539444d3e7be38f82528dee5ec33e71d1dd8076eeb750f7e7fb388b8d574462b86d216f87653bd0b4663ee5dbf5a0d2e882f14ae5d459b8
6
+ metadata.gz: ef6f7c5e487e5df0edcaa341b6b699b2ad0f41879c8b36a8dd00b7006f65d62a99f908bf158ef7dd3a67406ba08f31d94dc7fdb952177633b9d3206abacae029
7
+ data.tar.gz: 637c10fca8f1e1e6ff8b1f6e252ed71ad41ed80f196b6198416a2b452664e518c34544f756d2e3aaf911c3fbe454b5545eaa724f7b4ab6ed65a9492422b2d7f1
checksums.yaml.gz.sig CHANGED
Binary file
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2018-2022, by Samuel Williams.
4
+ # Copyright, 2018-2023, by Samuel Williams.
5
5
 
6
6
  # Update environment variables in config/environment.yaml
7
7
  def initialize(...)
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2017-2022, by Samuel Williams.
4
+ # Copyright, 2023, by Samuel Williams.
5
5
 
6
6
  def initialize(...)
7
7
  super
data/bake/utopia/site.rb CHANGED
@@ -1,8 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2017-2023, by Samuel Williams.
5
- # Copyright, 2020, by Michael Adams.
4
+ # Copyright, 2023, by Samuel Williams.
6
5
 
7
6
  def initialize(...)
8
7
  super
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2009-2022, by Samuel Williams.
4
+ # Copyright, 2009-2023, by Samuel Williams.
5
5
 
6
6
  require_relative 'middleware'
7
7
  require_relative 'localization'
@@ -190,7 +190,7 @@ module Utopia
190
190
  'link.href' => link.href
191
191
  }
192
192
 
193
- trace("utopia.content.respond", attributes: attributes) {super}
193
+ Traces.trace("utopia.content.respond", attributes: attributes) {super}
194
194
  end
195
195
  end
196
196
  end
data/lib/utopia/static.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2009-2022, by Samuel Williams.
4
+ # Copyright, 2009-2023, by Samuel Williams.
5
5
 
6
6
  require_relative 'middleware'
7
7
  require_relative 'localization'
@@ -102,7 +102,7 @@ module Utopia
102
102
  path_info: path_info,
103
103
  }
104
104
 
105
- trace("utopia.static.respond", attributes: attributes) {super}
105
+ Traces.trace("utopia.static.respond", attributes: attributes) {super}
106
106
  end
107
107
  end
108
108
  end
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2009-2022, by Samuel Williams.
4
+ # Copyright, 2009-2023, by Samuel Williams.
5
5
 
6
6
  module Utopia
7
- VERSION = "2.22.2"
7
+ VERSION = "2.23.0"
8
8
  end
data/readme.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Utopia is a website generation framework which provides a robust set of tools to build highly complex dynamic websites. It uses the filesystem heavily for content and provides functions for interacting with files and directories as structure representing the website.
4
4
 
5
- [![Development Status](https://github.com/ioquatix/utopia/workflows/Test/badge.svg)](https://github.com/ioquatix/utopia/actions?workflow=Test)
5
+ [![Development Status](https://github.com/socketry/utopia/workflows/Test/badge.svg)](https://github.com/socketry/utopia/actions?workflow=Test)
6
6
 
7
7
  ## Features
8
8
 
@@ -25,6 +25,14 @@ We welcome contributions to this project.
25
25
  4. Push to the branch (`git push origin my-new-feature`).
26
26
  5. Create new Pull Request.
27
27
 
28
+ ### Developer Certificate of Origin
29
+
30
+ This project uses the [Developer Certificate of Origin](https://developercertificate.org/). All contributors to this project must agree to this document to have their contributions accepted.
31
+
32
+ ### Contributor Covenant
33
+
34
+ This project is governed by [Contributor Covenant](https://www.contributor-covenant.org/). All contributors and participants agree to abide by its terms.
35
+
28
36
  ## See Also
29
37
 
30
38
  - [Trenni](https://github.com/ioquatix/trenni) — Template and markup parsers, markup generation.
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2016-2023, by Samuel Williams.
4
+ # Copyright, 2023, by Samuel Williams.
5
5
 
6
6
  require 'rack/test'
7
7
  require 'sus/fixtures/async/http'
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: utopia
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.22.2
4
+ version: 2.23.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
@@ -41,7 +41,7 @@ cert_chain:
41
41
  Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
42
42
  voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
43
43
  -----END CERTIFICATE-----
44
- date: 2023-02-21 00:00:00.000000000 Z
44
+ date: 2023-06-26 00:00:00.000000000 Z
45
45
  dependencies:
46
46
  - !ruby/object:Gem::Dependency
47
47
  name: concurrent-ruby
@@ -173,16 +173,16 @@ dependencies:
173
173
  name: traces
174
174
  requirement: !ruby/object:Gem::Requirement
175
175
  requirements:
176
- - - ">="
176
+ - - "~>"
177
177
  - !ruby/object:Gem::Version
178
- version: '0'
178
+ version: '0.10'
179
179
  type: :runtime
180
180
  prerelease: false
181
181
  version_requirements: !ruby/object:Gem::Requirement
182
182
  requirements:
183
- - - ">="
183
+ - - "~>"
184
184
  - !ruby/object:Gem::Version
185
- version: '0'
185
+ version: '0.10'
186
186
  - !ruby/object:Gem::Dependency
187
187
  name: trenni
188
188
  requirement: !ruby/object:Gem::Requirement
@@ -404,14 +404,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
404
404
  requirements:
405
405
  - - ">="
406
406
  - !ruby/object:Gem::Version
407
- version: '2.7'
407
+ version: '3.0'
408
408
  required_rubygems_version: !ruby/object:Gem::Requirement
409
409
  requirements:
410
410
  - - ">="
411
411
  - !ruby/object:Gem::Version
412
412
  version: '0'
413
413
  requirements: []
414
- rubygems_version: 3.4.6
414
+ rubygems_version: 3.4.7
415
415
  signing_key:
416
416
  specification_version: 4
417
417
  summary: Utopia is a framework for building dynamic content-driven websites.
metadata.gz.sig CHANGED
@@ -1,3 +1,5 @@
1
- *��ju�϶o��9�c����#9o����۱m7θ�U`�y%@��#&�k�?�2j1*��)��X�y�6ɹ�:��_��0��L�rr�b�]z�'ڀ�C�'���]h��A��7l��nu�NP)'/xR�OF?�#�Nî
2
- �hoٶ��� ���f?S�ҭ�G}�׳��_H�����MFΌ�0�@����B�ͻ#�����'=�i"��V��(E�2���y9��YJ��c���2��%���$��ţ�>�ђ;�!��n#���Y�@�H���Iq' H2K�)��]�Qء������^矿��q��cS���DPk?0����N"&2sp����#�q����e��
3
- �nR�V|�oӍ@)�
1
+ c��DWS�հ/Ye���f��T�ı
2
+ y�!wʵ`l�&L?�Rp����UtQ�i� >)|>�ňP Qz���h���Ȑ8V
3
+ {���6�������c������L*��Y<W����t���X����|����~.zMަ��^�������"���
4
+ �Jn����˜> R�Q;�b/�8�7EV�+:0�'+��K����� ��e��)�ޣ���\��[���k��] ���H;ŋ�'9�1�ی�����^E^
5
+ ����'�g6LR@�EhP�G��Q� ���l��Ν�������!I��khㄾ���J��#3����+��B�x}����8�Y���1PH0ܐ��ma�T`Q�6�8�����b���b��&