jekyll-chatgpt-translate 0.0.28 → 0.0.29
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +1 -1
- data/features/cli.feature +5 -0
- data/jekyll-chatgpt-translate.gemspec +1 -1
- data/lib/jekyll-chatgpt-translate/generator.rb +1 -1
- data/lib/jekyll-chatgpt-translate/version.rb +1 -1
- 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: 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
@@ -103,6 +103,10 @@ Feature: Simple site building
|
|
103
103
|
language: en
|
104
104
|
permalink: about-me.html
|
105
105
|
"""
|
106
|
+
And I have a "boom.html" file with content:
|
107
|
+
"""
|
108
|
+
Boom!
|
109
|
+
"""
|
106
110
|
And I have a "_layouts/default.html" file with content:
|
107
111
|
"""
|
108
112
|
{{ content }}
|
@@ -120,3 +124,4 @@ Feature: Simple site building
|
|
120
124
|
And File "_site/2023/01/01/hello.html" exists
|
121
125
|
And File "_site/about-me.html" exists
|
122
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,7 +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|
|
109
|
+
site.static_files.delete_if { |f| f.is_a?(GptTranslate::Ping::DownloadedFile) && f.link == link }
|
110
110
|
translated += 1
|
111
111
|
Jekyll.logger.info("Translated via ChatGPT \
|
112
112
|
in #{(Time.now - start).round(2)}s: #{path} (#{File.size(path)} bytes)")
|