Module: EndOfLife::Options

Defined in:
lib/end_of_life/options.rb

Class Method Summary collapse

Class Method Details

.from(argv) ⇒ Object



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
46
47
48
49
50
51
52
53
# File 'lib/end_of_life/options.rb', line 5

def self.from(argv)
  options = {max_eol_date: Date.today}

  OptionParser.new do |opts|
    options[:parser] = opts

    opts.banner = "Usage: end_of_life [options]"

    opts.on("--exclude=NAME,NAME2", Array, "Exclude repositories containing a certain word in its name. You can specify up to five words.") do |excludes|
      options[:excludes] = excludes.first(5)
    end

    opts.on("--public-only", "Searches only public repostories") do
      options[:visibility] = :public
    end

    opts.on("--private-only", "Searches only private repostories") do
      options[:visibility] = :private
    end

    opts.on("--repo=USER/REPO", "--repository=USER/REPO", "Searches a specific repostory") do |repository|
      options[:repository] = repository
    end

    opts.on("--org=ORG,ORG2...", "--organization=ORG,ORG2", Array, "Searches within specific organizations") do |organizations|
      options[:organizations] = organizations
    end

    opts.on("-u NAME", "--user=NAME", "Sets the user used on the repository search") do |user|
      options[:user] = user
    end

    opts.on("--max-eol-days-away NUMBER", "Sets the maximum number of days away a version can be from EOL. It defaults to 0.") do |days|
      options[:max_eol_date] = Date.today + days.to_i.abs
    end

    opts.on("-v", "--version", "Displays end_of_life version") do
      options[:command] = :version
    end

    opts.on("-h", "--help", "Displays this help") do
      options[:command] = :help
    end
  end.parse!(argv)

  options
rescue OptionParser::ParseError => e
  {command: :print_error, error: e}
end