jekyll-git-hash 0.1.0 → 0.1.1
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/.github/workflows/rake.yml +1 -1
- data/.rultor.yml +3 -2
- data/Gemfile +4 -4
- data/LICENSE.txt +1 -1
- data/Rakefile +1 -1
- data/jekyll-git-hash.gemspec +2 -2
- data/lib/jekyll-git-hash.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1d461ff2afaecd511d50215597718ac111bff84bf6fb0d876ffb7ff7c4450395
|
|
4
|
+
data.tar.gz: d08c05bc373c40ca318d604653ba2aeeef9a4a2e1dc3b9a8b111a91c9b7ac07b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37d17871daf46ad71c6d8813087cb106c67765a60c8881cc1ff32c688761625d1d58583305b843c6dfdda1d86118ab4ed3d9078b2176176cef1fd7386a4e401c
|
|
7
|
+
data.tar.gz: 50a84d354c11c691331ac4322196e20d82e2fabc2a09cde27ed6160c47852bea3673e63731d8d2127b12015acc2fc27d00a7bc7b606a0e3f651bbd15661b33d9
|
data/.github/workflows/rake.yml
CHANGED
data/.rultor.yml
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
docker:
|
|
2
|
-
image: yegor256/rultor-image:1.
|
|
2
|
+
image: yegor256/rultor-image:1.22.0
|
|
3
3
|
assets:
|
|
4
4
|
rubygems.yml: yegor256/home#assets/rubygems.yml
|
|
5
5
|
install: |
|
|
6
6
|
pdd -f /dev/null
|
|
7
|
-
|
|
7
|
+
bundle install --no-color
|
|
8
8
|
release:
|
|
9
|
+
pre: false
|
|
9
10
|
script: |-
|
|
10
11
|
bundle exec rake
|
|
11
12
|
rm -rf *.gem
|
data/Gemfile
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# (The MIT License)
|
|
4
4
|
#
|
|
5
|
-
# Copyright (c) 2014-
|
|
5
|
+
# Copyright (c) 2014-2024 Yegor Bugayenko
|
|
6
6
|
#
|
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
8
|
# of this software and associated documentation files (the 'Software'), to deal
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
source 'https://rubygems.org'
|
|
26
26
|
gemspec
|
|
27
27
|
|
|
28
|
-
gem 'rake', '13.0
|
|
29
|
-
gem 'rubocop', '1.
|
|
30
|
-
gem 'rubocop-rspec', '2.
|
|
28
|
+
gem 'rake', '13.1.0', require: false
|
|
29
|
+
gem 'rubocop', '1.59.0', require: false
|
|
30
|
+
gem 'rubocop-rspec', '2.25.0', require: false
|
data/LICENSE.txt
CHANGED
data/Rakefile
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# (The MIT License)
|
|
4
4
|
#
|
|
5
|
-
# Copyright (c) 2014-
|
|
5
|
+
# Copyright (c) 2014-2024 Yegor Bugayenko
|
|
6
6
|
#
|
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
8
|
# of this software and associated documentation files (the 'Software'), to deal
|
data/jekyll-git-hash.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# (The MIT License)
|
|
4
4
|
#
|
|
5
|
-
# Copyright (c) 2014-
|
|
5
|
+
# Copyright (c) 2014-2024 Yegor Bugayenko
|
|
6
6
|
#
|
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
8
|
# of this software and associated documentation files (the 'Software'), to deal
|
|
@@ -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-git-hash'
|
|
31
|
-
s.version = '0.1.
|
|
31
|
+
s.version = '0.1.1'
|
|
32
32
|
s.license = 'MIT'
|
|
33
33
|
s.summary = 'Jekyll Git Hash'
|
|
34
34
|
s.description = 'Adds Git hash to the properties of the Jekyll site'
|
data/lib/jekyll-git-hash.rb
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# (The MIT License)
|
|
4
4
|
#
|
|
5
|
-
# Copyright (c) 2014-
|
|
5
|
+
# Copyright (c) 2014-2024 Yegor Bugayenko
|
|
6
6
|
#
|
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
8
|
# of this software and associated documentation files (the 'Software'), to deal
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-git-hash
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yegor Bugayenko
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-02-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -66,7 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
- !ruby/object:Gem::Version
|
|
67
67
|
version: '0'
|
|
68
68
|
requirements: []
|
|
69
|
-
rubygems_version: 3.
|
|
69
|
+
rubygems_version: 3.4.10
|
|
70
70
|
signing_key:
|
|
71
71
|
specification_version: 4
|
|
72
72
|
summary: Jekyll Git Hash
|