You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
opts.on('--hourly TYPE',hourly_types,"Request hourly output type (#{hourly_types[0..4].join(', ')},","#{hourly_types[5..-1].join(', ')}); can be called multiple times")do |t|
60
+
opts.on('--hourly TYPE',timeseries_types,"Request hourly output type (#{timeseries_types[0..4].join(', ')},","#{timeseries_types[5..-1].join(', ')}); can be called multiple times")do |t|
61
61
options[:hourly_outputs] << t
62
62
end
63
63
64
+
options[:daily_outputs]=[]
65
+
opts.on('--daily TYPE',timeseries_types,"Request daily output type (#{timeseries_types[0..4].join(', ')},","#{timeseries_types[5..-1].join(', ')}); can be called multiple times")do |t|
66
+
options[:daily_outputs] << t
67
+
end
68
+
69
+
options[:monthly_outputs]=[]
70
+
opts.on('--monthly TYPE',timeseries_types,"Request monthly output type (#{timeseries_types[0..4].join(', ')},","#{timeseries_types[5..-1].join(', ')}); can be called multiple times")do |t|
71
+
options[:monthly_outputs] << t
72
+
end
73
+
74
+
options[:timestep_outputs]=[]
75
+
opts.on('--timestep TYPE',timeseries_types,"Request timestep output type (#{timeseries_types[0..4].join(', ')},","#{timeseries_types[5..-1].join(', ')}); can be called multiple times")do |t|
76
+
options[:timestep_outputs] << t
77
+
end
78
+
64
79
options[:version]=false
65
80
opts.on('-v','--version','Reports the version')do |t|
0 commit comments