Skip to content

Commit 8e187b3

Browse files
authored
Merge pull request #60 from clutter/storyboard-helper
Fix StoryboardController Helper
2 parents b693b40 + c7c0f8f commit 8e187b3

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

Example/PodApp/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
platform :ios, '13.3'
1+
platform :ios, '14.0'
22
use_frameworks!
33

44
target 'TiltUp_Example' do

Example/PodApp/Podfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PODS:
22
- SwiftLint (0.34.0)
3-
- TiltUp (3.1.1)
4-
- TiltUpTest (3.1.1):
5-
- TiltUp (= 3.1.1)
3+
- TiltUp (4.0.0)
4+
- TiltUpTest (4.0.0):
5+
- TiltUp (= 4.0.0)
66

77
DEPENDENCIES:
88
- SwiftLint
@@ -21,9 +21,9 @@ EXTERNAL SOURCES:
2121

2222
SPEC CHECKSUMS:
2323
SwiftLint: 79d48a17c6565dc286c37efb8322c7b450f95c67
24-
TiltUp: aa50509a846d0e8435f5332785b0cd9cc46fbe36
25-
TiltUpTest: 7e431b060c4ee6ceea8c024c36feb52c7cdb9452
24+
TiltUp: 05e1aa5aa3321cbf5b14639c6aa2b37042bdad1a
25+
TiltUpTest: 44605c6fd15bbb71e74e5ff43c4ff020c21a0839
2626

27-
PODFILE CHECKSUM: 0e23ef3e43ff7a2a471fd59d57def6d19f6f9e9e
27+
PODFILE CHECKSUM: 09f75ed10279ae615ecf86a29c2627931ad6bade
2828

2929
COCOAPODS: 1.11.2

Example/PodApp/TiltUp.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@
575575
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
576576
GCC_WARN_UNUSED_FUNCTION = YES;
577577
GCC_WARN_UNUSED_VARIABLE = YES;
578-
IPHONEOS_DEPLOYMENT_TARGET = 13.3;
578+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
579579
MTL_ENABLE_DEBUG_INFO = YES;
580580
ONLY_ACTIVE_ARCH = YES;
581581
SDKROOT = iphoneos;
@@ -624,7 +624,7 @@
624624
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
625625
GCC_WARN_UNUSED_FUNCTION = YES;
626626
GCC_WARN_UNUSED_VARIABLE = YES;
627-
IPHONEOS_DEPLOYMENT_TARGET = 13.3;
627+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
628628
MTL_ENABLE_DEBUG_INFO = NO;
629629
SDKROOT = iphoneos;
630630
SWIFT_COMPILATION_MODE = wholemodule;
@@ -640,7 +640,7 @@
640640
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
641641
DEVELOPMENT_TEAM = T4U6BU9TBH;
642642
INFOPLIST_FILE = "$(SRCROOT)/../Sources/SupportFiles/Info.plist";
643-
IPHONEOS_DEPLOYMENT_TARGET = 13.3;
643+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
644644
LD_RUNPATH_SEARCH_PATHS = (
645645
"$(inherited)",
646646
"@executable_path/Frameworks",
@@ -659,7 +659,7 @@
659659
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
660660
DEVELOPMENT_TEAM = T4U6BU9TBH;
661661
INFOPLIST_FILE = "$(SRCROOT)/../Sources/SupportFiles/Info.plist";
662-
IPHONEOS_DEPLOYMENT_TARGET = 13.3;
662+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
663663
LD_RUNPATH_SEARCH_PATHS = (
664664
"$(inherited)",
665665
"@executable_path/Frameworks",

Sources/TiltUp/Architecture/StoryboardViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public protocol StoryboardViewController: AnyObject {
1616
public extension StoryboardViewController {
1717
static func make() -> Self {
1818
let name = String(describing: self).replacingOccurrences(of: "Controller", with: "")
19-
let storyboard = UIStoryboard(name: name, bundle: Bundle(for: self))
19+
let storyboard = UIStoryboard(name: name, bundle: bundle)
2020

2121
guard let controller = storyboard.instantiateInitialViewController() as? Self else {
2222
fatalError("StoryboardViewController: unable to instantiate '\(self)'")

TiltUp.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'TiltUp'
3-
s.version = '3.1.2'
3+
s.version = '4.0.0'
44
s.summary = 'Official Clutter SDK in Swift to access core iOS features.'
55

66
s.description = <<-DESC
@@ -15,7 +15,7 @@ pre-built components and utilites that are useful across all of our apps.
1515

1616
s.author = { 'Clutter' => '[email protected]' }
1717
s.license = 'MIT'
18-
s.ios.deployment_target = '13.3'
18+
s.ios.deployment_target = '14.0'
1919
s.swift_versions = ['5.1']
2020

2121
s.source = { :git => "[email protected]:clutter/TiltUp.git", :tag => "#{s.version}" }

TiltUpTest.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'TiltUpTest'
3-
s.version = '3.1.2'
3+
s.version = '4.0.0'
44
s.summary = 'Official Clutter SDK in Swift to access core iOS test helpers.'
55

66
s.description = <<-DESC
@@ -12,7 +12,7 @@ writing unit tests for components that are written using TiltUp.
1212

1313
s.author = { 'Clutter' => '[email protected]' }
1414
s.license = 'MIT'
15-
s.ios.deployment_target = '13.3'
15+
s.ios.deployment_target = '14.0'
1616
s.swift_versions = ['5.1']
1717

1818
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }

0 commit comments

Comments
 (0)