lowkiq 1.0.0 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -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