astrological_forecast 1.2.3 → 1.3.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2b8f6cf477a6aac937090bea62675afa394bd7dffffca96fd7325932e1dcaa7
4
- data.tar.gz: de47b4a49a0d7a77262baca1719bb6015764b01bd7a168cfeed32517fe5f02aa
3
+ metadata.gz: a111b14ccf8469b90c964b7e689a109cb105be893da4e107b3bbeda545495d24
4
+ data.tar.gz: 729186d2e464206ee0de6671828a07fdd031a7635ee1a4e64a4cabf34c94672a
5
5
  SHA512:
6
- metadata.gz: cc6134fdeb345e1fb0c4d86bfb4f9e99ea769003881c27b42660302a08cf3ad40bcb63d05655e0fda686428be95fff7e95d00b28f0f3926021914dad505d26c3
7
- data.tar.gz: b71b00e7d34443cf81e6ea051c8919ab6a4333bdfe9232b72fbc6bf0157dafa567af8035b98e1c9604d68a41116f62a37eea6b75735ff155e6a636a65faa7b9f
6
+ metadata.gz: 4e93d44676db5433eddc46603f84ac947dbb12233eb67dce5b0cf13a0479ff06af232527ccb3fd9d5925cb5a7755777a1590486cd0a5b58ecbe5bf433db1597f
7
+ data.tar.gz: 377826061dc0ac9e4ef69e7e9c5fd98eb4c170ab69673c885f5b12a0758315aa0cc5c1a2a0701eaad17acb9a2e7c07982ef7d50dc3e6f06e79a7eb39292006f6
data/.rubocop.yml CHANGED
@@ -10,7 +10,7 @@ Style/StringLiteralsInInterpolation:
10
10
  EnforcedStyle: double_quotes
11
11
 
12
12
  Layout/LineLength:
13
- Max: 120
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: 20
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
@@ -5,8 +5,6 @@ source 'https://rubygems.org'
5
5
  # Specify your gem's dependencies in astrological_forecast.gemspec
6
6
  gemspec
7
7
 
8
- gem 'json'
9
-
10
8
  gem 'rake', '~> 13.0'
11
9
 
12
10
  group :test do
@@ -17,4 +15,8 @@ group :test do
17
15
  gem 'rubocop-performance', '~> 1.15'
18
16
  gem 'rubocop-rspec', '~> 2.13'
19
17
  gem 'simplecov', '~> 0.21'
18
+ gem 'vcr', '~> 6.1'
19
+ gem 'webmock', '~> 3.1'
20
20
  end
21
+
22
+
data/Gemfile.lock CHANGED
@@ -1,22 +1,28 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- astrological_forecast (1.2.3)
5
- nokogiri (~> 1.13)
4
+ astrological_forecast (1.3.4)
5
+ addressable
6
+ nokogiri
6
7
  open-uri
7
8
 
8
9
  GEM
9
10
  remote: https://rubygems.org/
10
11
  specs:
12
+ addressable (2.8.1)
13
+ public_suffix (>= 2.0.2, < 6.0)
11
14
  ast (2.4.2)
12
15
  byebug (11.1.3)
13
16
  codecov (0.6.0)
14
17
  simplecov (>= 0.15, < 0.22)
18
+ crack (0.4.5)
19
+ rexml
15
20
  date (3.2.2)
16
21
  diff-lcs (1.5.0)
17
22
  docile (1.4.0)
23
+ hashdiff (1.0.1)
18
24
  json (2.6.2)
19
- nokogiri (1.13.8-x86_64-linux)
25
+ nokogiri (1.13.9-x86_64-linux)
20
26
  racc (~> 1.4)
21
27
  open-uri (0.2.0)
22
28
  stringio
@@ -25,40 +31,41 @@ GEM
25
31
  parallel (1.22.1)
26
32
  parser (3.1.2.1)
27
33
  ast (~> 2.4.1)
34
+ public_suffix (5.0.0)
28
35
  racc (1.6.0)
29
36
  rainbow (3.1.1)
30
37
  rake (13.0.6)
31
38
  regexp_parser (2.6.0)
32
39
  rexml (3.2.5)
33
- rspec (3.11.0)
34
- rspec-core (~> 3.11.0)
35
- rspec-expectations (~> 3.11.0)
36
- rspec-mocks (~> 3.11.0)
37
- rspec-core (3.11.0)
38
- rspec-support (~> 3.11.0)
39
- rspec-expectations (3.11.1)
40
+ rspec (3.12.0)
41
+ rspec-core (~> 3.12.0)
42
+ rspec-expectations (~> 3.12.0)
43
+ rspec-mocks (~> 3.12.0)
44
+ rspec-core (3.12.0)
45
+ rspec-support (~> 3.12.0)
46
+ rspec-expectations (3.12.0)
40
47
  diff-lcs (>= 1.2.0, < 2.0)
41
- rspec-support (~> 3.11.0)
42
- rspec-mocks (3.11.1)
48
+ rspec-support (~> 3.12.0)
49
+ rspec-mocks (3.12.0)
43
50
  diff-lcs (>= 1.2.0, < 2.0)
44
- rspec-support (~> 3.11.0)
45
- rspec-support (3.11.1)
46
- rubocop (1.36.0)
51
+ rspec-support (~> 3.12.0)
52
+ rspec-support (3.12.0)
53
+ rubocop (1.38.0)
47
54
  json (~> 2.3)
48
55
  parallel (~> 1.10)
49
56
  parser (>= 3.1.2.1)
50
57
  rainbow (>= 2.2.2, < 4.0)
51
58
  regexp_parser (>= 1.8, < 3.0)
52
59
  rexml (>= 3.2.5, < 4.0)
53
- rubocop-ast (>= 1.20.1, < 2.0)
60
+ rubocop-ast (>= 1.23.0, < 2.0)
54
61
  ruby-progressbar (~> 1.7)
55
62
  unicode-display_width (>= 1.4.0, < 3.0)
56
- rubocop-ast (1.21.0)
63
+ rubocop-ast (1.23.0)
57
64
  parser (>= 3.1.1.0)
58
65
  rubocop-performance (1.15.0)
59
66
  rubocop (>= 1.7.0, < 2.0)
60
67
  rubocop-ast (>= 0.4.0)
61
- rubocop-rspec (2.13.2)
68
+ rubocop-rspec (2.15.0)
62
69
  rubocop (~> 1.33)
63
70
  ruby-progressbar (1.11.0)
64
71
  simplecov (0.21.2)
@@ -72,6 +79,11 @@ GEM
72
79
  date
73
80
  unicode-display_width (2.3.0)
74
81
  uri (0.11.0)
82
+ vcr (6.1.0)
83
+ webmock (3.18.1)
84
+ addressable (>= 2.8.0)
85
+ crack (>= 0.3.2)
86
+ hashdiff (>= 0.4.0, < 2.0.0)
75
87
 
76
88
  PLATFORMS
77
89
  x86_64-linux
@@ -80,13 +92,14 @@ DEPENDENCIES
80
92
  astrological_forecast!
81
93
  byebug
82
94
  codecov (~> 0.4)
83
- json
84
95
  rake (~> 13.0)
85
96
  rspec (~> 3.1)
86
97
  rubocop (~> 1.36)
87
98
  rubocop-performance (~> 1.15)
88
99
  rubocop-rspec (~> 2.13)
89
100
  simplecov (~> 0.21)
101
+ vcr (~> 6.1)
102
+ webmock (~> 3.1)
90
103
 
91
104
  BUNDLED WITH
92
105
  2.3.22
data/README.md CHANGED
@@ -1,9 +1,14 @@
1
1
  # `astrological_forecast`
2
2
 
3
- ![Gem](https://img.shields.io/gem/v/astrological_forecast)
4
- ![CI](https://github.com/ProfessorNemo/astrological_forecast/actions/workflows/ci.yml/badge.svg)
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
- ![Downloads total](https://img.shields.io/gem/dt/astrological_forecast)
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
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
 
2
3
  require 'rake'
3
4
 
@@ -18,4 +19,4 @@ require 'rubocop/rake_task'
18
19
  RuboCop::RakeTask.new do |task|
19
20
  task.requires << 'rubocop-performance'
20
21
  task.requires << 'rubocop-rspec'
21
- end
22
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AstrologicalForecast
4
- VERSION = '1.2.3'
4
+ VERSION = '1.3.4'
5
5
  end
@@ -22,4 +22,4 @@ module AstrologicalForecast
22
22
 
23
23
  forecast.data_forecast
24
24
  end
25
- end
25
+ end
metadata CHANGED
@@ -1,29 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: astrological_forecast
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.3.4
5
5
  platform: ruby
6
6
  authors:
7
- - Gleb V. Zhegilin
7
+ - Gleb V. Zhegulin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-10-04 00:00:00.000000000 Z
11
+ date: 2022-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: addressable
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: nokogiri
15
29
  requirement: !ruby/object:Gem::Requirement
16
30
  requirements:
17
- - - "~>"
31
+ - - ">="
18
32
  - !ruby/object:Gem::Version
19
- version: '1.13'
33
+ version: '0'
20
34
  type: :runtime
21
35
  prerelease: false
22
36
  version_requirements: !ruby/object:Gem::Requirement
23
37
  requirements:
24
- - - "~>"
38
+ - - ">="
25
39
  - !ruby/object:Gem::Version
26
- version: '1.13'
40
+ version: '0'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: open-uri
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -89,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
89
103
  - !ruby/object:Gem::Version
90
104
  version: '0'
91
105
  requirements: []
92
- rubygems_version: 3.3.22
106
+ rubygems_version: 3.3.23
93
107
  signing_key:
94
108
  specification_version: 4
95
109
  summary: Zodiac horoscope parser from https://orakul.com.