ruby_native 0.10.10 → 0.10.11
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/generators/ruby_native/templates/ruby_native.yml +15 -0
- data/lib/ruby_native/version.rb +1 -1
- 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: ac513c84f990a0a7e941a473d7716d2378cfc181025bcb64e5254d55ab6670f6
|
|
4
|
+
data.tar.gz: 46bd471f9a9fe986d87f4d4e3bef763a947dc6072c46e3214b34a83218edc77d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b5789805d6d25d8f74b2a2d20d6ec3ae89d3366d440bad818981dfbf74d8b83a02258ceb81831ec729986a3be3c48a02e24a24aca390953af6bf60d6201c7a1
|
|
7
|
+
data.tar.gz: 99109eb6b6c7e6c887ed360129e5e38959d9a848be7320bf6c9a076344d6aedbc13ca69f79982eff55a0298b1957953313ac019f2f1e78cc241dad0b74fd8fc6
|
|
@@ -56,6 +56,21 @@ appearance:
|
|
|
56
56
|
# # Omit to let the system decide.
|
|
57
57
|
# status_bar: light
|
|
58
58
|
|
|
59
|
+
# Show a launch splash while the first screen loads. It holds your launch icon
|
|
60
|
+
# and background_color in frame, with a spinner, until the web content paints.
|
|
61
|
+
# Off by default; set enabled: true to turn it on.
|
|
62
|
+
# https://rubynative.com/docs/appearance#splash-screen
|
|
63
|
+
# splash:
|
|
64
|
+
# enabled: true
|
|
65
|
+
#
|
|
66
|
+
# # Spinner color. Accepts a hex string, or { light:, dark: } for dark mode.
|
|
67
|
+
# # Defaults to a contrast-aware pick from your background_color.
|
|
68
|
+
# spinner_color: "#007AFF"
|
|
69
|
+
#
|
|
70
|
+
# # Status bar content over the splash. Options: light (white) or dark.
|
|
71
|
+
# # Defaults to a contrast-aware pick from your background_color.
|
|
72
|
+
# status_bar: dark
|
|
73
|
+
|
|
59
74
|
# Configure the native tab bar on the bottom of the screen.
|
|
60
75
|
# https://rubynative.com/docs/tabs
|
|
61
76
|
tabs:
|
data/lib/ruby_native/version.rb
CHANGED