我有一个计算很多东西的程序。虽然我通过ruby code.rb运行代码,但一切都还可以。问题开始时,我想通过命令行运行它带有附加选项:ruby code.rb --time 201712121100.
有问题的代码如下:
include Options #here I have some options to choose, like --time
def calculate_p(time, mode)
if mode
calculator = calc1
else
calculator = calc2
end
calculate_t(time, calculator)
end
def calculate_t(time, calculator)
date_ymd = time.strftime("%Y%m%d")
time_hm = time.strftime("%H%M")
calculator
.with(date_ymd, time_hm)
.run do |result|
if result.ok?
result.stdout.pop.split.first
else
msgw("Program returned with errors.", :error)
msgw("stdout: %s; stderr: %s" % [result.stdout, result.stderr], :error)
false
end
end
end
time = Options.get('--time')
.andand do |time_op|
msgw('Taking time from command line arguments') do
time_op.pop.andand
end
end || msgw('Calculating time for now.') do
Time.now.utc
end || abort
calc=calculate_p(time, mode)
msgw
只是定义打印消息。
mode
需要true
或false
个值。
我收到了一个错误:
“
calculate_t
:strftime
("201712121100":String
)的未定义方法NoMethodError
”
我做错了什么?为什么在给出特定时间的情况下使用Time.now.utc
是否有效?
我还从这里查看了解决方案Rails undefined method `strftime' for "2013-03-06":String 和Date.parse()给出了相同的错误。
答案 0 :(得分:2)
问题在于:
time_op.pop.andand
从命令行中取出的 time_op
是一个字符串,您需要一个Time
实例。得到它,使用DateTime#strptime
:
DateTime.strptime(time_op.pop, "%Y%m%d%H%M").to_time.andand