Sha256: bc2424c249916ca6f2c48755694df62467a95c8db1f527ebc9eb4fd64add1238
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
module MPXJ # Represents a working week class CalendarWeek < Container attr_reader :days def initialize(parent_project, attribute_values) super(parent_project, attribute_values.slice('name', 'effective_from', 'effective_to')) process_days(attribute_values) end # Retrieve the exception name # # @return [String] the exception name def name attribute_values['name'] end # Retrieve the date from which this working week is in effect # # @return [Time] effective from date def effective_from get_date_value(attribute_values['effective_from']) end # Retrieve the date to which this working week is in effect # # @return [Time] effective to date def effective_to get_date_value(attribute_values['effective_to']) end private def process_days(attribute_values) @days = attribute_values.slice('sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday').map {|name, day| [name, CalendarDay.new(parent_project, day)]}.to_h end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mpxj-13.7.0 | lib/mpxj/calendar_week.rb |