-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcli_mixin.rb
45 lines (43 loc) · 1023 Bytes
/
cli_mixin.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
module CliMixin
module Loop
def self.included(base)
base.extend ClassMethods
end
module ClassMethods
def cli(args)
if args.present?
args.each do |file|
self.new(File.open(file), file).process
end
else
self.each &:process
end
end
end
end
module Yearly
def self.included(base)
base.extend ClassMethods
end
module ClassMethods
def cli(args)
if args.length == 1
from = Chronic.parse(args[0])
if from
self.new(from.to_date).process
else
self.new(File.open(args[0], 'r')).process
end
elsif args.length == 2
from = Chronic.parse(args[0]).to_date
to = Chronic.parse(args[1]).to_date
(from...to).select { |d| d.month==1 && d.day==1 }.each do |year|
self.new(year).process
end
else
self.new(Date.today).process
end
end
end
end
end