jekyll-chatgpt-translate 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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc3e9a30a7d065c15ac18a15b5047f94881809857f65ed77330351f95a129d18
|
4
|
+
data.tar.gz: f6254349103e49e105451d773ac459be452027a5bdafc5a7a004a1d926e7203e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 15a82d1c87dda2069162db76f00c3a0ade671a76806eeefeeef0239ba3dff9c62c109a1b5772e2fa002ee8da13c26ac8a0b8466235c32a88df557f5896008329
|
7
|
+
data.tar.gz: 61637d5cd8a3ce93f8e10b5df542b6a3319d23ddd168a3293df44e062a95b000b0137cc1d6e336ef24cc4cc7b4025ec095dbea3960d2099cbdfc517016efc921
|
data/.rubocop.yml
CHANGED
data/features/cli.feature
CHANGED
@@ -85,3 +85,43 @@ Feature: Simple site building
|
|
85
85
|
And File "_site/2023/01/01/hello.html" exists
|
86
86
|
And File "_site/about-me.html" exists
|
87
87
|
And File "_site/about-me.html" contains "Yegor Bugayenko"
|
88
|
+
|
89
|
+
Scenario: Simple download of existing page, but with re-translation
|
90
|
+
Given I have a "_config.yml" file with content:
|
91
|
+
"""
|
92
|
+
url: https://www.yegor256.com
|
93
|
+
markdown: kramdown
|
94
|
+
plugins:
|
95
|
+
- jekyll-chatgpt-translate
|
96
|
+
chatgpt-translate:
|
97
|
+
source: en
|
98
|
+
version: "my-own-version"
|
99
|
+
api_key: "it-is-not-used, because EN to EN translation"
|
100
|
+
layout: default
|
101
|
+
targets:
|
102
|
+
-
|
103
|
+
language: en
|
104
|
+
permalink: about-me.html
|
105
|
+
"""
|
106
|
+
And I have a "boom.html" file with content:
|
107
|
+
"""
|
108
|
+
Boom!
|
109
|
+
"""
|
110
|
+
And I have a "_layouts/default.html" file with content:
|
111
|
+
"""
|
112
|
+
{{ content }}
|
113
|
+
"""
|
114
|
+
And I have a "_posts/2023-01-01-hello.md" file with content:
|
115
|
+
"""
|
116
|
+
---
|
117
|
+
title: foo
|
118
|
+
---
|
119
|
+
foo-file-foo
|
120
|
+
"""
|
121
|
+
Then I build Jekyll site
|
122
|
+
And Exit code is zero
|
123
|
+
And Stdout contains "Re-translation required for"
|
124
|
+
And File "_site/2023/01/01/hello.html" exists
|
125
|
+
And File "_site/about-me.html" exists
|
126
|
+
And File "_site/about-me.html" contains "foo-file-foo"
|
127
|
+
And File "_site/boom.html" exists
|
@@ -28,7 +28,7 @@ Gem::Specification.new do |s|
|
|
28
28
|
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
|
29
29
|
s.required_ruby_version = '>= 2.6'
|
30
30
|
s.name = 'jekyll-chatgpt-translate'
|
31
|
-
s.version = '0.0.
|
31
|
+
s.version = '0.0.29'
|
32
32
|
s.license = 'MIT'
|
33
33
|
s.summary = 'Translate Jekyll Pages Through ChatGPT'
|
34
34
|
s.description = [
|
@@ -106,6 +106,7 @@ class GptTranslate::Generator < Jekyll::Generator
|
|
106
106
|
mode: 'a+'
|
107
107
|
)
|
108
108
|
site.pages << Jekyll::Page.new(site, site.source, File.dirname(path), File.basename(path))
|
109
|
+
site.static_files.delete_if { |f| f.is_a?(GptTranslate::Ping::DownloadedFile) && f.link == link }
|
109
110
|
translated += 1
|
110
111
|
Jekyll.logger.info("Translated via ChatGPT \
|
111
112
|
in #{(Time.now - start).round(2)}s: #{path} (#{File.size(path)} bytes)")
|
@@ -76,9 +76,12 @@ class GptTranslate::Ping
|
|
76
76
|
|
77
77
|
# The file we just downloaded.
|
78
78
|
class DownloadedFile < Jekyll::StaticFile
|
79
|
-
|
80
|
-
|
79
|
+
attr_reader :link
|
80
|
+
|
81
|
+
def initialize(site, link, html)
|
82
|
+
super(site, site.dest, '', link)
|
81
83
|
@html = html
|
84
|
+
@link = link
|
82
85
|
end
|
83
86
|
|
84
87
|
def write(_dest)
|