Class: Chronic::RepeaterMinute

Inherits:
Repeater show all
Defined in:
lib/chronic/repeaters/repeater_minute.rb

Overview

:nodoc:

Constant Summary collapse

MINUTE_SECONDS =
60

Instance Attribute Summary

Attributes inherited from Tag

#type

Instance Method Summary collapse

Methods inherited from Repeater

#<=>, scan, scan_for_day_names, scan_for_day_portions, scan_for_month_names, scan_for_season_names, scan_for_times, scan_for_units

Methods inherited from Tag

#start=

Constructor Details

#initialize(type, options = {}) ⇒ RepeaterMinute

Returns a new instance of RepeaterMinute.



5
6
7
8
# File 'lib/chronic/repeaters/repeater_minute.rb', line 5

def initialize(type, options = {})
  super
  @current_minute_start = nil
end

Instance Method Details

#next(pointer = :future) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/chronic/repeaters/repeater_minute.rb', line 10

def next(pointer = :future)
  super

  unless @current_minute_start
    case pointer
    when :future
      @current_minute_start = Chronic.construct(@now.year, @now.month, @now.day, @now.hour, @now.min + 1)
    when :past
      @current_minute_start = Chronic.construct(@now.year, @now.month, @now.day, @now.hour, @now.min - 1)
    end
  else
    direction = pointer == :future ? 1 : -1
    @current_minute_start += direction * MINUTE_SECONDS
  end

  Span.new(@current_minute_start, @current_minute_start + MINUTE_SECONDS)
end

#offset(span, amount, pointer) ⇒ Object



46
47
48
49
# File 'lib/chronic/repeaters/repeater_minute.rb', line 46

def offset(span, amount, pointer)
  direction = pointer == :future ? 1 : -1
  span + direction * amount * MINUTE_SECONDS
end

#this(pointer = :future) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/chronic/repeaters/repeater_minute.rb', line 28

def this(pointer = :future)
  super

  case pointer
  when :future
    minute_begin = @now
    minute_end = Chronic.construct(@now.year, @now.month, @now.day, @now.hour, @now.min)
  when :past
    minute_begin = Chronic.construct(@now.year, @now.month, @now.day, @now.hour, @now.min)
    minute_end = @now
  when :none
    minute_begin = Chronic.construct(@now.year, @now.month, @now.day, @now.hour, @now.min)
    minute_end = Chronic.construct(@now.year, @now.month, @now.day, @now.hour, @now.min) + MINUTE_SECONDS
  end

  Span.new(minute_begin, minute_end)
end

#to_sObject



55
56
57
# File 'lib/chronic/repeaters/repeater_minute.rb', line 55

def to_s
  super << '-minute'
end

#widthObject



51
52
53
# File 'lib/chronic/repeaters/repeater_minute.rb', line 51

def width
  MINUTE_SECONDS
end