Class: WeatherSage::CLI::Commands::ForecastCommand

Inherits:
BaseForecastCommand show all
Defined in:
lib/weather-sage/cli/commands/forecast.rb

Overview

Implementation of forecast command.

Constant Summary collapse

HELP =

Help for this command.

Used by the help command.

{
  line: '
    Get weather forecast for address.
  '.strip,

  full: [
    'Get weather forecast for address.',
    '',
    'Use --full to see additional columns.',
  ].join("\n")
}.freeze
FORECAST_METHOD =

Forecast method.

Used by BaseForecastCommand to call correct forecast method.

:forecast

Method Summary

Methods inherited from BaseForecastCommand

#initialize, #run

Methods inherited from Command

#initialize, run, #run

Constructor Details

This class inherits a constructor from WeatherSage::CLI::Commands::BaseForecastCommand