posting_zon 0.0.27 → 0.0.29

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/posting_zon.rb +5 -5
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 80aa6a04418a61ac2f863743a18a59f1afc3f2c1f2e25f7862348f5d5f7a2afb
4
- data.tar.gz: 1593612b895f5f99d9084660ee3f3969a543033d5bbd1fef232de3d69bde5cbb
3
+ metadata.gz: 6c53eb3b87d390053b83004654fbb5b32413d992bd43004248eafae32a348a5f
4
+ data.tar.gz: d59adc9c45be2659efe7c319e90d8ad2ab04c6421ed2cf7a9f247ba2ae446d82
5
5
  SHA512:
6
- metadata.gz: ddc203732bb8fd06ff1dc77df7dfba4ef6cd18c18bd8bd82c96518069f0e2667140ad4135925f953e2a2065173e7be765829da5cac67bbfed54b18b1221bcd86
7
- data.tar.gz: 59beba6ce2474ad5669a9e9a44c8b39dc0b35f46568402ee338ce8bf92adfcd34d474f1bbe107b737731ab1681005b434b815f7c5be4c7b5e2b011b221ad12c6
6
+ metadata.gz: b1fc9e321e86f2f2ca939a47c3e733309d85e7a723248dacca713f909d3d4e0ab834c79ac7c0c4dc95b6cbd07f98ca4aa4428ee5f57d464998c95fbd37b64264
7
+ data.tar.gz: d16158f8111e87391c300b5f8d0a4de3eed9de164db2b0a1b6bf5b3a4143d9543fc4f65698be1312f365c8a2264ef8dd6431aa8d6790c351cc650f1231ecaddf
data/lib/posting_zon.rb CHANGED
@@ -41,7 +41,7 @@ class Naver
41
41
  Webdrivers::Chromedriver.update # 자동 업데이트 시도
42
42
  rescue => e
43
43
  puts "webdrivers에서 chromedriver 다운로드 실패: #{e.message}"
44
- puts " 자동으로 chromedriver.exe 사용합니다."
44
+ puts "자동으로 chromedriver.exe 사용합니다."
45
45
  puts "만일 프로그램 폴더안에 chromedriver.exe 버전이 맞지 않거나 없는 경우 인터넷창이 깜빡하고 닫히거나 열리지 않는경우에만 아래 안내를 따라주세요."
46
46
  puts "https://storage.googleapis.com/chrome-for-testing-public/사용자크롬버전/win32/chromedriver-win32.zip 링크를 복사 후 복사 된 링크 중(사용자크롬버전) 부분을 크롬 사용자의 버전(예:131.0.6778.264)으로 수정 후 주소입력 부분에 넣어 엔터 후 다운로드 하고 압축을 풀고 chromedriver.exe 파일만 프로그램 폴더안에 넣어주세요."
47
47
  puts "인터넷 창이 열리고 작업을 한다면 위 항목은 패스해주세요."
@@ -59,7 +59,7 @@ class Naver
59
59
  options.add_argument('--start-maximized')
60
60
  options.add_argument('user-agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.6723.59 Safari/537.36') # user-agent 위조
61
61
  options.add_argument('--disable-blink-features=AutomationControlled') # 자동화된 환경에서 실행되는 것을 감지하는 기능을 비활성화합니다.
62
- options.add_argument('--ignore-certificate-errors') # SSL 인증서 오류 무시
62
+
63
63
  options.add_argument('--disable-web-security') # 웹 보안 비활성화
64
64
  options.add_argument('--allow-running-insecure-content') # HTTPS 사이트에서 HTTP 컨텐츠 실행 허용
65
65
  options.add_argument('--no-sandbox') # 샌드박스 모드 비활성화
@@ -84,7 +84,7 @@ class Naver
84
84
  options.add_argument('--start-maximized')
85
85
  options.add_argument('user-agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.6723.59 Safari/537.36')
86
86
  options.add_argument('--disable-blink-features=AutomationControlled')
87
- options.add_argument('--ignore-certificate-errors')
87
+
88
88
  options.add_argument('--disable-web-security')
89
89
  options.add_argument('--allow-running-insecure-content')
90
90
  options.add_argument('--no-sandbox')
@@ -110,7 +110,7 @@ class Naver
110
110
  options.add_argument('--start-maximized')
111
111
  options.add_argument('user-agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.6723.59 Safari/537.36')
112
112
  options.add_argument('--disable-blink-features=AutomationControlled')
113
- options.add_argument('--ignore-certificate-errors')
113
+
114
114
  options.add_argument('--disable-web-security')
115
115
  options.add_argument('--allow-running-insecure-content')
116
116
  options.add_argument('--no-sandbox')
@@ -133,7 +133,7 @@ class Naver
133
133
  options.add_argument('--start-maximized')
134
134
  options.add_argument('user-agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.6723.59 Safari/537.36')
135
135
  options.add_argument('--disable-blink-features=AutomationControlled')
136
- options.add_argument('--ignore-certificate-errors')
136
+
137
137
  options.add_argument('--disable-web-security')
138
138
  options.add_argument('--allow-running-insecure-content')
139
139
  options.add_argument('--no-sandbox')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: posting_zon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.27
4
+ version: 0.0.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - zon