wcc-contentful-app 1.3.0 → 1.4.0.rc1

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: 3bf429e535dc9c5c753e3468a8595bf049e633bc75fdda5e3d9bca30ff971e02
4
- data.tar.gz: bd25d75d2a97383392614936177d307ddb0577a3f7afba8a1d02234bdf81631a
3
+ metadata.gz: 73ab139e60d82fa6cde5ba6da5b16c816aeaa736d6b687e56edf4c9593b18ce1
4
+ data.tar.gz: 3356071c23c83e81044322e9a01f3ecd7f1ccfbd5a0115b2fc874ecc3118ded7
5
5
  SHA512:
6
- metadata.gz: a713913402d4b69b17ed490e4c25ac1e6c3110b9698e87ed6ab1e23f67aaebbc12acb209dfaaec44e5a2b16937cb08751ef7321020f2c3e1955bbf1d5ba34500
7
- data.tar.gz: 3ce3e2b1f5d6a064faef9c86154b983febae13aaddd392c5a0575d3044ea8b9812ec2a2ed15943f0ca711165eae7429c7c744f7f281c3c891ce874b015cf8e47
6
+ metadata.gz: 392f48b520c2f1598192dbe096cc22c8367d87f8d5ab53f933079c99605542c1b45924e2b0f356bddb93782721e803e86226e8d2900c1cb5de9d60db67ce4d64
7
+ data.tar.gz: d4babcf7d71c49486d64fa4f48955062f96fae8ee942347ccd22c933d3f1c899f773018fd7f1b613fc199e77252e51cb1cd7cd5f820b477143790698e0a74cc9
@@ -43,6 +43,6 @@ class WCC::Contentful::App::PagesController < ApplicationController
43
43
  def global_site_config
44
44
  return unless model = site_config_model
45
45
 
46
- @global_site_config ||= model.instance(preview?)
46
+ @global_site_config ||= model.instance(preview?, locale: I18n.locale)
47
47
  end
48
48
  end
@@ -3,7 +3,7 @@
3
3
  module WCC
4
4
  module Contentful
5
5
  module App
6
- VERSION = '1.3.0'
6
+ VERSION = '1.4.0.rc1'
7
7
  end
8
8
  end
9
9
  end
@@ -16,10 +16,10 @@ class WCC::Contentful::Model::MenuButton < WCC::Contentful::Model
16
16
  return external_link if external_link
17
17
 
18
18
  url = (link&.try(:slug) || link&.try(:url))
19
- return url unless fragment.present?
20
-
21
19
  url = URI(url || '')
22
- url.fragment = fragment
20
+
21
+ url.path = "/#{sys.locale}#{url.path}" if sys.locale != WCC::Contentful.configuration.default_locale
22
+ url.fragment = fragment if fragment.present?
23
23
  url.to_s
24
24
  end
25
25
 
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class WCC::Contentful::Model::SiteConfig < WCC::Contentful::Model
4
- def self.instance(preview = false) # rubocop:disable Style/OptionalBooleanParameter
5
- find_by(foreign_key: 'default', options: { include: 4, preview: preview })
4
+ def self.instance(preview = false, locale: nil) # rubocop:disable Style/OptionalBooleanParameter
5
+ find_by(foreign_key: 'default', options: { include: 4, preview: preview, locale: locale })
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wcc-contentful-app
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Watermark Dev
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-19 00:00:00.000000000 Z
11
+ date: 2023-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capybara
@@ -338,14 +338,14 @@ dependencies:
338
338
  requirements:
339
339
  - - "~>"
340
340
  - !ruby/object:Gem::Version
341
- version: 1.3.0
341
+ version: 1.4.0.rc1
342
342
  type: :runtime
343
343
  prerelease: false
344
344
  version_requirements: !ruby/object:Gem::Requirement
345
345
  requirements:
346
346
  - - "~>"
347
347
  - !ruby/object:Gem::Version
348
- version: 1.3.0
348
+ version: 1.4.0.rc1
349
349
  description: Models, Controllers, and Views common to Watermark Church apps
350
350
  email:
351
351
  - dev@watermark.org
@@ -444,9 +444,9 @@ homepage: https://github.com/watermarkchurch/wcc-contentful
444
444
  licenses:
445
445
  - MIT
446
446
  metadata:
447
- documentation_uri: https://watermarkchurch.github.io/wcc-contentful/1.3/wcc-contentful-app
447
+ documentation_uri: https://watermarkchurch.github.io/wcc-contentful/1.4/wcc-contentful-app
448
448
  rubygems_mfa_required: 'true'
449
- post_install_message:
449
+ post_install_message:
450
450
  rdoc_options: []
451
451
  require_paths:
452
452
  - lib
@@ -457,12 +457,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
457
457
  version: '2.7'
458
458
  required_rubygems_version: !ruby/object:Gem::Requirement
459
459
  requirements:
460
- - - ">="
460
+ - - ">"
461
461
  - !ruby/object:Gem::Version
462
- version: '0'
462
+ version: 1.3.1
463
463
  requirements: []
464
- rubygems_version: 3.1.6
465
- signing_key:
464
+ rubygems_version: 3.3.7
465
+ signing_key:
466
466
  specification_version: 4
467
467
  summary: "[![Gem Version](https://badge.fury.io/rb/wcc-contentful-app.svg)](https://rubygems.org/gems/wcc-contentful-app)
468
468
  [![Build Status](https://circleci.com/gh/watermarkchurch/wcc-contentful.svg?style=svg)](https://circleci.com/gh/watermarkchurch/wcc-contentful)