diff options
author | Joe Robinson <joe@lc8n.com> | 2015-09-23 00:15:06 +0100 |
---|---|---|
committer | Joe Robinson <joe@lc8n.com> | 2015-09-23 00:15:06 +0100 |
commit | 741a8b949b3a1528650a822a3a030a8ba6629bab (patch) | |
tree | f8a9353f8f4b2148c274fbcac80cc95986af016d | |
parent | f753c8d47e147b5645ea1585552e511af5e16622 (diff) |
Add readme
-rw-r--r-- | README.md | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..8039ca2 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +Blaweather + +This is a ruby script for getting weather forecasts. +It will return the current weather, brief forecast for the day and week, and any predictions of rain for the next hour. + +It uses Forecast.io as the source of weather data. + +It uses Google Maps API to convert locations into lat/long co-ordinates which are needed for the forecast. +Any city, postal code, street address, place of interest, etc, should work. + +Installation: + +Run the following to install the required gems - + +gem install + +Alternatively, install the 'json' and 'rest-client' Ruby Gems via your package manager. + +Usage: + +ruby blaweather.rb [location] + +e.g: + +ruby blaweather.rb London +ruby blaweather.rb W1A 1AA +ruby blaweather.r tower bridge + +To do: + +Specify detailed forecasts for specific days +Extra information (wind speed, humidity?) +Forecast further ahead.
\ No newline at end of file |