module Quarter::Methods

Public Instance Methods

Q1(year) click to toggle source
# File lib/quarter.rb, line 177
def Q1(year)
  Quarter.new(year, 1)
end
Q2(year) click to toggle source
# File lib/quarter.rb, line 181
def Q2(year)
  Quarter.new(year, 2)
end
Q3(year) click to toggle source
# File lib/quarter.rb, line 185
def Q3(year)
  Quarter.new(year, 3)
end
Q4(year) click to toggle source
# File lib/quarter.rb, line 189
def Q4(year)
  Quarter.new(year, 4)
end