lib/cryptoform/storage_backends/backend.rb in cryptoform-0.1.0 vs lib/cryptoform/storage_backends/backend.rb in cryptoform-0.2.0

- old
+ new

@@ -4,8 +4,13 @@ def initialize(state_name, **params) @state_name = state_name @params = params end - def read = raise NotImplementedError - def write(data) = raise NotImplementedError + def read + raise NotImplementedError + end + + def write(data) + raise NotImplementedError + end end