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

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.
@@ -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