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

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: 04fe2440eb0620ec5a7116d1afa9146d7125ea21f3678a52fac2acbdb4ae1d83
4
- data.tar.gz: 972d264157d5199802f918826b1732fc072634116e92b7f1027fb3101a23a0e1
3
+ metadata.gz: 91c3148b3e731967e82185263f68ed7573f4d92a2f2574b24f62fb7efe128274
4
+ data.tar.gz: c354936a63fe7205e1da4516410f50047672e43454d6a5ed97128c06afce62c4
5
5
  SHA512:
6
- metadata.gz: 0fb35252549b20de9c6c1c2e8ee00e3cb355949465fbfe5f94844509ce97ab9ff8b53e4389376a85ec1a2b8e035082785084e26fa51e050e4f5c364b9712e058
7
- data.tar.gz: 4e2b159ab1a399bc0633addbee79c4fba5bd2b4c3cffd936dfcfdb006966e3c7324df566e17818ed06ff55224a7b816544bc83db02e515988290b28afdcb2675
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.5'
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.5
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-01 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: