astrological_forecast 2.0.2 → 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: b90d589da98e246f0aa7a80626c98f43cca55cfdc8eda5c8934d066f8588b123
4
- data.tar.gz: 8fcde1d8fc0d5c38b7de61f291c669301a3aaad432962628635eaf3b396efc6a
3
+ metadata.gz: ca958439f1a7ca036b61a1edbf6ff5bbb10c8f2d4d569972e12d119a00ae4b90
4
+ data.tar.gz: 4a22d7bbcda36ea30fe1d864ba95f3254d8a7654d282eabeb5f4c64c333b4115
5
5
  SHA512:
6
- metadata.gz: 405dddb49120483f8545695044df8c5546456487d36307c6498d6cbef1c8cd01ed3c55dae83559701cf896ec9cbb464a5886bd7b9e1dcc965a98513391e3cbad
7
- data.tar.gz: 48b1e36fa09744670f4a5b50f71dc441778908ceee1ed0baa0213e4a4e6dfbf5ebf0228fedf36d25003e8f78f73d0f53436a362356a710098b1d821bffb5e737
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.1)
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.2'
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.2
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.