utopia 2.16.0 → 2.16.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- 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/lib/utopia/controller/base.rb +5 -1
- data/lib/utopia/version.rb +1 -1
- 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
- metadata +11 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f7a327d1848543592fbdf7a17fa1f45893852cff6ff763ddfdb08c9cb64ad80
|
4
|
+
data.tar.gz: 0bcf595720fb09061dfb130e9ca3fc68f6ac071b279e661b9a76a186736fec42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a246d50f6dd455582454f62e49c313c1e9c851094febfc20929d4ead609532c7b8e9673ab05c4ed037994960ece9e3a59c9de364b2074d0845fe2c50aaa298b
|
7
|
+
data.tar.gz: 906526e65a9c040d781ac7544cec1425556bb78614e89c0a63ae39d2b805a25a1ede314d78c17830a2348adf094bb5be1b2a748792742d477421377f06c5d1f6
|
data/lib/.DS_Store
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -28,6 +28,10 @@ module Utopia
|
|
28
28
|
|
29
29
|
# The base implementation of a controller class.
|
30
30
|
class Base
|
31
|
+
URI_PATH = nil
|
32
|
+
BASE_PATH = nil
|
33
|
+
CONTROLLER = nil
|
34
|
+
|
31
35
|
# A string which is the full path to the directory which contains the controller.
|
32
36
|
def self.base_path
|
33
37
|
self.const_get(:BASE_PATH)
|
@@ -44,7 +48,7 @@ module Utopia
|
|
44
48
|
end
|
45
49
|
|
46
50
|
def self.inspect
|
47
|
-
"
|
51
|
+
"#{super}#{self.uri_path}"
|
48
52
|
end
|
49
53
|
|
50
54
|
def self.to_s
|
data/lib/utopia/version.rb
CHANGED
data/setup/.DS_Store
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
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.16.
|
4
|
+
version: 2.16.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
@@ -303,12 +303,15 @@ files:
|
|
303
303
|
- bake/utopia/static.rb
|
304
304
|
- bake/utopia/test.rb
|
305
305
|
- bin/utopia
|
306
|
+
- lib/.DS_Store
|
306
307
|
- lib/utopia.rb
|
308
|
+
- lib/utopia/.DS_Store
|
307
309
|
- lib/utopia/command.rb
|
308
310
|
- lib/utopia/command/environment.rb
|
309
311
|
- lib/utopia/command/server.rb
|
310
312
|
- lib/utopia/command/site.rb
|
311
313
|
- lib/utopia/content.rb
|
314
|
+
- lib/utopia/content/.DS_Store
|
312
315
|
- lib/utopia/content/document.rb
|
313
316
|
- lib/utopia/content/link.rb
|
314
317
|
- lib/utopia/content/links.rb
|
@@ -319,6 +322,7 @@ files:
|
|
319
322
|
- lib/utopia/content/tags.rb
|
320
323
|
- lib/utopia/content_length.rb
|
321
324
|
- lib/utopia/controller.rb
|
325
|
+
- lib/utopia/controller/.DS_Store
|
322
326
|
- lib/utopia/controller/actions.rb
|
323
327
|
- lib/utopia/controller/base.rb
|
324
328
|
- lib/utopia/controller/respond.rb
|
@@ -347,7 +351,10 @@ files:
|
|
347
351
|
- lib/utopia/static/local_file.rb
|
348
352
|
- lib/utopia/static/mime_types.rb
|
349
353
|
- lib/utopia/version.rb
|
354
|
+
- setup/.DS_Store
|
355
|
+
- setup/server/.DS_Store
|
350
356
|
- setup/server/git/hooks/post-receive
|
357
|
+
- setup/site/.DS_Store
|
351
358
|
- setup/site/.gitignore
|
352
359
|
- setup/site/.rspec
|
353
360
|
- setup/site/Gemfile
|
@@ -359,12 +366,14 @@ files:
|
|
359
366
|
- setup/site/config/environment.rb
|
360
367
|
- setup/site/falcon.rb
|
361
368
|
- setup/site/lib/readme.txt
|
369
|
+
- setup/site/pages/.DS_Store
|
362
370
|
- setup/site/pages/_heading.xnode
|
363
371
|
- setup/site/pages/_page.xnode
|
364
372
|
- setup/site/pages/errors/exception.xnode
|
365
373
|
- setup/site/pages/errors/file-not-found.xnode
|
366
374
|
- setup/site/pages/links.yaml
|
367
375
|
- setup/site/pages/welcome/index.xnode
|
376
|
+
- setup/site/public/.DS_Store
|
368
377
|
- setup/site/public/_static/icon.png
|
369
378
|
- setup/site/public/_static/site.css
|
370
379
|
- setup/site/public/_static/utopia-background.svg
|
@@ -373,6 +382,7 @@ files:
|
|
373
382
|
- setup/site/spec/spec_helper.rb
|
374
383
|
- setup/site/spec/website_context.rb
|
375
384
|
- setup/site/spec/website_spec.rb
|
385
|
+
- setup/site/tmp/Gemfile
|
376
386
|
homepage: https://github.com/ioquatix/utopia
|
377
387
|
licenses:
|
378
388
|
- MIT
|