Module: IntellisenseRuby::JSON

Defined in:
lib/intellisense-ruby/json.rb

Overview

JSON Wrapper module using MultiJson 1.3

Class Method Summary collapse

Class Method Details

.dump(*args) ⇒ Object



10
11
12
# File 'lib/intellisense-ruby/json.rb', line 10

def self.dump(*args)
  MultiJson.dump(*args)
end

.load(*args) ⇒ Object



14
15
16
# File 'lib/intellisense-ruby/json.rb', line 14

def self.load(*args)
  MultiJson.load(*args)
end