Class: TimelineSetter::CLI

Inherits:
Object
  • Object
show all
Defined in:
lib/timeline_setter/cli.rb

Instance Method Summary collapse

Constructor Details

#initializeCLI

Returns a new instance of CLI.



6
7
8
# File 'lib/timeline_setter/cli.rb', line 6

def initialize
  parse_options!
end

Instance Method Details

#compile!Object



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/timeline_setter/cli.rb', line 71

def compile!
  if @options[:assets]
    FileUtils.cp_r(Dir.glob("#{TimelineSetter::ROOT}/public/*"), outdir)
  end

  File.open(timeline_page_path, 'w+') do |doc|
    doc.write html
  end

  puts "== Files copied to #{outdir}"

  if @options[:open]
    puts "== Opening ..."
    %x[ open #{timeline_page_path} ]
  end
end

#eventsObject



55
56
57
# File 'lib/timeline_setter/cli.rb', line 55

def events
  TimelineSetter::Parser.new sheet
end

#htmlObject



59
60
61
# File 'lib/timeline_setter/cli.rb', line 59

def html
  TimelineSetter::Timeline.new(events.events).send(@options[:min] ? :timeline_min : :timeline)
end

#outdirObject



63
64
65
# File 'lib/timeline_setter/cli.rb', line 63

def outdir
  @options[:output] ? @options[:output] : "#{`pwd`.strip}/"
end

#parse_options!Object



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
46
47
48
49
# File 'lib/timeline_setter/cli.rb', line 10

def parse_options!
  @options = {}
  option_parser = OptionParser.new do |opts|
    opts.banner = <<-BANNER
      TimelineSetter: A tool to generate HTML timelines from CSVs.

      Usage:
    BANNER

    opts.on('-c', '--csv CSV', 'CSV input file') do |c|
      @options[:csv] = c
    end
    opts.on('-o', '--output OUTPUT', 'Output directory to install timeline into.') do |o|
      @options[:output] = o
    end
    opts.on('-a', '--with-assets', 'Output timeline supporting assets as well') do |a|
      @options[:assets] = a
    end
    opts.on('-O', '--open', 'Open generated timeline in a browser') do |o|
      @options[:open] = o
    end
    opts.on('-m', '--min', 'Create a minified one-page version of the timeline') do |m|
      @options[:min] = m
    end


    opts.on_tail("-h", "--help", "Show this message") do
      puts opts
      exit
    end
  end
  option_parser.parse!

  if @options.empty?
    puts option_parser.on_tail
    exit
  else
    compile!
  end
end

#sheetObject



51
52
53
# File 'lib/timeline_setter/cli.rb', line 51

def sheet
  File.open(@options[:csv]).read
end

#timeline_page_pathObject



67
68
69
# File 'lib/timeline_setter/cli.rb', line 67

def timeline_page_path
  File.join(outdir, 'timeline.html')
end