Method: Timebomb::BombFile#read

Defined in:
lib/timebomb.rb

#readObject



180
181
182
183
184
185
186
187
188
# File 'lib/timebomb.rb', line 180

def read
  File.open(path, 'r') do |file|
    data = file.read
    frontmatter = Frontmatter.new(data)
    bomb.title = frontmatter.data.fetch("title")
    bomb.date = frontmatter.data.fetch("date")
    bomb.description = frontmatter.body
  end
end