jekyll_quote 0.1.0 → 0.3.0

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: 65b7377a2c75d3e1418bcab4842b7e804b1d2757a3c1447c419314833117582d
4
- data.tar.gz: a3598bdd5c4edc526f408ae33dc8db6d179c9ed9e9a5839da65b6cd6fc574de8
3
+ metadata.gz: 9cbfed4188300ddb73dc023ece7c80e583d1fd9ed0f75e48304d64196441f7c5
4
+ data.tar.gz: e907bb7aa7569a6bb54e96f581b7380391ae70949bf33f58fb5934b844fc3d39
5
5
  SHA512:
6
- metadata.gz: d2204156fb0b7f2c1cd8a23c771364d22ccd3d5c3bbb649ad376dc8585fa5515c683a304a53c35f89b49217472586aacbea7d6696ccc4f603621b810bd2664b8
7
- data.tar.gz: 1d6e5b223ffa416bd83610fbc6cdf1ee4af53e7d8e788b3a859dc2638c4935db1b7a640229904b9c494dcd804679e287d4279c45d0acbd46a616867db4ddc285
6
+ metadata.gz: 25679145652ff7d0aab9278339ae235c6b4dcaaf50efc887999dfd3c9f58f9fa9043705a87e604a9bb38d6f1f56e19a47ad7dd180bdaa48275c64a7b78472b27
7
+ data.tar.gz: 25870ef2184b6faa36355909288b7e1ae1c7fb0a5df71860f494f6b32d025b70477c5ea1808283f313ab6f03b8e0bdef0476c28d54904eb61afe7d79dc4bbdc9
data/CHANGELOG.md CHANGED
@@ -1,2 +1,8 @@
1
1
  ## 0.1.0 / 2023-01-12
2
2
  * Initial version
3
+
4
+ ## 0.2.0 / 2023-01-14
5
+ * Added options: `break`, `by`, and `noprep`
6
+
7
+ ## 0.3.0 / 2023-01-14
8
+ * Added CSS classes: `quoteAttribution` and `quoteText`
data/jekyll_quote.gemspec CHANGED
@@ -24,11 +24,6 @@ Gem::Specification.new do |spec|
24
24
 
25
25
  Thanks for installing #{spec.name}!
26
26
 
27
- END_MESSAGE
28
- spec.post_install_message = <<~END_MESSAGE
29
-
30
- Thanks for installing #{spec.name}!
31
-
32
27
  END_MESSAGE
33
28
  spec.require_paths = ['lib']
34
29
  spec.required_ruby_version = '>= 2.6.0'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JekyllQuoteVersion
4
- VERSION = '0.1.0'
4
+ VERSION = '0.3.0'
5
5
  end
data/lib/jekyll_quote.rb CHANGED
@@ -38,8 +38,8 @@ module Jekyll
38
38
  "#{@cite}\n"
39
39
  end
40
40
  tag = @break ? 'div' : 'span'
41
- attribution = "<#{tag} style='font-style:normal;'> &nbsp;&ndash; #{preposition} #{attribution}</#{tag}>\n"
42
- text = "<div>#{text}</div>" if @break
41
+ attribution = "<#{tag} class='quoteAttribution'> &nbsp;&ndash; #{preposition} #{attribution}</#{tag}>\n"
42
+ text = "<div class='quoteText'>#{text}</div>" if @break
43
43
  end
44
44
  <<~END_HERE
45
45
  <div class='quote'>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll_quote
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Slinn
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-12 00:00:00.000000000 Z
11
+ date: 2023-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -139,7 +139,6 @@ files:
139
139
  - lib/jekyll_quote/version.rb
140
140
  - spec/jekyll_quote_spec.rb
141
141
  - spec/spec_helper.rb
142
- - spec/status_persistence.txt
143
142
  homepage: https://www.mslinn.com/blog/2020/10/03/jekyll-plugins.html#quote
144
143
  licenses:
145
144
  - MIT
@@ -174,5 +173,4 @@ summary: Provides a Jekyll filter that creates formatted quotes.
174
173
  test_files:
175
174
  - spec/jekyll_quote_spec.rb
176
175
  - spec/spec_helper.rb
177
- - spec/status_persistence.txt
178
176
  ...
@@ -1,6 +0,0 @@
1
- example_id | status | run_time |
2
- -------------------------------- | ------ | --------------- |
3
- ./spec/jekyll_quote_spec.rb[1:1] | failed | 0.01849 seconds |
4
- ./spec/jekyll_quote_spec.rb[1:2] | failed | 0.00035 seconds |
5
- ./spec/jekyll_quote_spec.rb[1:3] | failed | 0.00018 seconds |
6
- ./spec/jekyll_quote_spec.rb[1:4] | failed | 0.00009 seconds |