utopia 2.20.1 → 2.21.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/bake/utopia/node.rb +3 -1
  4. data/bake/utopia/shell.rb +3 -1
  5. data/bake/utopia/static.rb +3 -2
  6. data/bake/utopia/test.rb +3 -1
  7. data/bake/utopia.rb +3 -1
  8. data/lib/utopia/command/environment.rb +2 -19
  9. data/lib/utopia/command/server.rb +7 -20
  10. data/lib/utopia/command/site.rb +3 -19
  11. data/lib/utopia/command.rb +3 -19
  12. data/lib/utopia/content/document.rb +2 -19
  13. data/lib/utopia/content/link.rb +4 -19
  14. data/lib/utopia/content/links.rb +2 -19
  15. data/lib/utopia/content/markup.rb +2 -19
  16. data/lib/utopia/content/namespace.rb +2 -19
  17. data/lib/utopia/content/node.rb +4 -20
  18. data/lib/utopia/content/response.rb +2 -19
  19. data/lib/utopia/content/tags.rb +2 -19
  20. data/lib/utopia/content.rb +2 -19
  21. data/lib/utopia/content_length.rb +2 -19
  22. data/lib/utopia/controller/actions.rb +2 -19
  23. data/lib/utopia/controller/base.rb +2 -19
  24. data/lib/utopia/controller/respond.rb +2 -19
  25. data/lib/utopia/controller/rewrite.rb +2 -19
  26. data/lib/utopia/controller/variables.rb +2 -19
  27. data/lib/utopia/controller.rb +2 -19
  28. data/lib/utopia/exceptions/handler.rb +2 -19
  29. data/lib/utopia/exceptions/mailer.rb +2 -19
  30. data/lib/utopia/exceptions.rb +2 -19
  31. data/lib/utopia/extensions/array_split.rb +3 -20
  32. data/lib/utopia/extensions/date_comparisons.rb +3 -20
  33. data/lib/utopia/http.rb +2 -19
  34. data/lib/utopia/locale.rb +2 -19
  35. data/lib/utopia/localization.rb +2 -19
  36. data/lib/utopia/logger.rb +2 -19
  37. data/lib/utopia/middleware.rb +2 -19
  38. data/lib/utopia/path/matcher.rb +2 -19
  39. data/lib/utopia/path.rb +2 -19
  40. data/lib/utopia/redirection.rb +2 -19
  41. data/lib/utopia/responder.rb +2 -19
  42. data/lib/utopia/session/lazy_hash.rb +2 -19
  43. data/lib/utopia/session/serialization.rb +2 -19
  44. data/lib/utopia/session.rb +3 -19
  45. data/lib/utopia/setup.rb +2 -19
  46. data/lib/utopia/shell.rb +2 -19
  47. data/lib/utopia/static/local_file.rb +2 -19
  48. data/lib/utopia/static/mime_types.rb +2 -19
  49. data/lib/utopia/static.rb +2 -19
  50. data/lib/utopia/version.rb +3 -20
  51. data/lib/utopia.rb +3 -20
  52. data/license.md +25 -0
  53. data/readme.md +44 -0
  54. data/setup/site/bake.rb +3 -1
  55. data/setup/site/config/environment.rb +3 -0
  56. data/setup/site/falcon.rb +3 -0
  57. data/setup/site/gems.rb +3 -0
  58. data/setup/site/spec/spec_helper.rb +3 -0
  59. data/setup/site/spec/website_context.rb +4 -1
  60. data/setup/site/spec/website_spec.rb +3 -0
  61. data.tar.gz.sig +0 -0
  62. metadata +34 -32
  63. metadata.gz.sig +0 -0
data/lib/utopia/static.rb CHANGED
@@ -1,24 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com>
4
- #
5
- # Permission is hereby granted, free of charge, to any person obtaining a copy
6
- # of this software and associated documentation files (the "Software"), to deal
7
- # in the Software without restriction, including without limitation the rights
8
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- # copies of the Software, and to permit persons to whom the Software is
10
- # furnished to do so, subject to the following conditions:
11
- #
12
- # The above copyright notice and this permission notice shall be included in
13
- # all copies or substantial portions of the Software.
14
- #
15
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- # THE SOFTWARE.
3
+ # Released under the MIT License.
4
+ # Copyright, 2009-2022, by Samuel Williams.
22
5
 
23
6
  require_relative 'middleware'
24
7
  require_relative 'localization'
@@ -1,25 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com>
4
- #
5
- # Permission is hereby granted, free of charge, to any person obtaining a copy
6
- # of this software and associated documentation files (the "Software"), to deal
7
- # in the Software without restriction, including without limitation the rights
8
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- # copies of the Software, and to permit persons to whom the Software is
10
- # furnished to do so, subject to the following conditions:
11
- #
12
- # The above copyright notice and this permission notice shall be included in
13
- # all copies or substantial portions of the Software.
14
- #
15
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- # THE SOFTWARE.
3
+ # Released under the MIT License.
4
+ # Copyright, 2009-2022, by Samuel Williams.
22
5
 
23
6
  module Utopia
24
- VERSION = "2.20.1"
7
+ VERSION = "2.21.0"
25
8
  end
data/lib/utopia.rb CHANGED
@@ -1,24 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com>
4
- #
5
- # Permission is hereby granted, free of charge, to any person obtaining a copy
6
- # of this software and associated documentation files (the "Software"), to deal
7
- # in the Software without restriction, including without limitation the rights
8
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- # copies of the Software, and to permit persons to whom the Software is
10
- # furnished to do so, subject to the following conditions:
11
- #
12
- # The above copyright notice and this permission notice shall be included in
13
- # all copies or substantial portions of the Software.
14
- #
15
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- # THE SOFTWARE.
3
+ # Released under the MIT License.
4
+ # Copyright, 2009-2022, by Samuel Williams.
22
5
 
23
6
  require_relative 'utopia/version'
24
7
 
@@ -31,4 +14,4 @@ require_relative 'utopia/content_length'
31
14
 
32
15
  # Utopia is a web application framework built on top of Rack.
33
16
  module Utopia
34
- end
17
+ end
data/license.md ADDED
@@ -0,0 +1,25 @@
1
+ # MIT License
2
+
3
+ Copyright, 2009-2022, by Samuel Williams.
4
+ Copyright, 2015-2019, by Huba Nagy.
5
+ Copyright, 2020, by Olle Jonsson.
6
+ Copyright, 2020, by k1tsu.
7
+ Copyright, 2020, by Michael Adams.
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ of this software and associated documentation files (the "Software"), to deal
11
+ in the Software without restriction, including without limitation the rights
12
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ copies of the Software, and to permit persons to whom the Software is
14
+ furnished to do so, subject to the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be included in all
17
+ copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ SOFTWARE.
data/readme.md ADDED
@@ -0,0 +1,44 @@
1
+ # ![Utopia](materials/utopia.svg)
2
+
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
+
5
+ [![Development Status](https://github.com/socketry/utopia/workflows/Test/badge.svg)](https://github.com/socketry/utopia/actions?workflow=Test)
6
+
7
+ ## Features
8
+
9
+ - Designed for both content-based websites and applications. Does not depend on a database.
10
+ - Supports flexible content localization based on industry recommendations.
11
+ - Rack middleware compatible with all major Ruby application servers. Small memory footprint by default.
12
+ - Low latency and high throughput. Capable of 10,000+ requests/second out of the box.
13
+
14
+ ## Usage
15
+
16
+ Please see the [project documentation](https://socketry.github.io/utopia).
17
+
18
+ ## Contributing
19
+
20
+ We welcome contributions to this project.
21
+
22
+ 1. Fork it.
23
+ 2. Create your feature branch (`git checkout -b my-new-feature`).
24
+ 3. Commit your changes (`git commit -am 'Add some feature'`).
25
+ 4. Push to the branch (`git push origin my-new-feature`).
26
+ 5. Create new Pull Request.
27
+
28
+ ## See Also
29
+
30
+ - [Trenni](https://github.com/ioquatix/trenni) — Template and markup parsers, markup generation.
31
+ - [Trenni::Formatters](https://github.com/ioquatix/trenni-formatters) — Helpers for HTML generation including views and forms.
32
+ - [Utopia::Gallery](https://github.com/ioquatix/utopia-gallery) — A fast photo gallery based on [libvips](https://github.com/jcupitt/libvips).
33
+ - [Utopia::Project](https://github.com/socketry/utopia-project) — A Ruby project documentation tool.
34
+ - [Utopia::Analytics](https://github.com/ioquatix/utopia-analytics) — Simple integration with Google Analytics.
35
+ - [HTTP::Accept](https://github.com/ioquatix/http-accept) — RFC compliant header parser.
36
+ - [Samovar](https://github.com/ioquatix/samovar) — Command line parser used by Utopia.
37
+ - [Mapping](https://github.com/ioquatix/mapping) — Provide structured conversions for web interfaces.
38
+ - [Rack::Test::Body](https://github.com/ioquatix/rack-test-body) — Provide convenient helpers for testing web interfaces.
39
+
40
+ ### Examples
41
+
42
+ - [Financier](https://github.com/ioquatix/financier) — A small business management platform.
43
+ - [mail.oriontransfer.net](https://github.com/oriontransfer/mail.oriontransfer.net) - Mail server account management.
44
+ - [www.codeotaku.com](http://www.codeotaku.com) ([source](https://github.com/ioquatix/www.codeotaku.com)) — Personal website, blog.
data/setup/site/bake.rb CHANGED
@@ -1,6 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Prepare the application for start/restart.
3
+ # Released under the MIT License.
4
+ # Copyright, 2020-2022, by Samuel Williams.
5
+
4
6
  def deploy
5
7
  # This task is typiclly run after the site is updated but before the server is restarted.
6
8
  end
@@ -1,5 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # Released under the MIT License.
4
+ # Copyright, 2016-2022, by Samuel Williams.
5
+
3
6
  require 'bundler/setup'
4
7
  Bundler.setup
5
8
 
data/setup/site/falcon.rb CHANGED
@@ -1,6 +1,9 @@
1
1
  #!/usr/bin/env -S falcon host
2
2
  # frozen_string_literal: true
3
3
 
4
+ # Released under the MIT License.
5
+ # Copyright, 2019-2022, by Samuel Williams.
6
+
4
7
  load :rack, :lets_encrypt_tls, :supervisor
5
8
 
6
9
  hostname = File.basename(__dir__)
data/setup/site/gems.rb CHANGED
@@ -1,5 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # Released under the MIT License.
4
+ # Copyright, 2012-2022, by Samuel Williams.
5
+
3
6
  source 'https://rubygems.org'
4
7
 
5
8
  group :preload do
@@ -1,5 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # Released under the MIT License.
4
+ # Copyright, 2017-2022, by Samuel Williams.
5
+
3
6
  require 'bundler/setup'
4
7
  require 'covered/rspec'
5
8
  require 'variant'
@@ -1,5 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # Released under the MIT License.
4
+ # Copyright, 2016-2022, by Samuel Williams.
5
+
3
6
  require 'rack/test'
4
7
  require 'async/rspec/reactor'
5
8
 
@@ -9,7 +12,7 @@ RSpec.shared_context "website" do
9
12
  let(:rackup_path) {File.expand_path('../config.ru', __dir__)}
10
13
  let(:rackup_directory) {File.dirname(rackup_path)}
11
14
 
12
- let(:app) {Rack::Builder.parse_file(rackup_path).first}
15
+ let(:app) {Rack::Builder.parse_file(rackup_path)}
13
16
  end
14
17
 
15
18
  RSpec.shared_examples_for "valid page" do |path|
@@ -1,5 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # Released under the MIT License.
4
+ # Copyright, 2016-2022, by Samuel Williams.
5
+
3
6
  require_relative 'website_context'
4
7
 
5
8
  RSpec.describe "website", timeout: 120 do
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,47 +1,47 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: utopia
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.20.1
4
+ version: 2.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
8
8
  - Huba Nagy
9
9
  - Michael Adams
10
10
  - Olle Jonsson
11
- - System Administrator
12
11
  - k1tsu
13
12
  autorequire:
14
13
  bindir: bin
15
14
  cert_chain:
16
15
  - |
17
16
  -----BEGIN CERTIFICATE-----
18
- MIIEhDCCAuygAwIBAgIBATANBgkqhkiG9w0BAQsFADA3MTUwMwYDVQQDDCxzYW11
19
- ZWwud2lsbGlhbXMvREM9b3Jpb250cmFuc2Zlci9EQz1jby9EQz1uejAeFw0yMTA4
20
- MTYwNjMzNDRaFw0yMjA4MTYwNjMzNDRaMDcxNTAzBgNVBAMMLHNhbXVlbC53aWxs
21
- aWFtcy9EQz1vcmlvbnRyYW5zZmVyL0RDPWNvL0RDPW56MIIBojANBgkqhkiG9w0B
22
- AQEFAAOCAY8AMIIBigKCAYEAyXLSS/cw+fXJ5e7hi+U/TeChPWeYdwJojDsFY1xr
23
- xvtqbTTL8gbLHz5LW3QD2nfwCv3qTlw0qI3Ie7a9VMJMbSvgVEGEfQirqIgJXWMj
24
- eNMDgKsMJtC7u/43abRKx7TCURW3iWyR19NRngsJJmaR51yGGGm2Kfsr+JtKKLtL
25
- L188Wm3f13KAx7QJU8qyuBnj1/gWem076hzdA7xi1DbrZrch9GCRz62xymJlrJHn
26
- 9iZEZ7AxrS7vokhMlzSr/XMUihx/8aFKtk+tMLClqxZSmBWIErWdicCGTULXCBNb
27
- E/mljo4zEVKhlTWpJklMIhr55ZRrSarKFuW7en0+tpJrfsYiAmXMJNi4XAYJH7uL
28
- rgJuJwSaa/dMz+VmUoo7VKtSfCoOI+6v5/z0sK3oT6sG6ZwyI47DBq2XqNC6tnAj
29
- w+XmCywiTQrFzMMAvcA7rPI4F0nU1rZId51rOvvfxaONp+wgTi4P8owZLw0/j0m4
30
- 8C20DYi6EYx4AHDXiLpElWh3AgMBAAGjgZowgZcwCQYDVR0TBAIwADALBgNVHQ8E
31
- BAMCBLAwHQYDVR0OBBYEFB6ZaeWKxQjGTI+pmz7cKRmMIywwMC4GA1UdEQQnMCWB
32
- I3NhbXVlbC53aWxsaWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MC4GA1UdEgQnMCWB
33
- I3NhbXVlbC53aWxsaWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MA0GCSqGSIb3DQEB
34
- CwUAA4IBgQBVoM+pu3dpdUhZM1w051iw5GfiqclAr1Psypf16Tiod/ho//4oAu6T
35
- 9fj3DPX/acWV9P/FScvqo4Qgv6g4VWO5ZU7z2JmPoTXZtYMunRAmQPFL/gSUc6aK
36
- vszMHIyhtyzRc6DnfW2AiVOjMBjaYv8xXZc9bduniRVPrLR4J7ozmGLh4o4uJp7w
37
- x9KCFaR8Lvn/r0oJWJOqb/DMAYI83YeN2Dlt3jpwrsmsONrtC5S3gOUle5afSGos
38
- bYt5ocnEpKSomR9ZtnCGljds/aeO1Xgpn2r9HHcjwnH346iNrnHmMlC7BtHUFPDg
39
- Ts92S47PTOXzwPBDsrFiq3VLbRjHSwf8rpqybQBH9MfzxGGxTaETQYOd6b4e4Ag6
40
- y92abGna0bmIEb4+Tx9rQ10Uijh1POzvr/VTH4bbIPy9FbKrRsIQ24qDbNJRtOpE
41
- RAOsIl+HOBTb252nx1kIRN5hqQx272AJCbCjKx8egcUQKffFVVCI0nye09v5CK+a
42
- HiLJ8VOFx6w=
17
+ MIIE2DCCA0CgAwIBAgIBATANBgkqhkiG9w0BAQsFADBhMRgwFgYDVQQDDA9zYW11
18
+ ZWwud2lsbGlhbXMxHTAbBgoJkiaJk/IsZAEZFg1vcmlvbnRyYW5zZmVyMRIwEAYK
19
+ CZImiZPyLGQBGRYCY28xEjAQBgoJkiaJk/IsZAEZFgJuejAeFw0yMjA4MDYwNDUz
20
+ MjRaFw0zMjA4MDMwNDUzMjRaMGExGDAWBgNVBAMMD3NhbXVlbC53aWxsaWFtczEd
21
+ MBsGCgmSJomT8ixkARkWDW9yaW9udHJhbnNmZXIxEjAQBgoJkiaJk/IsZAEZFgJj
22
+ bzESMBAGCgmSJomT8ixkARkWAm56MIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIB
23
+ igKCAYEAomvSopQXQ24+9DBB6I6jxRI2auu3VVb4nOjmmHq7XWM4u3HL+pni63X2
24
+ 9qZdoq9xt7H+RPbwL28LDpDNflYQXoOhoVhQ37Pjn9YDjl8/4/9xa9+NUpl9XDIW
25
+ sGkaOY0eqsQm1pEWkHJr3zn/fxoKPZPfaJOglovdxf7dgsHz67Xgd/ka+Wo1YqoE
26
+ e5AUKRwUuvaUaumAKgPH+4E4oiLXI4T1Ff5Q7xxv6yXvHuYtlMHhYfgNn8iiW8WN
27
+ XibYXPNP7NtieSQqwR/xM6IRSoyXKuS+ZNGDPUUGk8RoiV/xvVN4LrVm9upSc0ss
28
+ RZ6qwOQmXCo/lLcDUxJAgG95cPw//sI00tZan75VgsGzSWAOdjQpFM0l4dxvKwHn
29
+ tUeT3ZsAgt0JnGqNm2Bkz81kG4A2hSyFZTFA8vZGhp+hz+8Q573tAR89y9YJBdYM
30
+ zp0FM4zwMNEUwgfRzv1tEVVUEXmoFCyhzonUUw4nE4CFu/sE3ffhjKcXcY//qiSW
31
+ xm4erY3XAgMBAAGjgZowgZcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0O
32
+ BBYEFO9t7XWuFf2SKLmuijgqR4sGDlRsMC4GA1UdEQQnMCWBI3NhbXVlbC53aWxs
33
+ aWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MC4GA1UdEgQnMCWBI3NhbXVlbC53aWxs
34
+ aWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MA0GCSqGSIb3DQEBCwUAA4IBgQB5sxkE
35
+ cBsSYwK6fYpM+hA5B5yZY2+L0Z+27jF1pWGgbhPH8/FjjBLVn+VFok3CDpRqwXCl
36
+ xCO40JEkKdznNy2avOMra6PFiQyOE74kCtv7P+Fdc+FhgqI5lMon6tt9rNeXmnW/
37
+ c1NaMRdxy999hmRGzUSFjozcCwxpy/LwabxtdXwXgSay4mQ32EDjqR1TixS1+smp
38
+ 8C/NCWgpIfzpHGJsjvmH2wAfKtTTqB9CVKLCWEnCHyCaRVuKkrKjqhYCdmMBqCws
39
+ JkxfQWC+jBVeG9ZtPhQgZpfhvh+6hMhraUYRQ6XGyvBqEUe+yo6DKIT3MtGE2+CP
40
+ eX9i9ZWBydWb8/rvmwmX2kkcBbX0hZS1rcR593hGc61JR6lvkGYQ2MYskBveyaxt
41
+ Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
42
+ voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
43
43
  -----END CERTIFICATE-----
44
- date: 2022-08-03 00:00:00.000000000 Z
44
+ date: 2022-12-28 00:00:00.000000000 Z
45
45
  dependencies:
46
46
  - !ruby/object:Gem::Dependency
47
47
  name: concurrent-ruby
@@ -145,16 +145,16 @@ dependencies:
145
145
  name: rack
146
146
  requirement: !ruby/object:Gem::Requirement
147
147
  requirements:
148
- - - ">="
148
+ - - "~>"
149
149
  - !ruby/object:Gem::Version
150
- version: '2.2'
150
+ version: '3.0'
151
151
  type: :runtime
152
152
  prerelease: false
153
153
  version_requirements: !ruby/object:Gem::Requirement
154
154
  requirements:
155
- - - ">="
155
+ - - "~>"
156
156
  - !ruby/object:Gem::Version
157
- version: '2.2'
157
+ version: '3.0'
158
158
  - !ruby/object:Gem::Dependency
159
159
  name: samovar
160
160
  requirement: !ruby/object:Gem::Requirement
@@ -368,6 +368,8 @@ files:
368
368
  - lib/utopia/static/local_file.rb
369
369
  - lib/utopia/static/mime_types.rb
370
370
  - lib/utopia/version.rb
371
+ - license.md
372
+ - readme.md
371
373
  - setup/server/git/hooks/post-receive
372
374
  - setup/site/.gitignore
373
375
  - setup/site/.rspec
metadata.gz.sig CHANGED
Binary file