Sha256: ac10b6e7f318cce04a46d197c9004ee14ac78f5c174fa3159072d490650d3b87

Contents?: true

Size: 671 Bytes

Versions: 21

Compression:

Stored size: 671 Bytes

Contents

class Date
  
  def start_of_frequency(freq)
    case freq.to_sym
    when :daily     then self
    when :weekly    then self.beginning_of_week
    when :monthly   then self.beginning_of_month
    when :quarterly then self.beginning_of_quarter
    when :annual    then self.beginning_of_year
    when :annually  then self.beginning_of_year
    end
  end
  
  def end_of_frequency(freq)
    case freq.to_sym
    when :daily     then self
    when :weekly    then self.end_of_week
    when :monthly   then self.end_of_month
    when :quarterly then self.end_of_quarter
    when :annual    then self.end_of_year
    when :annually  then self.end_of_year
    end
  end
  
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
quandl_operation-0.1.6 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.1.5 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.1.4 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.1.3 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.1.2 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.1.0 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.0.16 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.0.15 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.0.14 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.0.13 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.0.12 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.0.11 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.0.10 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.0.8 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.0.7 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.0.6 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.0.5 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.0.4 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.0.3 lib/quandl/operation/core_ext/date.rb
quandl_operation-0.0.2 lib/quandl/operation/core_ext/date.rb