rasti-web 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rasti/web/controller.rb +3 -3
- data/lib/rasti/web/version.rb +1 -1
- 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: 4dc97bda568064082b58014421dcdd44889605ba
|
4
|
+
data.tar.gz: c7f42f2891651026e7f292e35afcda6d3e28c29a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86501e6c1c005f0fb51427604309dba2ed5a6fd140d98c89153745b3b587344e858b3791ba626d14b6e08b2c90f469650b16ff83685702b84d6be88e1356b3ca
|
7
|
+
data.tar.gz: 96325b6a891d9d598e75090cac8470a7d7bda63ae58866ee762b0e8adb44fcc970fd7463eb32a2ac4144d31512ca4ea81a1046fed13c843f581a744625988fef
|
data/lib/rasti/web/controller.rb
CHANGED
@@ -68,15 +68,15 @@ module Rasti
|
|
68
68
|
end
|
69
69
|
|
70
70
|
def before_action_hooks
|
71
|
-
@before_action_hooks ||= superclass.respond_to?(:before_action_hooks) ? superclass.before_action_hooks : {}
|
71
|
+
@before_action_hooks ||= superclass.respond_to?(:before_action_hooks) ? superclass.before_action_hooks.dup : {}
|
72
72
|
end
|
73
73
|
|
74
74
|
def after_action_hooks
|
75
|
-
@after_action_hooks ||= superclass.respond_to?(:after_action_hooks) ? superclass.after_action_hooks : {}
|
75
|
+
@after_action_hooks ||= superclass.respond_to?(:after_action_hooks) ? superclass.after_action_hooks.dup : {}
|
76
76
|
end
|
77
77
|
|
78
78
|
def exception_handlers
|
79
|
-
@exception_handlers ||= superclass.respond_to?(:exception_handlers) ? superclass.exception_handlers : {}
|
79
|
+
@exception_handlers ||= superclass.respond_to?(:exception_handlers) ? superclass.exception_handlers.dup : {}
|
80
80
|
end
|
81
81
|
|
82
82
|
def handled_exceptions
|
data/lib/rasti/web/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rasti-web
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriel Naiman
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-09
|
11
|
+
date: 2017-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|