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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c93ae103b15c010ce99d9ab2d658eb9d734601d6
4
- data.tar.gz: ed5f9df47b0059119f66166ff2353f137589fb36
3
+ metadata.gz: 5a283c8c960aee0c0485446728dfe43fbe2f3b26
4
+ data.tar.gz: d3e0a4f65a9fb5292a9063c6e00372d8d07ef495
5
5
  SHA512:
6
- metadata.gz: 098937f319e098a6905ec8b0d827a0e4f00934c270746271a08c760166eed0730a83dadeb9d842a094457ad1d1039ad04463cd28e708205c65a3f3636af54d73
7
- data.tar.gz: 906eda37061802fa286659d06a026150221455f76feae9b937c82b1264636a886d5d35c083fb037b1edd0a3a5c7ac4c562fdc338710df576704daceb6ac5eff5
6
+ metadata.gz: 0861f966361d9c26fa104a026ad0eee4c1bf8cacec62dc011499336724d131fb68758ddac3c986acb0aae8eeaefaac91a9b6f2af0209cf4f992e447d856b1bd7
7
+ data.tar.gz: 1f403b0bfa9bb450d46ce2dcc06ab8c678241898164f0ff13270153a7fa63367d36490c423fd6ca7ccf32e762f09497da0eebaf4975491ed272733ccf630c5d3
@@ -1,3 +1,3 @@
1
1
  module Mushin
2
- VERSION = "0.3.0"
2
+ VERSION = "0.4.0"
3
3
  end
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mushin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - zotherstupidguy