simple_open_weather_map 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +60 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/simple_open_weather_map.rb +43 -0
- data/lib/simple_open_weather_map/config.rb +59 -0
- data/lib/simple_open_weather_map/http_connection.rb +22 -0
- data/lib/simple_open_weather_map/report.rb +64 -0
- data/lib/simple_open_weather_map/version.rb +3 -0
- data/lib/simple_open_weather_map/weather.rb +72 -0
- data/simple_open_weather_map.gemspec +36 -0
- metadata +131 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c6da0559f9a0ad5553267ee56edb26c0b9b21a74
|
4
|
+
data.tar.gz: 9b72b0e4d27787e0772387da3e7e6582628a7434
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 03cffaa8f500e3cddc9add26dae251d1f3f6ed28050c8d4a7572f3e0472f81984b9ee9a4ca97fdd0efdd5df239b50189dd1722e05ebaf95327b14481cb66e4f2
|
7
|
+
data.tar.gz: fba4347b32bd3bfdb577a7712d57448748d25e9244843d7b7afd4eb8e30c6d61a9b95be8d9ecdd3dca99d28405f8f82ab5197836795fd270918637bca3a21498
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at TODO: Write your email address. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 TODO: Write your name
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
# SimpleOpenWeatherMap
|
2
|
+
|
3
|
+
A simple ruby language library for the OpenWeatherMap API.
|
4
|
+
This library doesn't have functions enough to call the OpenWeatherMap API because I basically made this to display current weather and forecast to my desktop using the GeekTool.
|
5
|
+
But I think this library helps you to call the OpenWeatherMap API with using or extending Openweathermap::Weather class.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'simple_open_weather_map'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install simple_open_weather_map
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
require 'simple_open_weather_map'
|
27
|
+
|
28
|
+
conf = simple_open_weather_map::Config({
|
29
|
+
app_id: "your APPID", # Get from OpenWeatherMap.org",
|
30
|
+
city_id: 1234, # integer: specify city id.
|
31
|
+
unit: "metric", # metric or kelvin. Default: metric
|
32
|
+
save_icon: true, # if you set true, you have to specify save_icon_dir. Default: true
|
33
|
+
save_icon_dir: "~/Pictures", # Specify directory path to save weather icon. Default: /tmp
|
34
|
+
forecast_days: 7, # Specify number of days to get forecast. Default: 7
|
35
|
+
})
|
36
|
+
weather = simple_open_weather_map::Weather.new
|
37
|
+
current = weather.current(conf) # returns json formatted content.
|
38
|
+
forecast = weather.forecast(conf) # returns json formatted content.
|
39
|
+
icon_path = weather.icon_path # returns path of current weather icon.
|
40
|
+
```
|
41
|
+
|
42
|
+
See the following site about json response.
|
43
|
+
|
44
|
+
* [current](http://openweathermap.org/current#current_JSON)
|
45
|
+
* [forecast](http://openweathermap.org/forecast16#JSON)
|
46
|
+
|
47
|
+
## Development
|
48
|
+
|
49
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
50
|
+
|
51
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
52
|
+
|
53
|
+
## Contributing
|
54
|
+
|
55
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/whize/simple_open_weather_map. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
56
|
+
|
57
|
+
|
58
|
+
## License
|
59
|
+
|
60
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "simple_open_weather_map"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
require "simple_open_weather_map/version"
|
2
|
+
require 'simple_open_weather_map/config'
|
3
|
+
require 'simple_open_weather_map/report'
|
4
|
+
require 'simple_open_weather_map/weather'
|
5
|
+
require 'simple_open_weather_map/http_connection'
|
6
|
+
|
7
|
+
module SimpleOpenWeatherMap
|
8
|
+
#
|
9
|
+
# OpenWeatherMap API URL
|
10
|
+
#
|
11
|
+
BASE_URL = 'http://api.openweathermap.org/data/2.5'.freeze
|
12
|
+
|
13
|
+
#
|
14
|
+
# Weather icon url template.
|
15
|
+
# You must bind icon name into this strings.
|
16
|
+
#
|
17
|
+
ICON_URL_TEMPLATE = 'http://openweathermap.org/img/w/%s.png'.freeze
|
18
|
+
|
19
|
+
#
|
20
|
+
# Url path for current
|
21
|
+
#
|
22
|
+
PATH_CURRENT = '/weather'.freeze
|
23
|
+
|
24
|
+
#
|
25
|
+
# Url path for forecast daily
|
26
|
+
#
|
27
|
+
PATH_FORECAST = '/forecast/daily'.freeze
|
28
|
+
|
29
|
+
#
|
30
|
+
# Parameter value for unit (kelvin)
|
31
|
+
#
|
32
|
+
UNIT_KELVIN = 'kelvin'.freeze
|
33
|
+
|
34
|
+
#
|
35
|
+
# Parameter value for unit (metric)
|
36
|
+
#
|
37
|
+
UNIT_METRIC = 'metric'.freeze
|
38
|
+
|
39
|
+
#
|
40
|
+
# Default number of days to get forecast. 7 days
|
41
|
+
#
|
42
|
+
FORECAST_DAYS = 7
|
43
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
class SimpleOpenWeatherMap::Config
|
4
|
+
attr_accessor :app_id, :unit, :forecast_days, :save_icon_dir, :city_id
|
5
|
+
|
6
|
+
def initialize(config = {})
|
7
|
+
raise "Hash only." unless config.is_a?(Hash)
|
8
|
+
|
9
|
+
validate(config)
|
10
|
+
parse(default_config.merge(config))
|
11
|
+
end
|
12
|
+
|
13
|
+
def save_icon?
|
14
|
+
@save_icon || false
|
15
|
+
end
|
16
|
+
|
17
|
+
protected
|
18
|
+
|
19
|
+
def default_config
|
20
|
+
{
|
21
|
+
city_id: 1850147,
|
22
|
+
unit: "metric",
|
23
|
+
forecast_days: 7,
|
24
|
+
save_icon: true,
|
25
|
+
save_icon_dir: "/tmp",
|
26
|
+
}
|
27
|
+
end
|
28
|
+
|
29
|
+
def parse(config = {})
|
30
|
+
config.each_key do | key |
|
31
|
+
case key
|
32
|
+
when :app_id then
|
33
|
+
@app_id = config[:app_id]
|
34
|
+
when :city_id then
|
35
|
+
@city_id = config[:city_id]
|
36
|
+
when :unit then
|
37
|
+
@unit = config[:unit]
|
38
|
+
when :forecast_days then
|
39
|
+
@forecast_days = config[:forecast_days]
|
40
|
+
when :save_icon then
|
41
|
+
@save_icon = config[:save_icon]
|
42
|
+
when :save_icon_dir then
|
43
|
+
@save_icon_dir = config[:save_icon_dir]
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
private
|
49
|
+
|
50
|
+
def mandatory_key
|
51
|
+
[:app_id, :city_id]
|
52
|
+
end
|
53
|
+
|
54
|
+
def validate(config = {})
|
55
|
+
raise ArgumentError.new("Value of app_id key is mandatory.") unless config.has_key?(:app_id)
|
56
|
+
# raise ArgumentError.new("Value of city_id key is mandatory") unless config.has_key?(:city_id)
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'uri'
|
2
|
+
require 'httpclient'
|
3
|
+
|
4
|
+
class SimpleOpenWeatherMap::HttpConnection
|
5
|
+
|
6
|
+
def initialize(uri)
|
7
|
+
@uri = uri
|
8
|
+
end
|
9
|
+
|
10
|
+
def get_contents(params = {})
|
11
|
+
client = ::HTTPClient.new
|
12
|
+
client.get_content(url_with_params(params))
|
13
|
+
end
|
14
|
+
|
15
|
+
protected
|
16
|
+
|
17
|
+
def url_with_params(params = {})
|
18
|
+
encoded_params = URI.encode_www_form(params)
|
19
|
+
[@uri, encoded_params].join("?")
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
|
2
|
+
class SimpleOpenWeatherMap::Report
|
3
|
+
attr_accessor :config, :city_id
|
4
|
+
|
5
|
+
def initialize(config)
|
6
|
+
if config.is_a?(Hash) then
|
7
|
+
@config = SimpleOpenWeatherMap::Config.new(config)
|
8
|
+
elsif config.is_a?(SimpleOpenWeatherMap::Config) then
|
9
|
+
@config = config
|
10
|
+
else
|
11
|
+
raise "config should be Hash or SimpleOpenWeatherMap::Config object."
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
public
|
16
|
+
|
17
|
+
def current
|
18
|
+
weather.current(@config)
|
19
|
+
end
|
20
|
+
|
21
|
+
def forecast
|
22
|
+
weather.forecast(@config)
|
23
|
+
end
|
24
|
+
|
25
|
+
def puts_report
|
26
|
+
puts format_current(current)
|
27
|
+
puts ""
|
28
|
+
|
29
|
+
cnt = 0
|
30
|
+
forecast["list"].each do |data|
|
31
|
+
if cnt != 0 then
|
32
|
+
puts format_forecast(data)
|
33
|
+
end
|
34
|
+
|
35
|
+
cnt += 1
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
private
|
40
|
+
|
41
|
+
def weather
|
42
|
+
@weather = @weather || SimpleOpenWeatherMap::Weather.new
|
43
|
+
end
|
44
|
+
|
45
|
+
def format_current(data)
|
46
|
+
# temp main, description :name
|
47
|
+
"%d°C %s, %s :%s" % [
|
48
|
+
data["main"]["temp"],
|
49
|
+
data["weather"][0]["main"],
|
50
|
+
data["weather"][0]["description"],
|
51
|
+
data["name"]
|
52
|
+
]
|
53
|
+
end
|
54
|
+
|
55
|
+
def format_forecast(data)
|
56
|
+
# day temp-min - temp.max description
|
57
|
+
"%-4s\t\t%2d°C - %2d°C\t\t%s" % [
|
58
|
+
::Time.at(data["dt"]).strftime("%a"),
|
59
|
+
data["temp"]["min"],
|
60
|
+
data["temp"]["max"],
|
61
|
+
data["weather"][0]["description"]
|
62
|
+
]
|
63
|
+
end
|
64
|
+
end
|
@@ -0,0 +1,72 @@
|
|
1
|
+
require 'json'
|
2
|
+
require 'FileUtils'
|
3
|
+
require 'open-uri'
|
4
|
+
|
5
|
+
class SimpleOpenWeatherMap::Weather
|
6
|
+
|
7
|
+
attr_accessor :icon_path
|
8
|
+
|
9
|
+
def current(config)
|
10
|
+
raise "SimpleOpenWeatherMap::Config only!" unless config.is_a?(SimpleOpenWeatherMap::Config)
|
11
|
+
|
12
|
+
responseJson = http_connection(SimpleOpenWeatherMap::PATH_CURRENT).get_contents(current_params(config))
|
13
|
+
return nil if responseJson.nil? || responseJson.empty?
|
14
|
+
|
15
|
+
@current = ::JSON.parse(responseJson)
|
16
|
+
|
17
|
+
if config.save_icon? then
|
18
|
+
save_current_icon(@current["weather"][0]["icon"], config.save_icon_dir)
|
19
|
+
end
|
20
|
+
|
21
|
+
return @current
|
22
|
+
end
|
23
|
+
|
24
|
+
def forecast(config)
|
25
|
+
raise "SimpleOpenWeatherMap::Config only!" unless config.is_a?(SimpleOpenWeatherMap::Config)
|
26
|
+
|
27
|
+
responseJson = http_connection(SimpleOpenWeatherMap::PATH_FORECAST).get_contents(forecast_params(config))
|
28
|
+
return nil if responseJson.nil? || responseJson.empty?
|
29
|
+
|
30
|
+
::JSON.parse(responseJson)
|
31
|
+
end
|
32
|
+
|
33
|
+
protected
|
34
|
+
|
35
|
+
def http_connection(path)
|
36
|
+
SimpleOpenWeatherMap::HttpConnection.new(SimpleOpenWeatherMap::BASE_URL + path)
|
37
|
+
end
|
38
|
+
|
39
|
+
def current_params(config)
|
40
|
+
{
|
41
|
+
APPID: config.app_id,
|
42
|
+
units: config.unit,
|
43
|
+
id: config.city_id,
|
44
|
+
}
|
45
|
+
end
|
46
|
+
|
47
|
+
def forecast_params(config)
|
48
|
+
{
|
49
|
+
APPID: config.app_id,
|
50
|
+
units: config.unit,
|
51
|
+
id: config.city_id,
|
52
|
+
cnt: config.forecast_days,
|
53
|
+
}
|
54
|
+
end
|
55
|
+
|
56
|
+
def save_current_icon(icon_name, dir)
|
57
|
+
return nil if icon_name.nil? || icon_name.empty?
|
58
|
+
|
59
|
+
icon_url = SimpleOpenWeatherMap::ICON_URL_TEMPLATE % [icon_name]
|
60
|
+
@icon_path = "%s/%s" % [dir, "weather_icon.png"]
|
61
|
+
|
62
|
+
::FileUtils.mkdir_p(dir) unless ::FileTest.exist?(dir)
|
63
|
+
|
64
|
+
open(@icon_path, 'wb') do |output|
|
65
|
+
open(icon_url) do |data|
|
66
|
+
output.write(data.read)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
71
|
+
|
72
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'simple_open_weather_map/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "simple_open_weather_map"
|
8
|
+
spec.version = SimpleOpenWeatherMap::VERSION
|
9
|
+
spec.authors = ["whize"]
|
10
|
+
spec.email = ["whize.k@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{A simple ruby language library for the OpenWeatherMap API.}
|
13
|
+
spec.description = %q{A simple ruby language library for the OpenWeatherMap API.}
|
14
|
+
spec.homepage = "https://github.com/whize/simple_open_weather_map"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
18
|
+
# delete this section to allow pushing this gem to any host.
|
19
|
+
# if spec.respond_to?(:metadata)
|
20
|
+
# spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
|
21
|
+
# else
|
22
|
+
# raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
23
|
+
# end
|
24
|
+
|
25
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
26
|
+
spec.bindir = "exe"
|
27
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
28
|
+
spec.require_paths = ["lib"]
|
29
|
+
|
30
|
+
spec.add_development_dependency "bundler", "~> 1.11"
|
31
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
32
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
33
|
+
|
34
|
+
spec.add_dependency "httpclient"
|
35
|
+
spec.add_dependency "json"
|
36
|
+
end
|
metadata
ADDED
@@ -0,0 +1,131 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: simple_open_weather_map
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- whize
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-03-26 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.11'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.11'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: httpclient
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: json
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: A simple ruby language library for the OpenWeatherMap API.
|
84
|
+
email:
|
85
|
+
- whize.k@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- ".rspec"
|
92
|
+
- ".travis.yml"
|
93
|
+
- CODE_OF_CONDUCT.md
|
94
|
+
- Gemfile
|
95
|
+
- LICENSE.txt
|
96
|
+
- README.md
|
97
|
+
- Rakefile
|
98
|
+
- bin/console
|
99
|
+
- bin/setup
|
100
|
+
- lib/simple_open_weather_map.rb
|
101
|
+
- lib/simple_open_weather_map/config.rb
|
102
|
+
- lib/simple_open_weather_map/http_connection.rb
|
103
|
+
- lib/simple_open_weather_map/report.rb
|
104
|
+
- lib/simple_open_weather_map/version.rb
|
105
|
+
- lib/simple_open_weather_map/weather.rb
|
106
|
+
- simple_open_weather_map.gemspec
|
107
|
+
homepage: https://github.com/whize/simple_open_weather_map
|
108
|
+
licenses:
|
109
|
+
- MIT
|
110
|
+
metadata: {}
|
111
|
+
post_install_message:
|
112
|
+
rdoc_options: []
|
113
|
+
require_paths:
|
114
|
+
- lib
|
115
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - ">="
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '0'
|
120
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
requirements: []
|
126
|
+
rubyforge_project:
|
127
|
+
rubygems_version: 2.4.5.1
|
128
|
+
signing_key:
|
129
|
+
specification_version: 4
|
130
|
+
summary: A simple ruby language library for the OpenWeatherMap API.
|
131
|
+
test_files: []
|