lowkiq 1.0.0 → 1.0.5

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 Lowkiq
2
- module Queue
3
- module Marshal
4
- class << self
5
- def dump_payload(data)
6
- ::Marshal.dump data
7
- end
8
-
9
- def load_payload(str)
10
- ::Marshal.load str
11
- end
12
-
13
- def dump_data(data)
14
- ::Marshal.dump data
15
- end
16
-
17
- def load_data(str)
18
- ::Marshal.load str
19
- end
20
- end
21
- end
22
- end
23
- end