We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 903e857 commit fd89055Copy full SHA for fd89055
README.md
@@ -10,20 +10,20 @@ The official repository is (https://github.com/jsog/jsog-ruby).
10
11
Jsog is available from rubygems.org:
12
13
- $ gem install jsog
+ $ gem install jsog
14
15
## Usage
16
17
This code mimics the standard *JSON* ruby package:
18
19
- require 'jsog'
+ require 'jsog'
20
21
string = JSOG.dump(cyclicGraph);
22
cyclicGraph = JSOG.parse(string);
23
24
It can be used to convert between object graphs directly:
25
26
27
28
jsogStructure = JSOG.encode(cyclicGraph); // has { '@ref': 'ID' } links instead of cycles
29
cyclicGraph = JSOG.decode(jsogStructure);
0 commit comments