chawk 0.1.15 → 0.1.16

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
- require 'store'
2
-
3
- module Chawk
4
- # The Value Store - where time series string data is stored and retrieved through an instance of Chawk::Addr.
5
- class Vaddr
6
-
7
- include Chawk::Store
8
-
9
- private
10
- def coll
11
- @node.values
12
- end
13
-
14
- def model
15
- Chawk::Models::Value
16
- end
17
-
18
- def stored_type
19
- String
20
- end
21
- end
22
-
23
- end