astrological_forecast 2.0.1 → 2.0.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: d9caf93370cf8653834f4485454a9da5bd120b267527d20b5b860ed050cbf439
4
- data.tar.gz: 4b508193efc0909795a49013311a2f6dd44b66c101f319c733efabb102fae859
3
+ metadata.gz: ca958439f1a7ca036b61a1edbf6ff5bbb10c8f2d4d569972e12d119a00ae4b90
4
+ data.tar.gz: 4a22d7bbcda36ea30fe1d864ba95f3254d8a7654d282eabeb5f4c64c333b4115
5
5
  SHA512:
6
- metadata.gz: f56f2cbe98682cf443dd3b00c92e4022f555dfefd962728a7547faddec50e3c89ea077391be362a4829cfbd2c9550a5b98d1bda9851c0f3f22abf915ad27b951
7
- data.tar.gz: dbaa4201c29343f548a8e39c8a8db66b5040cbace0e108f9ad1f7807ab7e7577edce6f3ef11a10f8df97f939b79896b997bf7d3b76c7714dabd6e3578021c6f2
6
+ metadata.gz: dfc72048d09790f53018210346997c87ca1bdc0c91d63cc8df10085fafe08404978a8e2e9694b239f62077fbd1983bd2c72c0b769ac798d68c628dcaa5167529
7
+ data.tar.gz: afc2642d1412160c4c8c23e6ac0761cf5239d75e5cf104c9b243854dd9795ae89f4b9f1b3b114d8ba369712e0036df821fd213f2f009594e2ba83b81c37b3d77
data/.rubocop.yml CHANGED
@@ -4,6 +4,7 @@ require:
4
4
 
5
5
  AllCops:
6
6
  NewCops: enable
7
+ TargetRubyVersion: 3.0.3
7
8
 
8
9
  Style/StringLiteralsInInterpolation:
9
10
  Enabled: true
data/CHANGELOG.md ADDED
@@ -0,0 +1,6 @@
1
+ - Initial release
2
+
3
+ ## [2.0.0] - 2023-13-02
4
+
5
+ - Fixed a bug in the "DefinitionSign" class ("definition_sign_hands" method).
6
+ - Added the functionality of writing forecast results to a hash array without output to the console.
data/Gemfile CHANGED
@@ -11,10 +11,10 @@ group :test do
11
11
  gem 'byebug'
12
12
  gem 'codecov', '~> 0.4'
13
13
  gem 'rspec', '~> 3.1'
14
- gem 'rubocop', '~> 1.36'
15
- gem 'rubocop-performance', '~> 1.15'
16
- gem 'rubocop-rspec', '~> 2.13'
17
- gem 'simplecov', '~> 0.21'
14
+ gem 'rubocop', '~> 1.0'
15
+ gem 'rubocop-performance', '~> 1.0'
16
+ gem 'rubocop-rspec', '~> 2.0'
17
+ gem 'simplecov', '~> 0.2'
18
18
  gem 'vcr', '~> 6.1'
19
19
  gem 'webmock', '~> 3.1'
20
20
  end
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- astrological_forecast (2.0.0)
4
+ astrological_forecast (2.0.4)
5
5
  addressable
6
6
  nokogiri
7
7
  open-uri
@@ -94,12 +94,12 @@ DEPENDENCIES
94
94
  codecov (~> 0.4)
95
95
  rake (~> 13.0)
96
96
  rspec (~> 3.1)
97
- rubocop (~> 1.36)
98
- rubocop-performance (~> 1.15)
99
- rubocop-rspec (~> 2.13)
100
- simplecov (~> 0.21)
97
+ rubocop (~> 1.0)
98
+ rubocop-performance (~> 1.0)
99
+ rubocop-rspec (~> 2.0)
100
+ simplecov (~> 0.2)
101
101
  vcr (~> 6.1)
102
102
  webmock (~> 3.1)
103
103
 
104
104
  BUNDLED WITH
105
- 2.3.22
105
+ 2.4.3
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AstrologicalForecast
4
- VERSION = '2.0.1'
4
+ VERSION = '2.0.4'
5
5
  end
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: 2.0.1
4
+ version: 2.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gleb V. Zhegulin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-13 00:00:00.000000000 Z
11
+ date: 2023-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -64,6 +64,7 @@ extra_rdoc_files:
64
64
  files:
65
65
  - ".rspec"
66
66
  - ".rubocop.yml"
67
+ - CHANGELOG.md
67
68
  - Gemfile
68
69
  - Gemfile.lock
69
70
  - LICENSE.txt
@@ -96,14 +97,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
96
97
  requirements:
97
98
  - - ">="
98
99
  - !ruby/object:Gem::Version
99
- version: 3.0.2
100
+ version: 3.0.3
100
101
  required_rubygems_version: !ruby/object:Gem::Requirement
101
102
  requirements:
102
103
  - - ">="
103
104
  - !ruby/object:Gem::Version
104
105
  version: '0'
105
106
  requirements: []
106
- rubygems_version: 3.3.26
107
+ rubygems_version: 3.4.3
107
108
  signing_key:
108
109
  specification_version: 4
109
110
  summary: Zodiac horoscope parser from https://orakul.com.