Class: DoubleEntry::Reporting::Configuration Private

Inherits:
Object
  • Object
show all
Defined in:
lib/double_entry/reporting.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

:nodoc:



23
24
25
26
# File 'lib/double_entry/reporting.rb', line 23

def initialize #:nodoc:
  @start_of_business = Time.new(1970, 1, 1)
  @first_month_of_financial_year = 7
end

Instance Attribute Details

#first_month_of_financial_yearObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



21
22
23
# File 'lib/double_entry/reporting.rb', line 21

def first_month_of_financial_year
  @first_month_of_financial_year
end

#start_of_businessObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



21
22
23
# File 'lib/double_entry/reporting.rb', line 21

def start_of_business
  @start_of_business
end