24 lines
412 B
Ruby
Raw Normal View History

2020-06-29 10:16:58 -05:00
# frozen_string_literal: true
2020-06-29 09:47:19 -05:00
require "cli/parser"
module Homebrew
module_function
def bump_args
Homebrew::CLI::Parser.new do
usage_banner <<~EOS
`bump`
Display out-of-date brew formulae, the latest version available, and whether a pull request has been opened.
EOS
end
end
def bump
bump_args.parse
2020-06-30 15:11:11 +00:00
puts "command run"
# parse_repology_api()
2020-06-29 09:47:19 -05:00
end
end