mushin 0.50.0 → 0.51.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/ext.rb +0 -10
- data/lib/mushin/version.rb +1 -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: 8b998fb075c66bec0eaf9732ceed7c04dfccdf73
|
|
4
|
+
data.tar.gz: 89e62ff9ed11613fe2943e573b0d9fe92ffb7361
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8bb54ea27f6c04dfafc1277aea4428011049855c3922b35ea18847299be682729a05f80a75b32963d7451328e67c76da90d037e0a2523b64d570b3aa2afb1086
|
|
7
|
+
data.tar.gz: 32f787a05535dd80690da1d67cb2477026456ed5b1592daf0a1f933cf8fce5d2469bc83b3852e0cc1693a0ff3d2f642700be9b717e5ccd8fc6f49a6d77640848
|
data/lib/mushin/ext.rb
CHANGED
|
@@ -7,16 +7,6 @@ module Mushin
|
|
|
7
7
|
def call env
|
|
8
8
|
raise NotImplementedError, "Mushin Extenstions implement :call that takes an env"
|
|
9
9
|
end
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
def check_params key
|
|
13
|
-
if @params.has_key?(key) && !@params[key].nil? then
|
|
14
|
-
return true
|
|
15
|
-
else
|
|
16
|
-
return false
|
|
17
|
-
end
|
|
18
|
-
end
|
|
19
|
-
|
|
20
10
|
end
|
|
21
11
|
end
|
|
22
12
|
end
|
data/lib/mushin/version.rb
CHANGED