Skip to content

Commit

Permalink
command options -m and -l compare using Mean Value
Browse files Browse the repository at this point in the history
  • Loading branch information
elvuel committed Nov 18, 2011
1 parent dec2410 commit f5395ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cuke-step-bm/cli.rb
Expand Up @@ -33,11 +33,11 @@ def parse!(args)
options[:act] = [ :within, [from_to.first, from_to.last] ]
end

opts.on("-l", "--less VALUE", Float, "Show the steps time-consuming less than or equal the given") do |v|
opts.on("-l", "--less VALUE", Float, "Show the steps time-consuming less than or equal the given(Mean value)") do |v|
options[:act] = [ :less, v ]
end

opts.on("-m", "--more VALUE", Float, "Show the steps time-consuming more than or equal the given") do |v|
opts.on("-m", "--more VALUE", Float, "Show the steps time-consuming more than or equal the given(Mean value)") do |v|
options[:act] = [ :more, v ]
end

Expand Down

0 comments on commit f5395ce

Please sign in to comment.