Skip to content
This repository was archived by the owner on Aug 21, 2021. It is now read-only.

Commit 08a680e

Browse files
author
Brandon Kobilansky
committed
Update Podfile
1 parent b4b4fd0 commit 08a680e

File tree

2 files changed

+42
-26
lines changed

2 files changed

+42
-26
lines changed

Podfile

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,34 @@
11
source 'https://github.com/CocoaPods/Specs.git'
2-
platform :ios, '8.0'
2+
platform :ios, '9.0'
33
use_frameworks!
44

5+
def swinject_pods
6+
pod 'Swinject', '2.0.0-beta.2'
7+
pod 'SwinjectStoryboard', '1.0.0-beta.2'
8+
end
9+
510
target :SwinjectSimpleExample do
6-
pod 'Alamofire', '~> 3.1.0'
7-
pod 'SwiftyJSON', '~> 2.3.0'
8-
pod 'Swinject', '0.5'
11+
pod 'Alamofire', '~> 4.0'
12+
pod 'SwiftyJSON', '~> 3.1'
13+
swinject_pods
914
end
1015

1116
def testing_pods
12-
pod 'Quick', '0.8.0'
13-
pod 'Nimble', '3.0.0'
17+
pod 'Quick', '0.10'
18+
pod 'Nimble', '5.0'
19+
swinject_pods
1420
end
1521

1622
target 'SwinjectSimpleExampleTests' do
1723
testing_pods
1824
end
1925

20-
#target 'SwinjectSimpleExampleUITests' do
21-
# testing_pods
22-
#end
26+
post_install do |installer|
27+
installer.pods_project.targets.each do |target|
28+
target.build_configurations.each do |config|
29+
# https://github.com/CocoaPods/CocoaPods/issues/5521
30+
# Now that we've updated to Swift 3, ensure that CocoaPods specify the correct version setting for all targets
31+
config.build_settings['SWIFT_VERSION'] = '3.0'
32+
end
33+
end
34+
end

Podfile.lock

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,28 @@
11
PODS:
2-
- Alamofire (3.1.2)
3-
- Nimble (3.0.0)
4-
- Quick (0.8.0)
5-
- SwiftyJSON (2.3.0)
6-
- Swinject (0.5)
2+
- Alamofire (4.0.1)
3+
- Nimble (5.0.0)
4+
- Quick (0.10.0)
5+
- SwiftyJSON (3.1.1)
6+
- Swinject (2.0.0-beta.2)
7+
- SwinjectStoryboard (1.0.0-beta.2):
8+
- Swinject (= 2.0.0-beta.2)
79

810
DEPENDENCIES:
9-
- Alamofire (~> 3.1.0)
10-
- Nimble (= 3.0.0)
11-
- Quick (= 0.8.0)
12-
- SwiftyJSON (~> 2.3.0)
13-
- Swinject (= 0.5)
11+
- Alamofire (~> 4.0)
12+
- Nimble (= 5.0)
13+
- Quick (= 0.10)
14+
- SwiftyJSON (~> 3.1)
15+
- Swinject (= 2.0.0-beta.2)
16+
- SwinjectStoryboard (= 1.0.0-beta.2)
1417

1518
SPEC CHECKSUMS:
16-
Alamofire: 7c16ca65f3c7e681fd925fd7f2dec7747ff96855
17-
Nimble: 4c353d43735b38b545cbb4cb91504588eb5de926
18-
Quick: 563d0f6ec5f72e394645adb377708639b7dd38ab
19-
SwiftyJSON: 8d6b61a70277ef2a5d710d372e06e7e2d87fb9e4
20-
Swinject: 0bf92c3336808a69d162bcf8f338774640de518a
19+
Alamofire: 7682d43245de14874acd142ec137b144aa1dd335
20+
Nimble: 56fc9f5020effa2206de22c3dd910f4fb011b92f
21+
Quick: 5d290df1c69d5ee2f0729956dcf0fd9a30447eaa
22+
SwiftyJSON: f0be2e604f83e8405a624e9f891898bf6ed4e019
23+
Swinject: 69a893192efa9f2cc44be79ef423d04d571b6af9
24+
SwinjectStoryboard: b52b45821a50386ef604c3cd098f8029a50a268d
2125

22-
PODFILE CHECKSUM: 9df9ec5a8f8f2dbfc93d9bc8d6377d834fd385d8
26+
PODFILE CHECKSUM: 10288fb3b26677fe16a777a1c9fad530301d305d
2327

24-
COCOAPODS: 1.0.1
28+
COCOAPODS: 1.1.1

0 commit comments

Comments
 (0)