Method: Exporter#initialize

Defined in:
lib/jirametrics/exporter.rb

#initialize(file_system: FileSystem.new) ⇒ Exporter

Returns a new instance of Exporter.



24
25
26
27
28
29
30
31
32
# File 'lib/jirametrics/exporter.rb', line 24

def initialize file_system: FileSystem.new
  @project_configs = []
  @target_path = '.'
  @holiday_dates = []
  @downloading = false
  @file_system = file_system

  timezone_offset '+00:00'
end