astrological_forecast 1.2.3 → 1.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +3 -2
- data/Gemfile +4 -0
- data/Gemfile.lock +15 -1
- data/README.md +8 -3
- data/Rakefile +2 -1
- data/lib/astrological_forecast/version.rb +1 -1
- data/lib/astrological_forecast.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22419f96b8e3c0ee981d59eac209fd9add183fa77d8c3878053d3d45bdd9f8e3
|
4
|
+
data.tar.gz: aee46d6f478f3cee452d77ea52db9f6b3ca9c81c326dd2ad4a3e029e76d7a091
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd13a198a130294ea82a92b1307794fec891d64a514e9c4c7781f523ac4e953840e9a779577b588c33ac3f699f78ca7483b824eec29821dcdce5c145fa34e22e
|
7
|
+
data.tar.gz: 5c72068c8a42972629ab39fc744dffc2356d4a47395a3c9365165ee12e08703bb2f3bda878d210767549dd24d14226250f0fc9bed02b7cdd9b8ff0f12f064da3
|
data/.rubocop.yml
CHANGED
@@ -10,7 +10,7 @@ Style/StringLiteralsInInterpolation:
|
|
10
10
|
EnforcedStyle: double_quotes
|
11
11
|
|
12
12
|
Layout/LineLength:
|
13
|
-
Max:
|
13
|
+
Max: 150
|
14
14
|
Exclude:
|
15
15
|
- spec/**/*.rb
|
16
16
|
|
@@ -31,7 +31,7 @@ RSpec/MultipleExpectations:
|
|
31
31
|
Max: 10
|
32
32
|
|
33
33
|
RSpec/ExampleLength:
|
34
|
-
Max:
|
34
|
+
Max: 100
|
35
35
|
|
36
36
|
RSpec/FilePath:
|
37
37
|
Enabled: false
|
@@ -41,3 +41,4 @@ RSpec/NoExpectationExample:
|
|
41
41
|
|
42
42
|
Metrics/CyclomaticComplexity:
|
43
43
|
Enabled: false
|
44
|
+
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,20 +1,25 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
astrological_forecast (1.
|
4
|
+
astrological_forecast (1.3.3)
|
5
5
|
nokogiri (~> 1.13)
|
6
6
|
open-uri
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
+
addressable (2.8.1)
|
12
|
+
public_suffix (>= 2.0.2, < 6.0)
|
11
13
|
ast (2.4.2)
|
12
14
|
byebug (11.1.3)
|
13
15
|
codecov (0.6.0)
|
14
16
|
simplecov (>= 0.15, < 0.22)
|
17
|
+
crack (0.4.5)
|
18
|
+
rexml
|
15
19
|
date (3.2.2)
|
16
20
|
diff-lcs (1.5.0)
|
17
21
|
docile (1.4.0)
|
22
|
+
hashdiff (1.0.1)
|
18
23
|
json (2.6.2)
|
19
24
|
nokogiri (1.13.8-x86_64-linux)
|
20
25
|
racc (~> 1.4)
|
@@ -25,6 +30,7 @@ GEM
|
|
25
30
|
parallel (1.22.1)
|
26
31
|
parser (3.1.2.1)
|
27
32
|
ast (~> 2.4.1)
|
33
|
+
public_suffix (5.0.0)
|
28
34
|
racc (1.6.0)
|
29
35
|
rainbow (3.1.1)
|
30
36
|
rake (13.0.6)
|
@@ -72,11 +78,17 @@ GEM
|
|
72
78
|
date
|
73
79
|
unicode-display_width (2.3.0)
|
74
80
|
uri (0.11.0)
|
81
|
+
vcr (6.1.0)
|
82
|
+
webmock (3.18.1)
|
83
|
+
addressable (>= 2.8.0)
|
84
|
+
crack (>= 0.3.2)
|
85
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
75
86
|
|
76
87
|
PLATFORMS
|
77
88
|
x86_64-linux
|
78
89
|
|
79
90
|
DEPENDENCIES
|
91
|
+
addressable (~> 2.8)
|
80
92
|
astrological_forecast!
|
81
93
|
byebug
|
82
94
|
codecov (~> 0.4)
|
@@ -87,6 +99,8 @@ DEPENDENCIES
|
|
87
99
|
rubocop-performance (~> 1.15)
|
88
100
|
rubocop-rspec (~> 2.13)
|
89
101
|
simplecov (~> 0.21)
|
102
|
+
vcr (~> 6.1)
|
103
|
+
webmock (~> 3.1)
|
90
104
|
|
91
105
|
BUNDLED WITH
|
92
106
|
2.3.22
|
data/README.md
CHANGED
@@ -1,9 +1,14 @@
|
|
1
1
|
# `astrological_forecast`
|
2
2
|
|
3
|
-
![Gem](https://img.shields.io/gem/
|
4
|
-
![
|
3
|
+
[![Gem Version](https://img.shields.io/gem/dt/astrological_forecast.svg)][gem]
|
4
|
+
[![Gem](https://img.shields.io/gem/v/astrological_forecast)][gem]
|
5
|
+
[![Build Status](https://github.com/ProfessorNemo/astrological_forecast/actions/workflows/ci.yml/badge.svg)][actions]
|
5
6
|
[![Test Coverage](https://codecov.io/gh/ProfessorNemo/astrological_forecast/graph/badge.svg)](https://codecov.io/gh/ProfessorNemo/astrological_forecast)
|
6
|
-
|
7
|
+
|
8
|
+
[gem]: https://rubygems.org/gems/astrological_forecast
|
9
|
+
[gem]: https://rubygems.org/gems/astrological_forecast
|
10
|
+
[actions]: https://github.com/ProfessorNemo/astrological_forecast/actions
|
11
|
+
[coveralls]: https://coveralls.io/r/ProfessorNemo/astrological_forecast
|
7
12
|
###### Язык написания - Ruby
|
8
13
|
|
9
14
|
## Описание:
|
data/Rakefile
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: astrological_forecast
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gleb V. Zhegilin
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-10-
|
11
|
+
date: 2022-10-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|