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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 23c9159d75fdda332b781181b9f67d2ac27ce050
4
- data.tar.gz: c8708185f49d5971598bc07223b3dd826a74357c
3
+ metadata.gz: 58af4b75f2c646d66f7249cab77f1a550b393f00
4
+ data.tar.gz: 88ec49b2a0e62a185956debdf4b39e3be76c8f6f
5
5
  SHA512:
6
- metadata.gz: 89a25a47703e48edb20ec062af27290f28cd4029fa15ebc48b2faaf4a01a8c5559f5db93d525191d77c1491954e9d1edfe813a14e654dd8447df77992b25ba18
7
- data.tar.gz: 4af82d9ce8f48639b99e4b710b5771da4129c3bd792b6b7a67bf0966ac4bf994456ab4eefaed0b2e1c84ff17309fc55e101b7564fc4586d5fae74dcd2d4b67b9
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
@@ -1,3 +1,3 @@
1
1
  module Flok
2
- VERSION = "0.0.64"
2
+ VERSION = "0.0.65"
3
3
  end
@@ -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"]])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flok
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.64
4
+ version: 0.0.65
5
5
  platform: ruby
6
6
  authors:
7
7
  - seo