hyper-store 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/hyper-store/version.rb +1 -1
- data/lib/hyperloop/application/boot.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c7a734c084e864ca2c1d88aa5d89a68a4c03bed
|
4
|
+
data.tar.gz: 3366e1e947296c941250067b4a090f92c47041ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: add208b28717ae9331d5a83b9255aa1d7713131723c1d585e5fb295f7f7c3855d89834298ca5af27c099d623e968b07124bf1e89019ff3893a3c9d69ba3f5c5b
|
7
|
+
data.tar.gz: 573c48f25dd88f50c85c7aca0d8735a4369a0bc1b91db8a3eda15a1e12f069a8fbae0fe6d2049fbc2287c55e24ad2fc0279ded8af04c8712a12c94b2d533fb40
|
data/lib/hyper-store/version.rb
CHANGED
@@ -6,15 +6,15 @@ module Hyperloop
|
|
6
6
|
class << self
|
7
7
|
def on_dispatch(&block)
|
8
8
|
receivers << block
|
9
|
-
end
|
9
|
+
end unless method_defined? :on_dispatch
|
10
10
|
|
11
11
|
def receivers
|
12
12
|
# use the force: true option so that system code needing to receive
|
13
13
|
# boot will NOT be erased on the next Hyperloop::Context.reset!
|
14
14
|
Hyperloop::Context.set_var(self, :@receivers, force: true) { [] }
|
15
|
-
end
|
15
|
+
end unless method_defined? :receivers
|
16
16
|
end
|
17
|
-
end
|
17
|
+
end
|
18
18
|
class Application
|
19
19
|
class Boot < Operation
|
20
20
|
class ReactDummyParams
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hyper-store
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- catmando
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-
|
12
|
+
date: 2017-04-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: hyperloop-config
|