Method: ProjectsGenerator#initialize

Defined in:
lib/cosi-temp/projects-generator.rb

#initialize(author, title, date) ⇒ ProjectsGenerator

Returns a new instance of ProjectsGenerator.



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

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