jekyll-shorts 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5274421350720698e2b1b121d2b1172e7353ed3ee272448a0f4770ce1de2cb9c
4
- data.tar.gz: 438e0496e14abf79ac5a528f612b9063eb5eaada237c8b2a242f9420b4cc06c9
3
+ metadata.gz: 2f5bac761a44799decc825865e2358b45fece80d82d5b42d42f5e0afd86e48d9
4
+ data.tar.gz: 31c24b5d3621b716cfb9963eb27c90e0c761c45c122db3342f81755dcab9fcf4
5
5
  SHA512:
6
- metadata.gz: 9a002a9b9801913f4d69244374d23dc2c2516ce007e61fc60714822fff0e3f5d5e4c7c58b0cda3beeb29e2b21831e1c553f7aa98c2abe5216f066769e2b974e6
7
- data.tar.gz: 3b31fad918a945d95a5a139d3a2a003563c0ee89a9884ee9c0f9f734a460df37f584676589b386f045b96792bc868124f71da66fcd125e6f9696adb7cabcdf43
6
+ metadata.gz: 7014fb51fdf53ac29797a39c785c88d4784fc911d82104f76d931a5d66b011f56bc54fa2d283ce6104c8b3925e06faf7fa93d62c30086f502382d34e19bffd53
7
+ data.tar.gz: cb2381f5f637fdbbc6f572e1ea72f277c94eb26344e8124ab03d4b92730e22c26f2adaa4ff98923a7f5afd1a053e6733f92db01c051e8b1ba1b060474ab2a15b
data/Gemfile CHANGED
@@ -28,6 +28,6 @@ gemspec
28
28
  gem 'cucumber', '9.1.0', require: false
29
29
  gem 'minitest', '5.22.1', require: false
30
30
  gem 'rake', '13.1.0', require: false
31
- gem 'rubocop', '1.59.0', require: false
31
+ gem 'rubocop', '1.60.2', require: false
32
32
  gem 'rubocop-rspec', '2.26.1', require: false
33
33
  gem 'simplecov', '0.22.0', require: false
@@ -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-shorts'
31
- s.version = '0.0.7'
31
+ s.version = '0.0.8'
32
32
  s.license = 'MIT'
33
33
  s.summary = 'Automatically generates short links for Jekyll website'
34
34
  s.description = [
@@ -77,11 +77,16 @@ class JekyllShorts::Generator < Jekyll::Generator
77
77
  @long = long
78
78
  end
79
79
 
80
+ def modified?
81
+ true
82
+ end
83
+
80
84
  def write(_dest)
81
85
  FileUtils.mkdir_p(File.dirname(path))
82
86
  html = "<html><head><meta charset='utf-8'/>\
83
87
  <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>\
84
- <meta http-equiv='refresh' content='#{@long}'/></head></html>"
88
+ <meta http-equiv='refresh' content='#{@long}'/></head>\
89
+ <body></body></html>"
85
90
  if File.exist?(path)
86
91
  before = File.read(path)
87
92
  if before != html
@@ -93,7 +98,7 @@ than before. Try to run 'jekyll clean', it will help, if you know what you are d
93
98
  end
94
99
  else
95
100
  File.write(path, html)
96
- Jekyll.logger.debug("HTML #{path.inspect} -> #{@long.inspect}")
101
+ Jekyll.logger.debug("Short URL created from #{path.inspect} to #{@long.inspect}")
97
102
  end
98
103
  true
99
104
  end
@@ -23,5 +23,5 @@
23
23
  # SOFTWARE.
24
24
 
25
25
  module JekyllShorts
26
- VERSION = '0.0.7'
26
+ VERSION = '0.0.8'
27
27
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-shorts
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yegor Bugayenko