gloo 6.2.0 → 6.2.1
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/README.md +6 -0
- data/lib/VERSION +1 -1
- data/lib/VERSION_NOTES +4 -0
- data/lib/gloo/app/engine.rb +8 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4dee07bac4d22ecf1656cd257c1f3ce3ad12ae334377263faf5918d7f1433e20
|
|
4
|
+
data.tar.gz: 6310ec46fcf0f0da75b874b984f169566c5d7d52ce4d21c2646134c5036e2205
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1bd139bbe32577a3811247d7d04b0b270796a447b1179c4b62a337526d0c57b5610e0636fa08e8a6aad920d8435e372d7763038d6e759637adae92d9c6b7a3af
|
|
7
|
+
data.tar.gz: e4edde70f119ab15b319910ea1b128b6a862f8be723b27f7d9e8d7acf4c6cf98f8f6a62d2114203aedcaa9e89625b530d88334be65bd8d6ecf3d1221bc775ad9
|
data/README.md
CHANGED
|
@@ -50,6 +50,12 @@ Read in order for a guided tour of the language, top to bottom, or jump straight
|
|
|
50
50
|
11. [A Trivial Web App](docs/web_app.md) — a two-page "Hello World" built with the `gloo-web` core library
|
|
51
51
|
|
|
52
52
|
|
|
53
|
+
## Related Projects
|
|
54
|
+
|
|
55
|
+
- [gloo sample code](https://github.com/ecrane/gloo_sample_code)
|
|
56
|
+
- [gloo core libraries](https://github.com/ecrane/gloo_core_libraries)
|
|
57
|
+
|
|
58
|
+
|
|
53
59
|
## License
|
|
54
60
|
|
|
55
61
|
This project is licensed under the [MIT License](LICENSE.txt) — see
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.2.
|
|
1
|
+
6.2.1
|
data/lib/VERSION_NOTES
CHANGED
data/lib/gloo/app/engine.rb
CHANGED
|
@@ -192,8 +192,16 @@ module Gloo
|
|
|
192
192
|
|
|
193
193
|
#
|
|
194
194
|
# Get the setting for the start_with file and open it.
|
|
195
|
+
# In App mode, the configured start_with setting is ignored -
|
|
196
|
+
# we always look for a start.gloo at the root of the app
|
|
197
|
+
# (project_path was already overridden to the app path).
|
|
195
198
|
#
|
|
196
199
|
def open_start_file
|
|
200
|
+
if @mode == Mode::APP
|
|
201
|
+
@persist_man.load( 'start' )
|
|
202
|
+
return
|
|
203
|
+
end
|
|
204
|
+
|
|
197
205
|
name = @settings.start_with
|
|
198
206
|
@persist_man.load( name ) if name
|
|
199
207
|
end
|