-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEverliveSDK.podspec
46 lines (31 loc) · 1.19 KB
/
EverliveSDK.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
Pod::Spec.new do |s|
# 1
s.platform = :ios
s.ios.deployment_target = '9.0'
s.name = "EverliveSDK"
s.summary = "EverliverSDK lets you take advantage of the features of Progress Backend Services (formerly known as Everlive) when building native applications using Swift."
s.requires_arc = true
# 2
s.version = "1.2.0"
# 3
s.license = { :type => "MIT", :file => "LICENSE" }
# 4 - Replace with your name and e-mail address
s.author = { "[Dimitar Dimitrov]" => "[[email protected]]" }
# For example,
# s.author = { "Dimitar Dimitrov" => "[email protected]" }
# 5 - Replace this URL with your own Github page's URL (from the address bar)
s.homepage = "https://github.com/ddimitrov90/EverliveSDK"
# For example,
# s.homepage = "http://ddimitrov.net"
# 6 - Replace this URL with your own Git URL from "Quick Setup"
s.source = { :git => "https://github.com/ddimitrov90/EverliveSDK.git", :tag => "#{s.version}"}
# For example,
# s.source = { :git => "https://github.com/ddimitrov90/EverliveSDK.git", :tag => "#{s.version}"}
# 7
s.framework = "UIKit"
s.dependency 'Alamofire', '~> 3.0'
s.dependency 'EVReflection', '~> 2.6'
s.dependency 'SwiftyJSON', '~> 2.3.1'
# 8
s.source_files = "EverliveSDK/**/*.{swift}"
end