teepee 0.13.2 → 0.13.3
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/teepee/actionable-commander.rb +4 -4
- data/lib/teepee/commander.rb +2 -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: 4f556594ad5c2ae3e62cacaa5f147134c02f543c
|
4
|
+
data.tar.gz: 9a19f80ccb0b5cc059dd4c375c39387dc6c4effb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 614352f34e00e8b4a1f9fdb346531560bc1cda3da4b0fafbdbedb46cbe9a18ca324e0495c1b5a760cb7592a3a5f44ba91c559b83f854f1c75dccda9f0780883d
|
7
|
+
data.tar.gz: 93e29b888f761fc0397a8d74d8a4b8b2311bab223afee87761305c95829525c42d645ac4f6defd061f103e7d1ae5505e4ae91ebd345b6fdbb1acc5469dcf1bcc
|
@@ -46,10 +46,10 @@ include ERB::Util
|
|
46
46
|
|
47
47
|
module Teepee
|
48
48
|
class ActionableCommander < Commander
|
49
|
-
def initialize
|
50
|
-
@action_view = action_view
|
51
|
-
@controller = controller
|
52
|
-
super
|
49
|
+
def initialize params
|
50
|
+
@action_view = params[:action_view]
|
51
|
+
@controller = params[:controller]
|
52
|
+
super nil
|
53
53
|
end
|
54
54
|
|
55
55
|
def id_command_handler(id,
|
data/lib/teepee/commander.rb
CHANGED