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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0853535b5875d9f98666e3bf9a245318f8654c56f32f5519fc4199ff7dc97bcd'
4
- data.tar.gz: 94f23b7d966ef780a41396acb25744c918fe0eadd0747b955b1d42b1c58ddc57
3
+ metadata.gz: 1d461ff2afaecd511d50215597718ac111bff84bf6fb0d876ffb7ff7c4450395
4
+ data.tar.gz: d08c05bc373c40ca318d604653ba2aeeef9a4a2e1dc3b9a8b111a91c9b7ac07b
5
5
  SHA512:
6
- metadata.gz: 61ec5946a9cb7c7b6765f8d4be58be3dc8539d9cdd1e45707ae88b3140e81c0d28d6c1440167dcdbffabbe9f5fdffdad8267c4f479411c7c8bddcf80898b81fb
7
- data.tar.gz: 64f15f3d2b727e16f5605d3c1baf68d0cc3fd1b52487e51bc81f2406a127a08f384ca315c2078c10f7b28708983f2f630246f57796363a3a6877cc91dcaf602b
6
+ metadata.gz: 37d17871daf46ad71c6d8813087cb106c67765a60c8881cc1ff32c688761625d1d58583305b843c6dfdda1d86118ab4ed3d9078b2176176cef1fd7386a4e401c
7
+ data.tar.gz: 50a84d354c11c691331ac4322196e20d82e2fabc2a09cde27ed6160c47852bea3673e63731d8d2127b12015acc2fc27d00a7bc7b606a0e3f651bbd15661b33d9
@@ -16,7 +16,7 @@ jobs:
16
16
  ruby: [2.7, 3.1]
17
17
  runs-on: ${{ matrix.os }}
18
18
  steps:
19
- - uses: actions/checkout@v3
19
+ - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
20
20
  - uses: ruby/setup-ruby@v1
21
21
  with:
22
22
  ruby-version: ${{ matrix.ruby }}
data/.rultor.yml CHANGED
@@ -1,11 +1,12 @@
1
1
  docker:
2
- image: yegor256/rultor-image:1.21.0
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
- sudo bundle install --no-color "--gemfile=$(pwd)/Gemfile"
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-2023 Yegor Bugayenko
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.6', require: false
29
- gem 'rubocop', '1.51.0', require: false
30
- gem 'rubocop-rspec', '2.22.0', require: false
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
@@ -1,6 +1,6 @@
1
1
  (The MIT License)
2
2
 
3
- Copyright (c) 2014-2023 Yegor Bugayenko
3
+ Copyright (c) 2014-2024 Yegor Bugayenko
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the 'Software'), to deal
data/Rakefile CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # (The MIT License)
4
4
  #
5
- # Copyright (c) 2014-2023 Yegor Bugayenko
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  # (The MIT License)
4
4
  #
5
- # Copyright (c) 2014-2023 Yegor Bugayenko
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.0'
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'
@@ -2,7 +2,7 @@
2
2
 
3
3
  # (The MIT License)
4
4
  #
5
- # Copyright (c) 2014-2023 Yegor Bugayenko
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.0
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: 2023-07-08 00:00:00.000000000 Z
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.2.15
69
+ rubygems_version: 3.4.10
70
70
  signing_key:
71
71
  specification_version: 4
72
72
  summary: Jekyll Git Hash