jekyll_href 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d29ce08e7cf07fc3acbe97e979f72e74d5110a32e3005d56b3910519f8edee6b
4
- data.tar.gz: 798085924055ba3509413dccef85dcd584c2d781c3d32403d03ce9125b163349
3
+ metadata.gz: 6901661f243a98ec091d600a04cf6b032ce688c4423e58516ab6e0f510e159a3
4
+ data.tar.gz: 8990c4e0c968e441c21070bcf7dc04c3c7d204279252d0190bbeb333b6470e03
5
5
  SHA512:
6
- metadata.gz: 13184917dbf55acf5e84fa64b01bc3c8c7446a75c5db61eadeca5087ee8c701d031687ca1c7c9412c00472635691369d4cd44f70bb8ae56e4789aeba1afdc956
7
- data.tar.gz: b83722150b30f7845e26e7c065f982230581813aaefd5fac19ec33fecc19ef759f089d23b18b52892e932e8cca228880d4c849168101441ff6e676e9f6c4145a
6
+ metadata.gz: 54b88f4508c88e00987ae7e2f5cfbb08902cc2e3d0eaddb0d6694c4ecda15fcfde4740bd10d7428534508b7abf35ac11de79f9d962c33545d7a7859f2288f93e
7
+ data.tar.gz: '052296b4a4c9fbfe0567651dfbd1b2238f0d16de18b3964a5c7543f7090d06e1523fa37a7f1ad24fde1dc6332a6761f3ca44983d381e3ef7dd0b9159f47de404'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
- ## HEAD / 2022-03-12
2
- * Added unit tests
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jekyll_href (1.0.2)
4
+ jekyll_href (1.0.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JekyllHref
4
- VERSION = '1.0.2'
4
+ VERSION = '1.0.3'
5
5
  end
data/lib/jekyll_href.rb CHANGED
@@ -85,7 +85,7 @@ module JekyllHref
85
85
 
86
86
  @text = @tokens.join(' ').strip
87
87
  if @text.empty?
88
- @text = "<code>${@link}</code>"
88
+ @text = "<code>#{@link}</code>"
89
89
  @link = "https://#{@link}"
90
90
  end
91
91
 
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.2
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-13 00:00:00.000000000 Z
11
+ date: 2022-03-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler