bomtempo 0.1.0 → 0.1.1
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/Gemfile.lock +1 -1
- data/README.md +26 -20
- data/lib/bomtempo/version.rb +1 -1
- 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: eaf8a0ec0412f3307b6b0e2cf382ba67f8f20a5dc8083af2e095814320e5051a
|
|
4
|
+
data.tar.gz: 16d0ab2abe65487c3be54c88e2479e64f7b38b0c8b4b9adc1e2454e6969347e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 783deadb87074294e108ebfa993e7591884efcf137ed6f85e2d6054d718a75dbc2f55376dcf7359e981559112845f216b052051e2f25216d131ca6f0acae36fd
|
|
7
|
+
data.tar.gz: f8ffb07f4ddf61baf3bd09ddaaf8d92e5a393a92eda793ecdce7303fc870f36aa1a6f131c979184acdb9d65408e70a664cb0942b06998868572c976aadc02fd8
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,37 +1,43 @@
|
|
|
1
|
-
# Bomtempo
|
|
2
1
|
|
|
3
|
-
|
|
2
|
+
# Gem Bom Tempo
|
|
4
3
|
|
|
5
|
-
|
|
4
|
+
If you need information about the weather in a specific city? This gem Offers a weather forecast for the next 5 days of a city.
|
|
6
5
|
|
|
7
|
-
## Installation
|
|
8
|
-
|
|
9
|
-
Install the gem and add to the application's Gemfile by executing:
|
|
10
6
|
|
|
11
|
-
|
|
7
|
+
## Author
|
|
12
8
|
|
|
13
|
-
|
|
9
|
+
- [@welitonjjose](https://github.com/welitonjjose/)
|
|
14
10
|
|
|
15
|
-
$ gem install bomtempo
|
|
16
11
|
|
|
17
|
-
##
|
|
12
|
+
## Installation
|
|
18
13
|
|
|
19
|
-
TODO: Write usage instructions here
|
|
20
14
|
|
|
21
|
-
|
|
15
|
+
```bash
|
|
16
|
+
gem install bomtempo
|
|
17
|
+
```
|
|
22
18
|
|
|
23
|
-
|
|
19
|
+
Obs:
|
|
20
|
+
credential is required in https://openweathermap.org/
|
|
24
21
|
|
|
25
|
-
|
|
22
|
+
```ruby
|
|
23
|
+
Bomtempo.config do |c|
|
|
24
|
+
c.access_token = "OPEN_WEATHER_MAP_TOKEN"
|
|
25
|
+
end
|
|
26
|
+
```
|
|
26
27
|
|
|
27
|
-
|
|
28
|
+
|
|
29
|
+
## How use
|
|
28
30
|
|
|
29
|
-
|
|
31
|
+
```ruby
|
|
32
|
+
Bomtempo.weather_in({
|
|
33
|
+
city: "São Paulo",
|
|
34
|
+
state: "SP",
|
|
35
|
+
country: "BR
|
|
36
|
+
})
|
|
37
|
+
```
|
|
30
38
|
|
|
31
|
-
## License
|
|
32
39
|
|
|
33
|
-
|
|
40
|
+
## Licence
|
|
34
41
|
|
|
35
|
-
|
|
42
|
+
[MIT](https://choosealicense.com/licenses/mit/)
|
|
36
43
|
|
|
37
|
-
Everyone interacting in the Bomtempo project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/bomtempo/blob/master/CODE_OF_CONDUCT.md).
|
data/lib/bomtempo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bomtempo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- weliton jose
|
|
@@ -58,13 +58,13 @@ files:
|
|
|
58
58
|
- lib/bomtempo/one_call.rb
|
|
59
59
|
- lib/bomtempo/version.rb
|
|
60
60
|
- sig/bomtempo.rbs
|
|
61
|
-
homepage: https://
|
|
61
|
+
homepage: https://github.com/welitonjjose/bomtempo
|
|
62
62
|
licenses:
|
|
63
63
|
- MIT
|
|
64
64
|
metadata:
|
|
65
|
-
homepage_uri: https://
|
|
66
|
-
source_code_uri: https://
|
|
67
|
-
changelog_uri: https://
|
|
65
|
+
homepage_uri: https://github.com/welitonjjose/bomtempo
|
|
66
|
+
source_code_uri: https://github.com/welitonjjose/bomtempo
|
|
67
|
+
changelog_uri: https://github.com/welitonjjose/bomtempo
|
|
68
68
|
post_install_message:
|
|
69
69
|
rdoc_options: []
|
|
70
70
|
require_paths:
|