class Vulcano::JsonReader
Public Instance Methods
read_from_file(file_path)
click to toggle source
# File lib/vulcano/json_reader.rb, line 3 def read_from_file(file_path) file = File.read(file_path) JSON.parse(file) end