Sha256: f5187f81addce3e95fd6288f85b8c9e35538d1338d44febad7c02b5c67c0c8cd
Contents?: true
Size: 277 Bytes
Versions: 1
Compression:
Stored size: 277 Bytes
Contents
require 'active_support' require 'active_support/core_ext/date/calculations' module WhatDate class Client Date::DAYS_INTO_WEEK.each do |day, inc| define_method(day) do |ref_date=nil| ref_date ||= Date.today ref_date.monday.days_since(inc) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
what_date-0.1.0 | lib/what_date/client.rb |