mushin 0.3.0 → 0.4.0
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/mushin/version.rb +1 -1
- data/lib/mushin.rb +4 -4
- 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: 5a283c8c960aee0c0485446728dfe43fbe2f3b26
|
4
|
+
data.tar.gz: d3e0a4f65a9fb5292a9063c6e00372d8d07ef495
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0861f966361d9c26fa104a026ad0eee4c1bf8cacec62dc011499336724d131fb68758ddac3c986acb0aae8eeaefaac91a9b6f2af0209cf4f992e447d856b1bd7
|
7
|
+
data.tar.gz: 1f403b0bfa9bb450d46ce2dcc06ab8c678241898164f0ff13270153a7fa63367d36490c423fd6ca7ccf32e762f09497da0eebaf4975491ed272733ccf630c5d3
|
data/lib/mushin/version.rb
CHANGED
data/lib/mushin.rb
CHANGED
@@ -16,11 +16,11 @@ module Mushin
|
|
16
16
|
end
|
17
17
|
|
18
18
|
class Ext
|
19
|
-
def initialize
|
20
|
-
raise NotImplementedError, "Mushin Extenstions implement :initialize"
|
19
|
+
def initialize app
|
20
|
+
raise NotImplementedError, "Mushin Extenstions implement :initialize that takes an app"
|
21
21
|
end
|
22
|
-
def call
|
23
|
-
raise NotImplementedError, "Mushin Extenstions implement :call"
|
22
|
+
def call env
|
23
|
+
raise NotImplementedError, "Mushin Extenstions implement :call that takes an env"
|
24
24
|
end
|
25
25
|
end
|
26
26
|
end
|