jekyll-mastodon_webfinger 1.0.1 → 1.0.2

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: 3423f8cd879221c0ebbcdfcfc1306df6ba0532339e271074227b3a5ff801957e
4
- data.tar.gz: e076a475404414e3d15680b8bdf0498d1611b85c03fe1f994504d153186e28c3
3
+ metadata.gz: d3f3b608f5643a67e02ab6336206266460762f38e7566c20e318b7294b91101c
4
+ data.tar.gz: 8653030fe52bebd9510261afab328feeb1d2e4bdaa62d4047358481bfc86e166
5
5
  SHA512:
6
- metadata.gz: bca50a8ecf2acf32be270df5e083ab38c54ff4f30874c9e1aacd88a940ff052f7c60987700bfc403e56a3846b6d595a84038ff8840a465166312939237d6f977
7
- data.tar.gz: d067ec079ffea4b53818ac00c7991510bade0209e9efc67ca31deb1fa1eb0c1af4594b6f3f6b4850ada63b028bdda9220e1d505885399e0937e4901e74aef2b0
6
+ metadata.gz: 90b6eabf062e040d7d0b9c6ee865fb7e64f8f3c1394171e69f968a679dec1aa0fc9fb671ac50463a07b96027b57183d4e2e6acbc6dd384880c58f0befcea78b9
7
+ data.tar.gz: e55ed3596acb13b15cfb8e03bc0dcc6e8f9ae30f16b654006cc916b97a126866ed128dfa33bc52e6ff2fe3729243139101cf98b195dc0d1696ee061f485b98e5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [1.0.2] - 2022-11-25
4
+
5
+ - Updates hook to use `site.keep_files` instead of `site.config["keep_files"]`
6
+
3
7
  ## [1.0.1] - 2022-11-20
4
8
 
5
9
  - Adds hook that includes `.well-known/webfinger` in the `keep_files` config
data/README.md CHANGED
@@ -32,6 +32,7 @@ by Maarten Balliauw](https://blog.maartenballiauw.be/post/2022/11/05/mastodon-ow
32
32
  ### Alternatives
33
33
 
34
34
  * @dkundel's [netlify-plugin-mastodon-alias](https://github.com/dkundel/netlify-plugin-mastodon-alias)
35
+ * Lindsay Kwardell explains [how to integrate Mastodon with Astro](https://www.lindsaykwardell.com/blog/integrate-mastodon-with-astro)
35
36
 
36
37
  ## How to use
37
38
 
@@ -74,7 +75,7 @@ Since this generates a static file, this actually acts like a catch-all email ad
74
75
 
75
76
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
76
77
 
77
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
78
+ To install this gem onto your local machine, run `bundle exec rake install`.**** To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
78
79
 
79
80
  ## Contributing
80
81
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module MastodonWebfinger
5
- VERSION = "1.0.1"
5
+ VERSION = "1.0.2"
6
6
  end
7
7
  end
@@ -6,6 +6,6 @@ require_relative "mastodon_webfinger/version"
6
6
  require_relative "mastodon_webfinger/generator"
7
7
 
8
8
  Jekyll::Hooks.register :site, :after_init do |site|
9
- keep_files = site.config["keep_files"] || []
10
- site.config["keep_files"] = keep_files.push(".well-known/webfinger").uniq
9
+ keep_files = site.keep_files || []
10
+ site.keep_files = keep_files.push(".well-known/webfinger").uniq
11
11
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-mastodon_webfinger
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Phil Nash
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-20 00:00:00.000000000 Z
11
+ date: 2022-11-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll