forked from alibaba-archive/RecurrencePicker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRecurrencePicker.podspec
More file actions
21 lines (18 loc) · 880 Bytes
/
RecurrencePicker.podspec
File metadata and controls
21 lines (18 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "RecurrencePicker"
s.version = "0.1.4"
s.summary = "An event recurrence rule picker similar to iOS system calendar."
s.homepage = "https://github.com/mirfanbashir/RecurrencePicker"
s.license = 'Code is MIT, then custom font licenses.'
s.author = { "Orta" => "orta@artsymail.com" }
s.source = { :git => "https://github.com/mirfanbashir/RecurrencePicker.git", :tag => s.version }
s.social_media_url = 'https://github.com/hongxinhope'
s.ios.deployment_target = '7.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.source_files = 'RecurrencePicker'
s.resources = 'RecurrencePicker/Resources/*'
s.frameworks = 'UIKit'
s.module_name = 'RecurrencePicker'
spec.dependency 'RRuleSwift', :git => 'https://github.com/mirfanbashir/RRuleSwift.git'
end