forked from teambition/RRuleSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RRuleSwift.podspec
28 lines (23 loc) · 1.08 KB
/
RRuleSwift.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
#
# Created by teambition-ios on 2020/7/27.
# Copyright © 2020 teambition. All rights reserved.
#
Pod::Spec.new do |s|
s.name = 'RRuleSwift'
s.version = '0.5.1'
s.summary = 'Swift rrule library for working with recurrence rules of calendar dates.'
s.description = <<-DESC
Swift rrule library for working with recurrence rules of calendar dates.
DESC
s.homepage = 'https://github.com/teambition/RRuleSwift'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { 'teambition mobile' => '[email protected]' }
s.source = { :git => 'https://github.com/teambition/RRuleSwift.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '8.0'
s.watchos.deployment_target = '2.0'
s.frameworks = "Foundation", "EventKit"
s.ios.frameworks = "Foundation", "EventKit", "JavaScriptCore"
s.source_files = 'Sources/*.swift', 'Sources/lib/*.js'
s.watchos.exclude_files = 'Sources/Iterators.swift', 'JavaScriptBridge.swift'
end