hyper-store 1.0.alpha1.8 → 1.0.0.lap28

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,23 +0,0 @@
1
- module Hyperstack
2
- module Legacy
3
- module Store
4
- class InvalidOptionError < StandardError; end
5
- class InvalidOperationError < StandardError; end
6
- class << self
7
- def included(base)
8
- base.include(Hyperstack::Internal::Store::InstanceMethods)
9
- base.extend(Hyperstack::Internal::Store::ClassMethods)
10
- base.extend(Hyperstack::Internal::Store::DispatchReceiver)
11
-
12
- base.singleton_class.define_singleton_method(:__state_wrapper) do
13
- @__state_wrapper ||= Class.new(Hyperstack::Internal::Store::StateWrapper)
14
- end
15
-
16
- base.singleton_class.define_singleton_method(:state) do |*args, &block|
17
- __state_wrapper.define_state_methods(base, *args, &block)
18
- end
19
- end
20
- end
21
- end
22
- end
23
- end
@@ -1,7 +0,0 @@
1
- module Hyperstack
2
- module Legacy
3
- module Store
4
- VERSION = '1.0.alpha1.8'
5
- end
6
- end
7
- end