Class: Remocon::JsonNormalizer

Inherits:
Normalizer show all
Defined in:
lib/remocon/normalizer/json_normalizer.rb

Instance Attribute Summary

Attributes inherited from Normalizer

#content

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Normalizer

#initialize, #process

Constructor Details

This class inherits a constructor from Remocon::Normalizer

Class Method Details

.respond_symbolObject



5
6
7
# File 'lib/remocon/normalizer/json_normalizer.rb', line 5

def self.respond_symbol
  Remocon::Type::JSON
end

Instance Method Details

#normalizeObject



17
18
19
# File 'lib/remocon/normalizer/json_normalizer.rb', line 17

def normalize
  @json
end

#validateObject



9
10
11
12
13
14
15
# File 'lib/remocon/normalizer/json_normalizer.rb', line 9

def validate
  str_content = @content.kind_of?(Hash) ? @content.to_json : @content.to_s
  puts str_content
  @json = JSON.parse(str_content).to_json
rescue JSON::ParserError => e
  raise ValidationError, e.message
end