jekyll_href 1.0.2 → 1.0.3
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/CHANGELOG.md +6 -2
- data/Gemfile.lock +1 -1
- data/README.md +7 -0
- data/lib/jekyll_href/version.rb +1 -1
- data/lib/jekyll_href.rb +1 -1
- 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: 6901661f243a98ec091d600a04cf6b032ce688c4423e58516ab6e0f510e159a3
|
|
4
|
+
data.tar.gz: 8990c4e0c968e441c21070bcf7dc04c3c7d204279252d0190bbeb333b6470e03
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54b88f4508c88e00987ae7e2f5cfbb08902cc2e3d0eaddb0d6694c4ecda15fcfde4740bd10d7428534508b7abf35ac11de79f9d962c33545d7a7859f2288f93e
|
|
7
|
+
data.tar.gz: '052296b4a4c9fbfe0567651dfbd1b2238f0d16de18b3964a5c7543f7090d06e1523fa37a7f1ad24fde1dc6332a6761f3ca44983d381e3ef7dd0b9159f47de404'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
##
|
|
2
|
-
*
|
|
1
|
+
## 1.0.3 / 2022-03-14
|
|
2
|
+
* Fixed default value for implied URL string
|
|
3
|
+
* Added unit tests, but they do not work yet
|
|
4
|
+
|
|
5
|
+
## 1.0.2 / 2022-03-13
|
|
6
|
+
* Fixed frozen string issue
|
|
3
7
|
|
|
4
8
|
## 1.0.0 / 2022-03-11
|
|
5
9
|
* Made into a Ruby gem and published on RubyGems.org as [jekyll_href](https://rubygems.org/gems/jekyll_href).
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -16,6 +16,9 @@ Note that the url should not be enclosed in quotes.
|
|
|
16
16
|
Also please note that the square brackets denote optional parameters, and should not be typed.
|
|
17
17
|
|
|
18
18
|
|
|
19
|
+
### Additional Information
|
|
20
|
+
More information is available on my web site about [my Jekyll plugins](https://www.mslinn.com/blog/2020/10/03/jekyll-plugins.html).
|
|
21
|
+
|
|
19
22
|
## Installation
|
|
20
23
|
|
|
21
24
|
Add this line to your Jekyll website's `Gemfile`, within the `jekyll_plugins` group:
|
|
@@ -91,6 +94,10 @@ Expands to this:
|
|
|
91
94
|
|
|
92
95
|
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
93
96
|
|
|
97
|
+
Install development dependencies like this:
|
|
98
|
+
|
|
99
|
+
$ BUNDLE_WITH="development" bundle install
|
|
100
|
+
|
|
94
101
|
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).
|
|
95
102
|
|
|
96
103
|
|
data/lib/jekyll_href/version.rb
CHANGED
data/lib/jekyll_href.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll_href
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Slinn
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-03-
|
|
11
|
+
date: 2022-03-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|