-
Notifications
You must be signed in to change notification settings - Fork 1
/
SwiftCommons.podspec
58 lines (43 loc) · 1.4 KB
/
SwiftCommons.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#
# Be sure to run `pod lib lint SwiftCommons.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SwiftCommons'
s.version = '0.2.0'
s.summary = 'A short description of SwiftCommons.'
s.homepage = 'https://github.com/loup-studio/SwiftCommons'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Lukasz' => '[email protected]' }
s.source = { :git => 'https://github.com/loup-studio/SwiftCommons.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.3'
s.source_files = 'SwiftCommons/Classes/**/*'
s.swift_versions = ['4.2']
# dependencies
s.frameworks = 'UIKit'
# reactored
s.dependency 'Reactored'
# reactive
s.dependency 'RxSwift', '~> 4'
s.dependency 'RxGesture', '~> 2'
s.dependency 'RxDataSources', '~> 3.0'
# network
s.dependency 'Alamofire', '~> 4.9.1'
s.dependency 'Moya/RxSwift', '~> 10.0'
# json
s.dependency 'ObjectMapper'
# hud
s.dependency 'SVProgressHUD'
# alert
s.dependency 'Alertift'
# mortar
s.dependency 'Mortar/MortarVFL', '~> 1.4'
# notification
s.dependency 'SwiftMessages'
s.description = <<-DESC
Swift commons
DESC
end