iprocess 5.0.3 → 5.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.md +3 -18
  2. data/lib/iprocess/version.rb +1 -1
  3. metadata +1 -1
data/README.md CHANGED
@@ -83,24 +83,9 @@ A serializer is any object that implements load & dump.
83
83
  You can choose what serializer you'd like to use through
84
84
  the `IProcess.serializer=` method:
85
85
 
86
- IProcess.serializer = JSON
87
-
88
- I know JSON, YAML & Marshal(the default) are supported out of
89
- the box because all of them implement both of those methods.
90
- MessagePack does not however but you could easily write
91
- a wrapper:
92
-
93
- require 'msgpack'
94
- obj = Class.new do
95
- def self.dump(obj)
96
- MessagePack.pack(obj)
97
- end
98
-
99
- def self.load(obj)
100
- MessagePack.unpack(obj)
101
- end
102
- end
103
- IProcess.serializer = obj
86
+ ```ruby
87
+ IProcess.serializer = JSON
88
+ ```
104
89
 
105
90
  __PLATFORM SUPPORT__
106
91
 
@@ -1,3 +1,3 @@
1
1
  class IProcess
2
- VERSION = '5.0.3'
2
+ VERSION = '5.0.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iprocess
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.3
4
+ version: 5.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: