flok 0.0.64 → 0.0.65
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/docs/mod/debug.md +3 -0
- data/lib/flok/version.rb +1 -1
- data/spec/kern/controller_spec.rb +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58af4b75f2c646d66f7249cab77f1a550b393f00
|
4
|
+
data.tar.gz: 88ec49b2a0e62a185956debdf4b39e3be76c8f6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db62e8d340aeae8645db9210d6bbefaef8120c45580dd973967951509abad2c2701c5ef3c662e434866f341355d6f9ace279fd72b064050c385960b00ea87de1
|
7
|
+
data.tar.gz: 631469402017511a3d0fc1df7985b577ac965973f94718635f6e021cab426a7650b4c22951f9cfb2036e17ce4c562454fa656549449c4873ff9b957f24e7fee0
|
data/docs/mod/debug.md
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
#Debug (debug.js)
|
2
2
|
The debug module provides information to the client (driver) module such as events that are available for a particular view.
|
3
3
|
|
4
|
+
**This is depreciated and may no longer works correctly especially with view hierarchies that contain push / pop semantics. (Multiple layers in push
|
5
|
+
/pop hierarchies will not reveal push / pop semantics, it will look flat)**
|
6
|
+
|
4
7
|
### Driver Messages
|
5
8
|
`if_debug_assoc(base, key, value)` - Associate a key and value for an object called base (usually a pointer or string)
|
6
9
|
|
data/lib/flok/version.rb
CHANGED
@@ -383,9 +383,12 @@ RSpec.describe "kern:controller_spec" do
|
|
383
383
|
#The controller's instance info `action` field was changed back to the old action
|
384
384
|
expect(dump["controller_info"]["action"]).to eq("my_action")
|
385
385
|
|
386
|
-
#The controller's embeds is now restored back to the original embeds from 'my_action'
|
386
|
+
#The controller's instance info embeds is now restored back to the original embeds from 'my_action'
|
387
387
|
expect(dump["controller_info"]["embeds"]).to eq(dump["my_action_embeds_original_array"])
|
388
388
|
|
389
|
+
#The controller's instance info stack is now blank
|
390
|
+
expect(dump["controller_info"]["stack"]).to eq([])
|
391
|
+
|
389
392
|
#Does dealloc the pushed controller, we can check to see if the view was destroyed
|
390
393
|
@driver.ignore_up_to "if_free_view"
|
391
394
|
@driver.mexpect("if_free_view", [dump["my_controller3_main_view_bp"]])
|