utopia-project 0.8.3 → 0.8.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/utopia/project/base.rb +3 -3
- data/lib/utopia/project/guide.rb +2 -2
- data/lib/utopia/project/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a2b0f5eae31e6f803bad22b34562b065b8c1384c55610b71bb0b0e286ba9c778
|
4
|
+
data.tar.gz: 9a63d96659af2c261374d2f51f253d3e636585f42e665f493e1d63610e0d9172
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0000fb76bab4dba159455329d5960be4d70a4c0600271839970cd03bfc22e63b0a565c7166709d46cd04f01603d31f79b2c344de1883bf4ee8a91b3894e787ef
|
7
|
+
data.tar.gz: 296df9614edb3104709000ccf28e9e98e4a08c137d36a29ffbf08318f1036c9389e780270c08eb6609fd2bf976b91d5a78e0d65d04ce080e38736c37f97ebed9
|
data/lib/utopia/project/base.rb
CHANGED
@@ -187,9 +187,9 @@ module Utopia
|
|
187
187
|
end
|
188
188
|
|
189
189
|
# Enumerate over all available guides in order.
|
190
|
-
# @
|
191
|
-
#
|
192
|
-
# @returns [Enumerator(Guide)]
|
190
|
+
# @yields {|guide| ...} If a block is given.
|
191
|
+
# @parameter guide [Guide]
|
192
|
+
# @returns [Enumerator(Guide)] If no block given.
|
193
193
|
def guides
|
194
194
|
return to_enum(:guides) unless block_given?
|
195
195
|
|
data/lib/utopia/project/guide.rb
CHANGED
@@ -127,8 +127,8 @@ module Utopia
|
|
127
127
|
end
|
128
128
|
|
129
129
|
# All the source files associated with this guide.
|
130
|
-
# @
|
131
|
-
#
|
130
|
+
# @yields {|source| ...} If a block is given.
|
131
|
+
# @parameter source [Decode::Source]
|
132
132
|
# @returns [Enumerator(Decode::Source)] If no block is given.
|
133
133
|
def sources
|
134
134
|
return to_enum(:sources) unless block_given?
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: utopia-project
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
@@ -285,10 +285,13 @@ files:
|
|
285
285
|
- template/Gemfile
|
286
286
|
- template/config.ru
|
287
287
|
- template/preload.rb
|
288
|
-
homepage: https://github.
|
288
|
+
homepage: https://socketry.github.io/utopia-project/
|
289
289
|
licenses:
|
290
290
|
- MIT
|
291
|
-
metadata:
|
291
|
+
metadata:
|
292
|
+
documentation_uri: https://socketry.github.io/utopia-project/
|
293
|
+
source_code_uri: https://github.com/socketry/utopia-project/
|
294
|
+
funding_uri: https://github.com/sponsors/ioquatix/
|
292
295
|
post_install_message:
|
293
296
|
rdoc_options: []
|
294
297
|
require_paths:
|