cloudcannon-jekyll 0.0.5 → 0.0.6

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: b36f80ce2a740dfc0c3b4148c3eac22bb4cd96db0851a385395631ad1d4aeb9b
4
- data.tar.gz: 3f245b2997b8ce664cfc96cad1abedfc62bcfaa3e7ec6dc9f514247512bb8a3d
3
+ metadata.gz: 3db71cd9bcacadb8f15366629da8293090b1d69c978036cf268b5a92ea85df67
4
+ data.tar.gz: 1f56b1012167361c96d4f1fd503fe05f966d477e514bf119049c866c611d6286
5
5
  SHA512:
6
- metadata.gz: d9c6dc0af61b9aee3e3c8b928d918a226d19821c630e50390432cc486c824a2b98742b7edb7379a5584b68c1149fa34d5ee6c3cad653b61af5025199597bcca3
7
- data.tar.gz: 9eb948def89ebd12f1bdf1618e19d26523019b8c1eaf80a6a0d2c5d163c786002d61b6feceb3bf3bb365eaf0255f4dc4a5372c0bf66111ea64a0e9cba80df215
6
+ metadata.gz: 2b937bad2c330cdb0508123e368af6ccf92d409945f25ca1c09d1c33735f2fba3b14814a4096719d45d1b7e15da785d674a3381c5e89a1bfba6306013d6b952e
7
+ data.tar.gz: f4d83f61a966a9514f88d6ce45819bc89ed110cbf133fca24eb9314fa0b0b40a8d7cd0d7790236226766e5073cf57c43b97c4eb28268d2cac25b68b71f4e3864
data/HISTORY.md CHANGED
@@ -1,7 +1,7 @@
1
- # 1.0.0
1
+ # 0.0.6
2
2
 
3
- * Initial release
4
- * Dropped support for ruby 2.3
3
+ * Fixed unsupported Fixnum for Ruby 2.3
4
+ * Fixed reference to unsupported String::match? for Ruby 2.3
5
5
 
6
6
  # 0.0.5
7
7
 
@@ -18,7 +18,7 @@ module CloudCannonJekyll
18
18
  def source_path
19
19
  path = "_cloudcannon/details.json"
20
20
  path = "_cloudcannon/details-2.x.json" if Jekyll::VERSION.start_with? "2."
21
- path = "_cloudcannon/details-3.0.x.json" if Jekyll::VERSION.match? %r!3\.[0-4]\.!
21
+ path = "_cloudcannon/details-3.0.x.json" unless (%r!3\.[0-4]\.! =~ Jekyll::VERSION).nil?
22
22
 
23
23
  File.expand_path(path, File.dirname(__FILE__))
24
24
  end
@@ -12,7 +12,8 @@ module CloudCannonJekyll
12
12
  Date,
13
13
  Time,
14
14
  NilClass,
15
- ].freeze
15
+ Object.const_defined?("Fixnum") ? Fixnum : nil,
16
+ ].compact.freeze
16
17
 
17
18
  @document_types = [
18
19
  Jekyll::Document,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CloudCannonJekyll
4
- VERSION = "0.0.5"
4
+ VERSION = "0.0.6"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudcannon-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - CloudCannon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-19 00:00:00.000000000 Z
11
+ date: 2019-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll