utopia 2.18.3 → 2.18.4
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 +4 -4
- data/lib/utopia/command/site.rb +2 -2
- data/lib/utopia/content/link.rb +5 -5
- data/lib/utopia/version.rb +1 -1
- data/setup/site/README.md +2 -2
- data/setup/site/config.ru +2 -0
- data/setup/site/pages/_page.xnode +1 -1
- data/setup/site/public/_static/icon.svg +20 -0
- data/setup/site/public/_static/utopia-background.svg +11 -1
- data/setup/site/public/_static/utopia.svg +19 -1
- metadata +4 -4
- data/setup/site/public/_static/icon.png +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d3b6e619bc7db476e12fb64c15765a84349a8aabc6ee8b2b4e46a8ea80936e4
|
|
4
|
+
data.tar.gz: 3fe0eeafcf89805747e888122545ac3ab73e0a87a61f6a157eb8c7a86a442135
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a3a7677b5ee5f54ceb5267614f46ca8791d6ac5db62db29485e9392cb993e4b6e39ab6be6a1bbbd9faa7182368612f3347cf4faa769e44ad00d35b9c2abe99b
|
|
7
|
+
data.tar.gz: 5f9b615c2fe980279cbc0a5516d0e69e7c94af88805dce6d1c5409b860b5fb2be29f575da05c21aa750056232ef95c0fb802a789cc6630b24ff3fcd8514d0d49
|
data/lib/utopia/command/site.rb
CHANGED
|
@@ -110,10 +110,10 @@ module Utopia
|
|
|
110
110
|
puts "make your life easier and more enjoyable.".center(78)
|
|
111
111
|
puts ""
|
|
112
112
|
puts "To start the development server, run:".center(78)
|
|
113
|
-
puts "
|
|
113
|
+
puts "bake utopia:development".center(78)
|
|
114
114
|
puts ""
|
|
115
115
|
puts "For extreme productivity, please consult the online documentation".center(78)
|
|
116
|
-
puts "https://github.com/
|
|
116
|
+
puts "https://github.com/socketry/utopia".center(78)
|
|
117
117
|
puts " ~ Samuel. ".rjust(78)
|
|
118
118
|
end
|
|
119
119
|
end
|
data/lib/utopia/content/link.rb
CHANGED
|
@@ -96,17 +96,17 @@ module Utopia
|
|
|
96
96
|
def to_anchor(base: nil, content: self.title, builder: nil, **attributes)
|
|
97
97
|
attributes[:class] ||= 'link'
|
|
98
98
|
|
|
99
|
-
Trenni::Builder.fragment(builder) do |
|
|
99
|
+
Trenni::Builder.fragment(builder) do |inner_builder|
|
|
100
100
|
if href?
|
|
101
101
|
attributes[:href] ||= relative_href(base)
|
|
102
102
|
attributes[:target] ||= @info[:target]
|
|
103
103
|
|
|
104
|
-
|
|
105
|
-
|
|
104
|
+
inner_builder.inline('a', attributes) do
|
|
105
|
+
inner_builder.text(content)
|
|
106
106
|
end
|
|
107
107
|
else
|
|
108
|
-
|
|
109
|
-
|
|
108
|
+
inner_builder.inline('span', attributes) do
|
|
109
|
+
inner_builder.text(content)
|
|
110
110
|
end
|
|
111
111
|
end
|
|
112
112
|
end
|
data/lib/utopia/version.rb
CHANGED
data/setup/site/README.md
CHANGED
|
@@ -6,11 +6,11 @@ Welcome to Utopia, a Ruby framework for web site and application development. Fo
|
|
|
6
6
|
|
|
7
7
|
To start the development server, simply execute
|
|
8
8
|
|
|
9
|
-
>
|
|
9
|
+
> bake
|
|
10
10
|
Generating transient session key for development...
|
|
11
11
|
20:57:36 - INFO - Starting Falcon HTTP server on localhost:9292
|
|
12
12
|
20:57:36 - INFO - Guard::RSpec is running
|
|
13
13
|
20:57:36 - INFO - Guard is now watching at '...'
|
|
14
14
|
[1] guard(main)>
|
|
15
15
|
|
|
16
|
-
Then browse
|
|
16
|
+
Then browse https://localhost:9292 (or as specified) to see your new site.
|
data/setup/site/config.ru
CHANGED
|
@@ -14,6 +14,7 @@ else
|
|
|
14
14
|
use Rack::ShowExceptions unless UTOPIA.testing?
|
|
15
15
|
end
|
|
16
16
|
|
|
17
|
+
# serve static files from public/
|
|
17
18
|
use Utopia::Static, root: 'public'
|
|
18
19
|
|
|
19
20
|
use Utopia::Redirection::Rewrite, {
|
|
@@ -39,6 +40,7 @@ use Utopia::Session,
|
|
|
39
40
|
|
|
40
41
|
use Utopia::Controller
|
|
41
42
|
|
|
43
|
+
# serve static files from pages/
|
|
42
44
|
use Utopia::Static
|
|
43
45
|
|
|
44
46
|
# Serve dynamic content
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous" />
|
|
16
16
|
|
|
17
|
-
<link rel="icon" type="image/png" href="/_static/icon.
|
|
17
|
+
<link rel="icon" type="image/png" href="/_static/icon.svg" />
|
|
18
18
|
<link rel="stylesheet" href="/_static/site.css" type="text/css" media="screen" />
|
|
19
19
|
</head>
|
|
20
20
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg width="100%" height="100%" viewBox="0 0 256 256" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:square;stroke-miterlimit:1.5;">
|
|
3
|
+
<g transform="matrix(0.922789,0,0,0.922789,16.591,0.837867)">
|
|
4
|
+
<path d="M120.731,31.594L212.702,84.694L212.702,190.893L120.731,243.993L28.759,190.893L28.759,84.694L120.731,31.594Z" style="fill:none;"/>
|
|
5
|
+
<clipPath id="_clip1">
|
|
6
|
+
<path d="M120.731,31.594L212.702,84.694L212.702,190.893L120.731,243.993L28.759,190.893L28.759,84.694L120.731,31.594Z"/>
|
|
7
|
+
</clipPath>
|
|
8
|
+
<g clip-path="url(#_clip1)">
|
|
9
|
+
<g transform="matrix(18.3943,0,0,10.62,-1929.57,-966.601)">
|
|
10
|
+
<g transform="matrix(1,0,0,0.178571,106.463,93.9922)">
|
|
11
|
+
<rect x="0" y="0" width="10" height="56" style="fill:#f79433;"/>
|
|
12
|
+
</g>
|
|
13
|
+
<g transform="matrix(1,0,0,0.416667,106.463,80.6588)">
|
|
14
|
+
<rect x="0" y="56" width="10" height="24" style="fill:#4e8dd8;"/>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</g>
|
|
18
|
+
<path d="M120.731,31.594L212.702,84.694L212.702,190.893L120.731,243.993L28.759,190.893L28.759,84.694L120.731,31.594Z" style="fill:none;stroke:black;stroke-width:26.01px;"/>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|
|
@@ -1 +1,11 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="100%" height="100%"
|
|
4
|
+
viewBox="0 0 10 80"
|
|
5
|
+
preserveAspectRatio="none"
|
|
6
|
+
version="1.1"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:xlink= "http://www.w3.org/1999/xlink">
|
|
9
|
+
<rect x="0" y="0" width="10" height="56" style="fill:#f79433;"/>
|
|
10
|
+
<rect x="0" y="56" width="10" height="24" style="fill:#4e8dd8;"/>
|
|
11
|
+
</svg>
|
|
@@ -1 +1,19 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="100%" height="100%"
|
|
4
|
+
viewBox="0 0 420 80"
|
|
5
|
+
preserveAspectRatio="none"
|
|
6
|
+
version="1.1"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:xlink= "http://www.w3.org/1999/xlink">
|
|
9
|
+
<rect x="0" y="0" width="420" height="56" style="fill:#f79433;"/>
|
|
10
|
+
<rect x="0" y="56" width="420" height="24" style="fill:#4e8dd8;"/>
|
|
11
|
+
<g>
|
|
12
|
+
<path d="M75.145,70.819c2.37,-3.097 4.173,-6.921 5.111,-11.365c0.91,-4.318 1.498,-9.261 1.498,-14.692l0,-44.762l-62.754,0l0,44.762c0,2.628 0.244,5.333 0.407,8.035c0.168,2.782 0.674,5.515 1.345,8.118c0.68,2.644 1.739,5.173 3.067,7.517c1.363,2.405 3.263,4.526 5.609,6.303c2.319,1.755 5.245,3.163 8.677,4.172c1.617,0.478 3.416,1.093 5.354,1.093l13.856,0c3.071,0 5.797,-1.058 8.131,-2.001c4.042,-1.631 7.305,-4.049 9.699,-7.18Z" style="fill:#fff;fill-rule:nonzero;"/>
|
|
13
|
+
<path d="M151.481,18.701l0,-18.701l-62.754,-0.022l0,18.723l22.246,0l0.02,61.299l17.93,0l-0.02,-61.299l22.578,0Z" style="fill:#fff;fill-rule:nonzero;"/>
|
|
14
|
+
<path d="M229.926,39.999c0,-22.051 -16.979,-39.992 -37.852,-39.992c-20.872,0 -37.851,17.942 -37.851,39.992c0,22.054 16.979,39.994 37.851,39.994c20.873,0 37.852,-17.94 37.852,-39.994Z" style="fill:#fff;fill-rule:nonzero;"/>
|
|
15
|
+
<path d="M269.238,50.909c9.717,0 17.181,-2.066 22.183,-6.395c5.087,-4.399 7.667,-10.942 7.667,-19.575c0,-3.257 -0.393,-5.962 -1.167,-8.476c-0.778,-2.528 -1.883,-4.934 -3.281,-6.814c-1.401,-1.882 -3.098,-3.458 -5.045,-4.703c-1.895,-1.21 -4.003,-2.198 -6.264,-2.943c-2.239,-0.737 -4.64,-1.263 -7.139,-1.56c-2.464,-0.292 -5.016,-0.443 -7.587,-0.443l-29.468,0l0,80l17.93,0l0,-29.091l12.171,0Z" style="fill:#fff;fill-rule:nonzero;"/>
|
|
16
|
+
<path d="M362.589,0l-29.477,80l75.888,0l-31.247,-80l-15.164,0Z" style="fill:#fff;fill-rule:nonzero;"/>
|
|
17
|
+
<rect x="304.879" y="0" width="17.93" height="80" style="fill:#fff;"/>
|
|
18
|
+
</g>
|
|
19
|
+
</svg>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: utopia
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.18.
|
|
4
|
+
version: 2.18.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Williams
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: concurrent-ruby
|
|
@@ -325,7 +325,7 @@ files:
|
|
|
325
325
|
- setup/site/pages/errors/file-not-found.xnode
|
|
326
326
|
- setup/site/pages/links.yaml
|
|
327
327
|
- setup/site/pages/welcome/index.xnode
|
|
328
|
-
- setup/site/public/_static/icon.
|
|
328
|
+
- setup/site/public/_static/icon.svg
|
|
329
329
|
- setup/site/public/_static/site.css
|
|
330
330
|
- setup/site/public/_static/utopia-background.svg
|
|
331
331
|
- setup/site/public/_static/utopia.svg
|
|
@@ -353,7 +353,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
353
353
|
- !ruby/object:Gem::Version
|
|
354
354
|
version: '0'
|
|
355
355
|
requirements: []
|
|
356
|
-
rubygems_version: 3.
|
|
356
|
+
rubygems_version: 3.1.2
|
|
357
357
|
signing_key:
|
|
358
358
|
specification_version: 4
|
|
359
359
|
summary: Utopia is a framework for building dynamic content-driven websites.
|
|
Binary file
|