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

Commit 6051e97

Browse files
committed
Merge branch 'update-for-xcode7-beta6'
2 parents 3617f2a + fe7a53b commit 6051e97

File tree

4 files changed

+30
-24
lines changed

4 files changed

+30
-24
lines changed

Podfile

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

5-
pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git', :commit => '1b7b1f1aa'
6-
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git', :commit => '45ca854ce'
7-
pod 'Swinject', '~> 0.2'
5+
pod 'Alamofire', '2.0.0-beta.3'
6+
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git', :commit => 'f269523ac572979245baa99c8475eab73caf1e9b'
7+
pod 'Swinject', '~> 0.2.1'
88

99

1010
def testing_pods
11-
pod 'Quick', '~> 0.5.0'
12-
pod 'Nimble', '2.0.0-rc.2'
11+
pod 'Quick', :git => 'https://github.com/Quick/Quick.git', :commit => '1fbcd8a05f6e896e2db66a2e82527b7f24766ef8'
12+
pod 'Nimble', :git => 'https://github.com/Quick/Nimble.git', :commit => 'e3e3978ef610927d70eafd333e162855ad7b6f77'
1313
end
1414

1515
target 'SwinjectSimpleExampleTests' do

Podfile.lock

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,44 @@
11
PODS:
2-
- Alamofire (1.3.0)
2+
- Alamofire (2.0.0-beta.3)
33
- Nimble (2.0.0-rc.2)
44
- Quick (0.5.1)
55
- SwiftyJSON (2.2.1)
6-
- Swinject (0.2)
6+
- Swinject (0.2.1)
77

88
DEPENDENCIES:
9-
- Alamofire (from `https://github.com/Alamofire/Alamofire.git`, commit `1b7b1f1aa`)
10-
- Nimble (= 2.0.0-rc.2)
11-
- Quick (~> 0.5.0)
12-
- SwiftyJSON (from `https://github.com/SwiftyJSON/SwiftyJSON.git`, commit `45ca854ce`)
13-
- Swinject (~> 0.2)
9+
- Alamofire (= 2.0.0-beta.3)
10+
- Nimble (from `https://github.com/Quick/Nimble.git`, commit `e3e3978ef610927d70eafd333e162855ad7b6f77`)
11+
- Quick (from `https://github.com/Quick/Quick.git`, commit `1fbcd8a05f6e896e2db66a2e82527b7f24766ef8`)
12+
- SwiftyJSON (from `https://github.com/SwiftyJSON/SwiftyJSON.git`, commit `f269523ac572979245baa99c8475eab73caf1e9b`)
13+
- Swinject (~> 0.2.1)
1414

1515
EXTERNAL SOURCES:
16-
Alamofire:
17-
:commit: 1b7b1f1aa
18-
:git: https://github.com/Alamofire/Alamofire.git
16+
Nimble:
17+
:commit: e3e3978ef610927d70eafd333e162855ad7b6f77
18+
:git: https://github.com/Quick/Nimble.git
19+
Quick:
20+
:commit: 1fbcd8a05f6e896e2db66a2e82527b7f24766ef8
21+
:git: https://github.com/Quick/Quick.git
1922
SwiftyJSON:
20-
:commit: 45ca854ce
23+
:commit: f269523ac572979245baa99c8475eab73caf1e9b
2124
:git: https://github.com/SwiftyJSON/SwiftyJSON.git
2225

2326
CHECKOUT OPTIONS:
24-
Alamofire:
25-
:commit: 1b7b1f1aa
26-
:git: https://github.com/Alamofire/Alamofire.git
27+
Nimble:
28+
:commit: e3e3978ef610927d70eafd333e162855ad7b6f77
29+
:git: https://github.com/Quick/Nimble.git
30+
Quick:
31+
:commit: 1fbcd8a05f6e896e2db66a2e82527b7f24766ef8
32+
:git: https://github.com/Quick/Quick.git
2733
SwiftyJSON:
28-
:commit: 45ca854ce
34+
:commit: f269523ac572979245baa99c8475eab73caf1e9b
2935
:git: https://github.com/SwiftyJSON/SwiftyJSON.git
3036

3137
SPEC CHECKSUMS:
32-
Alamofire: e57db85401895fda01783b3b9bda5b32d9f347ff
38+
Alamofire: 39dddb7d3725d1771b1d2f7099c8bd45bd83ffbb
3339
Nimble: e3cf5e73a491daf21c2bc88783dbfc55ce8b8e02
3440
Quick: 7426537a99e75076d6930c5b6da58006e4a9f38a
3541
SwiftyJSON: ae2d0a3d68025d136602a33c4ee215091ced3e33
36-
Swinject: 08c22f85e8f073257befa6847485e348c8f13825
42+
Swinject: 771e1128fa66773c302bc1d877dd42cf33a95d81
3743

3844
COCOAPODS: 0.38.2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is an example project to demonstrate [dependency injection](https://en.wiki
66

77
## Requirements
88

9-
- Xcode 7 beta 5
9+
- Xcode 7 beta 6
1010
- [CocoaPods](https://cocoapods.org) 0.38 or later
1111

1212
## Installation

SwinjectSimpleExample/OpenWeatherMap.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ struct OpenWeatherMap {
2222
static var parameters: [String: String] {
2323
return [
2424
"APPID": apiKey,
25-
"id": ",".join(cityIds.map { String($0) })
25+
"id": cityIds.map { String($0) }.joinWithSeparator(",")
2626
]
2727
}
2828
}

0 commit comments

Comments
 (0)