Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
siegrainwong committed Jan 22, 2018
1 parent c018ac8 commit b8bf699
Show file tree
Hide file tree
Showing 239 changed files with 25,504 additions and 1 deletion.
36 changes: 36 additions & 0 deletions Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'

target 'SGAPIRequest' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

# Pods for SGAPIRequest

pod 'Moya', '~> 10.0.1'
pod 'PromiseKit', '~> 4.3'
pod 'HandyJSON', '~> 1.8.0'
pod "AwesomeCache", "~> 5.0"

target 'SGAPIRequestTests' do
inherit! :search_paths
# Pods for testing
end

target 'SGAPIRequestUITests' do
inherit! :search_paths
# Pods for testing
end

end

# 指定库使用 Swift 3
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'HandyJSON' || target.name == 'Moya'
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end
end
39 changes: 39 additions & 0 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
PODS:
- Alamofire (4.6.0)
- AwesomeCache (5.0)
- HandyJSON (1.8.0)
- Moya (10.0.1):
- Moya/Core (= 10.0.1)
- Moya/Core (10.0.1):
- Alamofire (~> 4.1)
- Result (~> 3.0)
- PromiseKit (4.5.1):
- PromiseKit/Foundation (= 4.5.1)
- PromiseKit/QuartzCore (= 4.5.1)
- PromiseKit/UIKit (= 4.5.1)
- PromiseKit/CorePromise (4.5.1)
- PromiseKit/Foundation (4.5.1):
- PromiseKit/CorePromise
- PromiseKit/QuartzCore (4.5.1):
- PromiseKit/CorePromise
- PromiseKit/UIKit (4.5.1):
- PromiseKit/CorePromise
- Result (3.2.4)

DEPENDENCIES:
- AwesomeCache (~> 5.0)
- HandyJSON (~> 1.8.0)
- Moya (~> 10.0.1)
- PromiseKit (~> 4.3)

SPEC CHECKSUMS:
Alamofire: f41a599bd63041760b26d393ec1069d9d7b917f4
AwesomeCache: d8906955242173357caa0be0214d5e77dec32cc5
HandyJSON: edaaa3278bf4c4c96d6f7382b80d6b91c88d3bf5
Moya: 9e621707ff754eeb51ff3ec51a3d54e517c0733a
PromiseKit: 445dac9b2c3c3b4b31b5f842bc325700b848a8bd
Result: d2d07204ce72856f1fd9130bbe42c35a7b0fea10

PODFILE CHECKSUM: cea463a06aeb0fc057868db71784b670b51d089d

COCOAPODS: 1.3.1
19 changes: 19 additions & 0 deletions Pods/Alamofire/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

236 changes: 236 additions & 0 deletions Pods/Alamofire/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b8bf699

Please sign in to comment.