Class: KrakendOpenAPI::JsonReader

Inherits:
Object
  • Object
show all
Defined in:
lib/readers/json_reader.rb

Overview

Reads JSON files

Instance Method Summary collapse

Constructor Details

#initialize(file_path) ⇒ JsonReader

Returns a new instance of JsonReader.



9
10
11
# File 'lib/readers/json_reader.rb', line 9

def initialize(file_path)
  @file_path = file_path
end

Instance Method Details

#readObject



13
14
15
# File 'lib/readers/json_reader.rb', line 13

def read
  JSON.parse(KrakendOpenAPI::FileReader.new(@file_path).read)
end