Support additional options as part of the Config

This commit adds the ability to add a closure suitable for adding
additional options. It is expected to allow someone to set global,
module or class level variables so they can pass changes/options
suitable for making decisions.
This commit is contained in:
Ben Jolitz 2016-03-22 14:13:49 -07:00
parent 839d120a50
commit 1f809c68c8
3 changed files with 21 additions and 1 deletions

View file

@ -28,4 +28,19 @@ describe "Config" do
config.add_handler CustomTestHandler.new
config.handlers.size.should eq(5)
end
it "adds custom options" do
config = Kemal.config
ARGV.push("--test")
ARGV.push("FOOBAR")
$test_option = nil
config.on_options = ->(parser : OptionParser) {
parser.on("--test TEST_OPTION", "Test an option") do |opt|
$test_option = opt
end
}
Kemal::CLI.new
$test_option.should eq("FOOBAR")
end
end