posting_duo 3.93.999 → 3.95.999
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 +4 -4
- data/lib/posting_duo.rb +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a8edad31b91b64b6c80883487e179930231bee59ce68431444a376d8eda96b5
|
4
|
+
data.tar.gz: f980bb3ce7ed1c659a43a30b684d9321eaba0c06c7ac7d855843794559aa2b0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9322c057f88da0210a8f51db448381cb45d406d571eb5075e22522bf11204700c09e3c0fa83805c24509238a960215facb3563e6111dfcf2e3f40a953497e46d
|
7
|
+
data.tar.gz: 828409c0e22f4087b5626cf8688303c8a7b368f34261d87e36e6c886867cebebf70880a25c0ab6ff9e1fbfe3eb0ca02fe7c94dc6316e841a3a7aa06a9f36a367
|
data/lib/posting_duo.rb
CHANGED
@@ -11698,8 +11698,13 @@ end
|
|
11698
11698
|
# 2. 내용에 감자 단어 사용이 제한되어 있습니다 형식
|
11699
11699
|
elsif alert_text =~ /내용에\s+(.+?)\s+단어 사용이 제한/
|
11700
11700
|
banned_word = $1
|
11701
|
+
|
11702
|
+
# 3. "금지단어"는..형식
|
11703
|
+
elsif alert_text =~ /"(.+?)"\s*는/
|
11704
|
+
banned_word = $1
|
11701
11705
|
end
|
11702
11706
|
|
11707
|
+
|
11703
11708
|
if banned_word
|
11704
11709
|
puts "금지단어 발견: [#{banned_word}]".red
|
11705
11710
|
puts "[#{banned_word}] 금지단어 제거 후 재 시도 진행!!".red
|