Class: MeetingsGenerator

Inherits:
TempGenerator show all
Defined in:
lib/cosi-temp/meetings-generator.rb

Instance Attribute Summary

Attributes inherited from TempGenerator

#date, #file_array, #filename, #title

Instance Method Summary collapse

Methods inherited from TempGenerator

#to_file

Constructor Details

#initialize(date) ⇒ MeetingsGenerator

Returns a new instance of MeetingsGenerator.



4
5
6
7
8
9
# File 'lib/cosi-temp/meetings-generator.rb', line 4

def initialize(date)
  super(date)
  @title = gen_title
  @filename = gen_filename
  @file_array = create_file
end