jekyll-mastodon_webfinger 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +2 -1
- data/lib/jekyll/mastodon_webfinger/version.rb +1 -1
- data/lib/jekyll/mastodon_webfinger.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3f3b608f5643a67e02ab6336206266460762f38e7566c20e318b7294b91101c
|
4
|
+
data.tar.gz: 8653030fe52bebd9510261afab328feeb1d2e4bdaa62d4047358481bfc86e166
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90b6eabf062e040d7d0b9c6ee865fb7e64f8f3c1394171e69f968a679dec1aa0fc9fb671ac50463a07b96027b57183d4e2e6acbc6dd384880c58f0befcea78b9
|
7
|
+
data.tar.gz: e55ed3596acb13b15cfb8e03bc0dcc6e8f9ae30f16b654006cc916b97a126866ed128dfa33bc52e6ff2fe3729243139101cf98b195dc0d1696ee061f485b98e5
|
data/CHANGELOG.md
CHANGED
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
|
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
|
|
@@ -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.
|
10
|
-
site.
|
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.
|
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-
|
11
|
+
date: 2022-11-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|