Last active
August 29, 2015 14:05
-
-
Save sshaw/53c27b148e903a07e494 to your computer and use it in GitHub Desktop.
Small DSL for idiomatic date parsing and formatting in Ruby. => Moved to https://github.com/sshaw/yymmdd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "date" | |
# Small DSL for idiomatic date parsing and formatting in Ruby. | |
# https://gist.github.com/sshaw/53c27b148e903a07e494 | |
# | |
# Usage: | |
# | |
# include YYMMDD | |
# date = Date.today | |
# | |
# puts yy/mm | |
# puts ymd(411207) | |
# puts yyyy.mm.dd(date) | |
# puts yyyy.mm.dd("1941.12.07") | |
# puts mm.dd.yy("11.22.63") | |
# puts dd/mm/yy("21/11/79") | |
# puts dd/mm/yy(date) | |
# puts mm/dd/yy("11/21/99") | |
# puts mm/dd/yyyy("11/21/1999") | |
# puts m-d-y("11-21-99") | |
# puts mm-dd-yyyy("11-21-1999") | |
# | |
module YYMMDD | |
FORMATS = %w[yyyy yy y mm m dd d] | |
FORMATS.each do |abbr| | |
define_method(abbr) { |date = nil| DatePart.new(abbr, date) } | |
module_function abbr | |
end | |
def yymmdd(date) | |
yy << mm << dd(date) | |
end | |
module_function :yymmdd | |
alias_method :ymd, :yymmdd | |
module_function :ymd | |
def yyyymmdd(date) | |
yyyy << mm << dd(date) | |
end | |
module_function :yyyymmdd | |
alias_method :yyyymd, :yyyymmdd | |
module_function :yyyymd | |
class DatePart # :nodoc: | |
STRPTIME = { | |
"y" => "%y", | |
"yy" => "%y", | |
"yyyy" => "%Y", | |
"m" => "%m", | |
"mm" => "%m", | |
"d" => "%d", | |
"dd" => "%d" | |
}.freeze | |
attr :format | |
attr :date | |
def initialize(format, date) | |
@format = STRPTIME[format] | |
@date = date | |
@parts = [[self, ""]] | |
end | |
def /(date = nil) | |
process("/", date) | |
end | |
def -(date = nil) | |
process("-", date) | |
end | |
def << (date = nil) | |
process("", date) | |
end | |
FORMATS.each do |abbr| | |
define_method(abbr) { |date = nil| process(".", DatePart.new(abbr, date)) } | |
end | |
def to_s | |
build_date.to_s | |
end | |
private | |
def process(tok, part) | |
@parts << [part, tok] | |
return build_date if part.date | |
self | |
end | |
def build_date | |
date = @parts[-1][0].date || Date.today | |
fmt = @parts.map { |part, tok| "#{tok}#{part.format}" }.join("") | |
date = date.to_s if date.is_a?(Fixnum) | |
date.is_a?(Date) ? date.strftime(fmt) : Date.strptime(date, fmt) | |
end | |
end | |
end | |
if $0 == __FILE__ | |
include YYMMDD | |
date = Date.today | |
puts yy/mm | |
puts ymd(411207) | |
puts yyyy.mm.dd(date) | |
puts yyyy.mm.dd("1941.12.07") | |
puts mm.dd.yy("11.22.63") | |
puts dd/mm/yy("21/11/79") | |
puts dd/mm/yy(date) | |
puts mm/dd/yy("11/21/99") | |
puts mm/dd/yyyy("11/21/1999") | |
puts m-d-y("11-21-99") | |
puts mm-dd-yyyy("11-21-1999") | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment