open_weather_sdk 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/open_weather/version.rb +1 -1
- data/open_weather.gemspec +3 -3
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34b23c341238eb14ee0b75978ba0edf4fa318974ccfa77d6a7ea67cb2972f8ff
|
4
|
+
data.tar.gz: 180c1bbd3fa2aba4f919c880975adaecd16ceb4699c6e9cc0088b42421824746
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 589f46232829447d5f6dcbf5a628a669890ddaed7331ef00f5696f7c5b11785b82e017e28f42e5b15d3b9b9b6e59407a13b00a47cf9f1590f087460869f12855
|
7
|
+
data.tar.gz: 129475ed1d3d39a0a523f55c283e9ca7656a1414715c1b00567f36515105e2cdf78809f7db17801c34f6a72719a7730def2227c827f50ea1482161f452e05967
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Open Weather Gem, A wrapper around open weather API, makes working with weather
|
|
7
7
|
Add this line to your application's Gemfile:
|
8
8
|
|
9
9
|
```ruby
|
10
|
-
gem '
|
10
|
+
gem 'open_weather_sdk'
|
11
11
|
```
|
12
12
|
|
13
13
|
And then execute:
|
@@ -16,7 +16,7 @@ And then execute:
|
|
16
16
|
|
17
17
|
Or install it yourself as:
|
18
18
|
|
19
|
-
$ gem install
|
19
|
+
$ gem install open_weather_sdk
|
20
20
|
|
21
21
|
## Usage
|
22
22
|
|
data/lib/open_weather/version.rb
CHANGED
data/open_weather.gemspec
CHANGED
@@ -8,15 +8,15 @@ Gem::Specification.new do |spec|
|
|
8
8
|
|
9
9
|
spec.summary = "Openweather gem, getting weather made simple"
|
10
10
|
spec.description = "A wrapper around openwather api"
|
11
|
-
spec.homepage = "https://github.com/codesalley/openweather/blob/
|
11
|
+
spec.homepage = "https://github.com/codesalley/openweather/blob/master/README.md"
|
12
12
|
spec.license = "MIT"
|
13
13
|
spec.required_ruby_version = ">= 2.5.0"
|
14
14
|
|
15
15
|
# spec.metadata["allowed_push_host"] = "TODO: Set to 'https://mygemserver.com'"
|
16
16
|
|
17
17
|
spec.metadata["homepage_uri"] = spec.homepage
|
18
|
-
spec.metadata["source_code_uri"] = "https://github.com/codesalley/openweather/blob/
|
19
|
-
spec.metadata["changelog_uri"] = "https://github.com/codesalley/openweather/blob/
|
18
|
+
spec.metadata["source_code_uri"] = "https://github.com/codesalley/openweather/blob/master/README.md"
|
19
|
+
spec.metadata["changelog_uri"] = "https://github.com/codesalley/openweather/blob/master/CHANGELOG.md"
|
20
20
|
|
21
21
|
# Specify which files should be added to the gem when it is released.
|
22
22
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: open_weather_sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- code salley
|
@@ -79,13 +79,13 @@ files:
|
|
79
79
|
- lib/open_weather/network_request.rb
|
80
80
|
- lib/open_weather/version.rb
|
81
81
|
- open_weather.gemspec
|
82
|
-
homepage: https://github.com/codesalley/openweather/blob/
|
82
|
+
homepage: https://github.com/codesalley/openweather/blob/master/README.md
|
83
83
|
licenses:
|
84
84
|
- MIT
|
85
85
|
metadata:
|
86
|
-
homepage_uri: https://github.com/codesalley/openweather/blob/
|
87
|
-
source_code_uri: https://github.com/codesalley/openweather/blob/
|
88
|
-
changelog_uri: https://github.com/codesalley/openweather/blob/
|
86
|
+
homepage_uri: https://github.com/codesalley/openweather/blob/master/README.md
|
87
|
+
source_code_uri: https://github.com/codesalley/openweather/blob/master/README.md
|
88
|
+
changelog_uri: https://github.com/codesalley/openweather/blob/master/CHANGELOG.md
|
89
89
|
post_install_message:
|
90
90
|
rdoc_options: []
|
91
91
|
require_paths:
|