-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathRRuleSwift.podspec
More file actions
22 lines (21 loc) · 1.1 KB
/
RRuleSwift.podspec
File metadata and controls
22 lines (21 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "RRuleSwift"
s.version = "0.2.0"
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.
It wraps the rrule.js library (https://github.com/jkbrzt/rrule).
DESC
s.homepage = "https://github.com/teambition/RRuleSwift"
s.screenshots = "https://raw.githubusercontent.com/teambition/RRuleSwift/master/Gif/RRuleSwiftExample.gif"
s.license = "MIT"
s.author = { 'Teambition' => 'dev@teambition.com' }
s.ios.deployment_target = "8.0"
s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/teambition/RRuleSwift.git", :tag => "#{s.version}" }
s.source_files = "Sources", "Sources/**/*.{h,m}"
s.watchos.exclude_files = "Sources/JavaScriptBridge.swift", "Sources/Iterators.swift"
s.resource = "Sources/lib/*.js"
s.frameworks = "Foundation", "EventKit"
s.ios.frameworks = "Foundation", "EventKit", "JavaScriptCore"
end