forked from yunpengn/ding-food
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDingBase.podspec
36 lines (33 loc) · 1.49 KB
/
DingBase.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
#
# Be sure to run `pod spec lint DingBase.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# You can also run `pod spec lint DingBase.podspec --allow-warnings` to ignore warnings.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "DingBase"
s.version = "0.0.1"
s.summary = "Base library for Ding! project"
s.description = <<-DESC
CS3217 Software Engineering on Modern Application Platforms
2018 @ NUS SoC
Final Project Group 3 - Ding! (base library)
DESC
s.homepage = "http://isteps.comp.nus.edu.sg/event/12th-steps/module/CS3217/project/3"
s.license = { :type => 'MIT' }
s.author = { "Group 3 @ CS3217 2018" => "[email protected]" }
s.source = { :git => "[email protected]:yunpengn/ding-food.git", :branch => 'master' }
s.swift_version = '4.1'
s.social_media_url = 'https://www.facebook.com/groups/cs3217/'
s.platform = :ios, '11.3'
s.static_framework = true
s.source_files = 'ding-base/Firebase/*.swift', 'ding-base/Models/*.swift',
'ding-base/Others/*.swift', 'ding-base/Views/*.swift'
s.dependency 'Eureka'
s.dependency 'Firebase/Auth'
s.dependency 'Firebase/Database'
s.dependency 'FirebaseUI/Storage'
end