swedbank-pay-design-guide-jekyll-theme 2.1.6 → 2.1.7.pre.beta.1

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: 8dcf9afeec370dc1b560c48c832a06a3e9ff758d16185411fb6574f59d73d29c
4
- data.tar.gz: 1c0d604d894884aea64f9a80a304201badf45cdbbd4f1d3dc29f85a189d627b4
3
+ metadata.gz: 91c3148b3e731967e82185263f68ed7573f4d92a2f2574b24f62fb7efe128274
4
+ data.tar.gz: c354936a63fe7205e1da4516410f50047672e43454d6a5ed97128c06afce62c4
5
5
  SHA512:
6
- metadata.gz: 9c446bd24fcee27106cb73358f77ee9b4a9f6f909a0f3f622c9f84ad0aa44db7e3862ef4bee4e0d72fd00eecceef56a8ca8193ff53a1e29be24aa66f6424c046
7
- data.tar.gz: 9aad555f2902edc8f98d5274f1a4456cedeb6e5afb1cab304ee21ba5dae02bdee643aead1a2ecedbf81361c9c56ec476e1794fb3e355a29dd0efad9b3505865f
6
+ metadata.gz: 4928fad59dc48404ed387383b1c88f745e97d34c6b1f0f6d6975e9ac80aced72f7c31d00b360f6e7f305c13bce0594d22b6a265790f54d3f8c93db669e414d80
7
+ data.tar.gz: f60597a41664d9bc9afb46c238c381018f54dbc7df4c73aad8c13dc69d9df8170cf4a2568a346a46b914adb2eca7559a07f0a789b98f65070ba9a34eb47e49a1
@@ -29,43 +29,47 @@ layout: null
29
29
  {%- endfor -%}
30
30
  {%- if site.tipue_search.include.pages == true -%}
31
31
  {%- for page in site.html_pages -%}
32
- {%- unless page.exclude_from_search == true or excluded_files contains page.path -%}
33
- {%- assign has_excluded_taxonomy = false -%}
34
- {%- for tag in page.tags -%}
35
- {%- if excluded_taxonomies contains tag -%}
36
- {%- assign has_excluded_taxonomy = true -%}
37
- {%- endif -%}
38
- {%- endfor -%}
39
- {%- for category in page.categories -%}
40
- {%- if excluded_taxonomies contains category -%}
41
- {%- assign has_excluded_taxonomy = true -%}
42
- {%- endif -%}
43
- {%- endfor -%}
44
- {%- unless has_excluded_taxonomy == true -%}
45
- {%- assign index = index | push: page | uniq -%}
32
+ {%- if page.url contains "/checkout-v3/" -%} {# Check if page URL contains the desired path #}
33
+ {%- unless page.exclude_from_search == true or excluded_files contains page.path -%}
34
+ {%- assign has_excluded_taxonomy = false -%}
35
+ {%- for tag in page.tags -%}
36
+ {%- if excluded_taxonomies contains tag -%}
37
+ {%- assign has_excluded_taxonomy = true -%}
38
+ {%- endif -%}
39
+ {%- endfor -%}
40
+ {%- for category in page.categories -%}
41
+ {%- if excluded_taxonomies contains category -%}
42
+ {%- assign has_excluded_taxonomy = true -%}
43
+ {%- endif -%}
44
+ {%- endfor -%}
45
+ {%- unless has_excluded_taxonomy == true -%}
46
+ {%- assign index = index | push: page | uniq -%}
47
+ {%- endunless -%}
46
48
  {%- endunless -%}
47
- {%- endunless -%}
49
+ {%- endif -%}
48
50
  {%- endfor -%}
49
51
  {%- endif -%}
50
52
  {%- for collection in site.tipue_search.include.collections -%}
51
53
  {%- assign documents = site.documents | where:"collection",collection -%}
52
54
  {%- for document in documents -%}
53
- {%- unless document.exclude_from_search == true or excluded_files contains document.path -%}
54
- {%- assign has_excluded_taxonomy = false -%}
55
- {%- for tag in document.tags -%}
56
- {%- if excluded_taxonomies contains tag -%}
57
- {%- assign has_excluded_taxonomy = true -%}
58
- {%- endif -%}
59
- {%- endfor -%}
60
- {%- for category in document.categories -%}
61
- {%- if excluded_taxonomies contains category -%}
62
- {%- assign has_excluded_taxonomy = true -%}
63
- {%- endif -%}
64
- {%- endfor -%}
65
- {%- unless has_excluded_taxonomy == true -%}
66
- {%- assign index = index | push: document | uniq -%}
55
+ {%- if document.url contains "/content-v3/" -%} {# Check if document URL contains the desired path #}
56
+ {%- unless document.exclude_from_search == true or excluded_files contains document.path -%}
57
+ {%- assign has_excluded_taxonomy = false -%}
58
+ {%- for tag in document.tags -%}
59
+ {%- if excluded_taxonomies contains tag -%}
60
+ {%- assign has_excluded_taxonomy = true -%}
61
+ {%- endif -%}
62
+ {%- endfor -%}
63
+ {%- for category in document.categories -%}
64
+ {%- if excluded_taxonomies contains category -%}
65
+ {%- assign has_excluded_taxonomy = true -%}
66
+ {%- endif -%}
67
+ {%- endfor -%}
68
+ {%- unless has_excluded_taxonomy == true -%}
69
+ {%- assign index = index | push: document | uniq -%}
70
+ {%- endunless -%}
67
71
  {%- endunless -%}
68
- {%- endunless -%}
72
+ {%- endif -%}
69
73
  {%- endfor -%}
70
74
  {%- endfor -%}
71
75
  var tipuesearch = {"pages": [
data/lib/gem_version.rb CHANGED
@@ -4,7 +4,7 @@ module Gem
4
4
  # Gem Specification
5
5
  class Specification
6
6
  def self.gem_version
7
- '2.1.6'
7
+ '2.1.7-beta.1'
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: swedbank-pay-design-guide-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.6
4
+ version: 2.1.7.pre.beta.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Swedbank Pay
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-09 00:00:00.000000000 Z
11
+ date: 2023-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -215,7 +215,7 @@ dependencies:
215
215
  version: '3.19'
216
216
  - - "<"
217
217
  - !ruby/object:Gem::Version
218
- version: '5'
218
+ version: '6'
219
219
  type: :development
220
220
  prerelease: false
221
221
  version_requirements: !ruby/object:Gem::Requirement
@@ -225,7 +225,7 @@ dependencies:
225
225
  version: '3.19'
226
226
  - - "<"
227
227
  - !ruby/object:Gem::Version
228
- version: '5'
228
+ version: '6'
229
229
  - !ruby/object:Gem::Dependency
230
230
  name: html-proofer-unrendered-markdown
231
231
  requirement: !ruby/object:Gem::Requirement
@@ -472,9 +472,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
472
472
  version: 2.5.0
473
473
  required_rubygems_version: !ruby/object:Gem::Requirement
474
474
  requirements:
475
- - - ">="
475
+ - - ">"
476
476
  - !ruby/object:Gem::Version
477
- version: '0'
477
+ version: 1.3.1
478
478
  requirements: []
479
479
  rubygems_version: 3.1.6
480
480
  signing_key: