utopia 2.20.0 → 2.21.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/bake/utopia/node.rb +3 -1
- data/bake/utopia/shell.rb +3 -1
- data/bake/utopia/static.rb +3 -2
- data/bake/utopia/test.rb +3 -1
- data/bake/utopia.rb +3 -1
- data/lib/utopia/command/environment.rb +2 -19
- data/lib/utopia/command/server.rb +7 -20
- data/lib/utopia/command/site.rb +3 -19
- data/lib/utopia/command.rb +3 -19
- data/lib/utopia/content/document.rb +2 -19
- data/lib/utopia/content/link.rb +4 -19
- data/lib/utopia/content/links.rb +2 -19
- data/lib/utopia/content/markup.rb +2 -19
- data/lib/utopia/content/namespace.rb +2 -19
- data/lib/utopia/content/node.rb +4 -20
- data/lib/utopia/content/response.rb +2 -19
- data/lib/utopia/content/tags.rb +2 -19
- data/lib/utopia/content.rb +2 -19
- data/lib/utopia/content_length.rb +2 -19
- data/lib/utopia/controller/actions.rb +2 -19
- data/lib/utopia/controller/base.rb +2 -19
- data/lib/utopia/controller/respond.rb +2 -19
- data/lib/utopia/controller/rewrite.rb +2 -19
- data/lib/utopia/controller/variables.rb +2 -19
- data/lib/utopia/controller.rb +2 -19
- data/lib/utopia/exceptions/handler.rb +2 -19
- data/lib/utopia/exceptions/mailer.rb +2 -19
- data/lib/utopia/exceptions.rb +2 -19
- data/lib/utopia/extensions/array_split.rb +3 -20
- data/lib/utopia/extensions/date_comparisons.rb +3 -20
- data/lib/utopia/http.rb +2 -19
- data/lib/utopia/locale.rb +2 -19
- data/lib/utopia/localization.rb +2 -19
- data/lib/utopia/logger.rb +2 -19
- data/lib/utopia/middleware.rb +2 -19
- data/lib/utopia/path/matcher.rb +2 -19
- data/lib/utopia/path.rb +2 -19
- data/lib/utopia/redirection.rb +2 -19
- data/lib/utopia/responder.rb +2 -19
- data/lib/utopia/session/lazy_hash.rb +2 -19
- data/lib/utopia/session/serialization.rb +2 -19
- data/lib/utopia/session.rb +3 -19
- data/lib/utopia/setup.rb +2 -19
- data/lib/utopia/shell.rb +2 -19
- data/lib/utopia/static/local_file.rb +2 -19
- data/lib/utopia/static/mime_types.rb +2 -19
- data/lib/utopia/static.rb +2 -19
- data/lib/utopia/version.rb +3 -20
- data/lib/utopia.rb +3 -20
- data/license.md +25 -0
- data/readme.md +44 -0
- data/setup/site/bake.rb +3 -1
- data/setup/site/config/environment.rb +3 -0
- data/setup/site/falcon.rb +3 -0
- data/setup/site/gems.rb +3 -0
- data/setup/site/spec/spec_helper.rb +3 -0
- data/setup/site/spec/website_context.rb +4 -1
- data/setup/site/spec/website_spec.rb +3 -0
- data.tar.gz.sig +0 -0
- metadata +32 -40
- metadata.gz.sig +0 -0
- data/lib/.DS_Store +0 -0
- data/lib/utopia/.DS_Store +0 -0
- data/lib/utopia/content/.DS_Store +0 -0
- data/lib/utopia/controller/.DS_Store +0 -0
- data/setup/.DS_Store +0 -0
- data/setup/server/.DS_Store +0 -0
- data/setup/site/.DS_Store +0 -0
- data/setup/site/pages/.DS_Store +0 -0
- data/setup/site/public/.DS_Store +0 -0
- data/setup/site/tmp/Gemfile +0 -20
data/lib/utopia/static.rb
CHANGED
@@ -1,24 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
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'
|
data/lib/utopia/version.rb
CHANGED
@@ -1,25 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
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.
|
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
|
-
#
|
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
|
-
#
|
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
|
data/setup/site/falcon.rb
CHANGED
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, 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)
|
15
|
+
let(:app) {Rack::Builder.parse_file(rackup_path)}
|
13
16
|
end
|
14
17
|
|
15
18
|
RSpec.shared_examples_for "valid page" do |path|
|
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.
|
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
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
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-
|
44
|
+
date: 2022-12-28 00:00:00.000000000 Z
|
45
45
|
dependencies:
|
46
46
|
- !ruby/object:Gem::Dependency
|
47
47
|
name: concurrent-ruby
|
@@ -147,14 +147,14 @@ dependencies:
|
|
147
147
|
requirements:
|
148
148
|
- - "~>"
|
149
149
|
- !ruby/object:Gem::Version
|
150
|
-
version: '
|
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: '
|
157
|
+
version: '3.0'
|
158
158
|
- !ruby/object:Gem::Dependency
|
159
159
|
name: samovar
|
160
160
|
requirement: !ruby/object:Gem::Requirement
|
@@ -322,15 +322,12 @@ files:
|
|
322
322
|
- bake/utopia/static.rb
|
323
323
|
- bake/utopia/test.rb
|
324
324
|
- bin/utopia
|
325
|
-
- lib/.DS_Store
|
326
325
|
- lib/utopia.rb
|
327
|
-
- lib/utopia/.DS_Store
|
328
326
|
- lib/utopia/command.rb
|
329
327
|
- lib/utopia/command/environment.rb
|
330
328
|
- lib/utopia/command/server.rb
|
331
329
|
- lib/utopia/command/site.rb
|
332
330
|
- lib/utopia/content.rb
|
333
|
-
- lib/utopia/content/.DS_Store
|
334
331
|
- lib/utopia/content/document.rb
|
335
332
|
- lib/utopia/content/link.rb
|
336
333
|
- lib/utopia/content/links.rb
|
@@ -341,7 +338,6 @@ files:
|
|
341
338
|
- lib/utopia/content/tags.rb
|
342
339
|
- lib/utopia/content_length.rb
|
343
340
|
- lib/utopia/controller.rb
|
344
|
-
- lib/utopia/controller/.DS_Store
|
345
341
|
- lib/utopia/controller/actions.md
|
346
342
|
- lib/utopia/controller/actions.rb
|
347
343
|
- lib/utopia/controller/base.rb
|
@@ -372,10 +368,9 @@ files:
|
|
372
368
|
- lib/utopia/static/local_file.rb
|
373
369
|
- lib/utopia/static/mime_types.rb
|
374
370
|
- lib/utopia/version.rb
|
375
|
-
-
|
376
|
-
-
|
371
|
+
- license.md
|
372
|
+
- readme.md
|
377
373
|
- setup/server/git/hooks/post-receive
|
378
|
-
- setup/site/.DS_Store
|
379
374
|
- setup/site/.gitignore
|
380
375
|
- setup/site/.rspec
|
381
376
|
- setup/site/Guardfile
|
@@ -387,14 +382,12 @@ files:
|
|
387
382
|
- setup/site/falcon.rb
|
388
383
|
- setup/site/gems.rb
|
389
384
|
- setup/site/lib/readme.txt
|
390
|
-
- setup/site/pages/.DS_Store
|
391
385
|
- setup/site/pages/_heading.xnode
|
392
386
|
- setup/site/pages/_page.xnode
|
393
387
|
- setup/site/pages/errors/exception.xnode
|
394
388
|
- setup/site/pages/errors/file-not-found.xnode
|
395
389
|
- setup/site/pages/links.yaml
|
396
390
|
- setup/site/pages/welcome/index.xnode
|
397
|
-
- setup/site/public/.DS_Store
|
398
391
|
- setup/site/public/_static/icon.svg
|
399
392
|
- setup/site/public/_static/site.css
|
400
393
|
- setup/site/public/_static/utopia-background.svg
|
@@ -403,7 +396,6 @@ files:
|
|
403
396
|
- setup/site/spec/spec_helper.rb
|
404
397
|
- setup/site/spec/website_context.rb
|
405
398
|
- setup/site/spec/website_spec.rb
|
406
|
-
- setup/site/tmp/Gemfile
|
407
399
|
homepage: https://github.com/ioquatix/utopia
|
408
400
|
licenses:
|
409
401
|
- MIT
|
metadata.gz.sig
CHANGED
Binary file
|
data/lib/.DS_Store
DELETED
Binary file
|
data/lib/utopia/.DS_Store
DELETED
Binary file
|
Binary file
|
Binary file
|
data/setup/.DS_Store
DELETED
Binary file
|
data/setup/server/.DS_Store
DELETED
Binary file
|
data/setup/site/.DS_Store
DELETED
Binary file
|
data/setup/site/pages/.DS_Store
DELETED
Binary file
|
data/setup/site/public/.DS_Store
DELETED
Binary file
|
data/setup/site/tmp/Gemfile
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
|
2
|
-
source "https://rubygems.org"
|
3
|
-
|
4
|
-
gem "utopia", "~> 1.8.0"
|
5
|
-
# gem "utopia-tags-gallery"
|
6
|
-
# gem "utopia-tags-google-analytics"
|
7
|
-
|
8
|
-
gem "rake"
|
9
|
-
gem "bundler"
|
10
|
-
|
11
|
-
gem "kramdown"
|
12
|
-
|
13
|
-
group :development do
|
14
|
-
# For `rake server`:
|
15
|
-
gem "puma"
|
16
|
-
|
17
|
-
# For `rake console`:
|
18
|
-
gem "pry"
|
19
|
-
gem "rack-test"
|
20
|
-
end
|