deploy_horoscope 0.1.0 → 0.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 64818bb1860df82c284e0fe8a8b6b9d8eed93d9b8ac89607b99639467d11bc00
4
- data.tar.gz: 28e5321702fccdcd6242e7147b0c95ec50b155efdaf5456aba23e57bce0d24d5
3
+ metadata.gz: 7329a113aaa990bc63b8e5c583cb85b3f656865fdadd3b77da33802ea7cf1136
4
+ data.tar.gz: 28940aff16c633639c104de0879f60e04bfad36a281f85c238f42bb54f0e0ad5
5
5
  SHA512:
6
- metadata.gz: 169ced5a08c410d11d0d552517f75ea7adf05f1d2aad303a91192dce2d9369d9f97d843095a9e4c2866bf69bd2f57fb7cfbf65ba2164027a17319de6f6f92250
7
- data.tar.gz: 116a8096d1b66fec09904bc58143e830804cdab6f08d322184ef00d77d400d303dc7022d270c10a1abb98c73f24efbff70b9bb6dc8781f25f632b746ebeb735c
6
+ metadata.gz: 07dcc270d2496fb4cb89b502070a8bcb32cae79a2c146f7c32fa3377dcf175c15bad450c400c3b76fa567114ac7534ed2d9ef14ef5f7a195650e4358d4bb8675
7
+ data.tar.gz: 9f03358f7ec6170734eeb3c76cf0c093fa1c3e0847c51a3b32614314fa3ea9e230e30d265fba7d7c107d28a59a3e891d12a54f77802d93ba884f5c87a203f883
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  When it's best to deploy to production? You can see the dates in https://deployhoroscope.ru/ The information is addressed to those who are planning to deploy to production in the near future. Especially for the resource an astrologer has calculated the most favorable calendar dates for this procedure for all zodiac signs.
4
4
 
5
+ [Rubygems](https://rubygems.org/gems/deploy_horoscope)
6
+
5
7
  ## Installation
6
8
 
7
9
  ```
@@ -39,7 +39,7 @@ module DeployHoroscope
39
39
  data = []
40
40
  doc.css("tbody tr").each do |row|
41
41
  cells = row.css("td")
42
- sign_ru = cells[0].text.downcase.strip
42
+ sign_ru = cells[0].text.downcase.strip.split(' ').first
43
43
  data << {
44
44
  sign_ru: sign_ru,
45
45
  sign: ::DeployHoroscope::SIGNS[sign_ru],
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DeployHoroscope
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.2"
5
5
  end
@@ -3,7 +3,6 @@
3
3
  require "nokogiri"
4
4
  require "net/http"
5
5
  require "uri"
6
- require "pry"
7
6
  require "date"
8
7
 
9
8
  require_relative "deploy_horoscope/client"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deploy_horoscope
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - kopylovvlad
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-05 00:00:00.000000000 Z
11
+ date: 2024-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri