-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCordate.podspec
More file actions
26 lines (22 loc) · 855 Bytes
/
Cordate.podspec
File metadata and controls
26 lines (22 loc) · 855 Bytes
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
Pod::Spec.new do |s|
s.name = 'Cordate'
s.version = '3.0.3'
s.license = 'MIT'
s.summary = 'Give dates a special place in your ❤️'
s.description = 'Cordate is a small library which makes working with dates much smoother by adding commonly-used extensions, custom UI components, and more.'
s.author = 'Duet Health'
s.source = { git: 'https://github.com/DuetHealth/Cordate.git', tag: s.version }
s.homepage = s.source[:git]
s.ios.deployment_target = '12.0'
s.requires_arc = true
s.default_subspec = 'Core'
s.swift_version = '5.5'
s.subspec 'Core' do |core|
core.source_files = 'Cordate/Sources/Core/**/*.{h,m,swift}'
end
s.subspec 'Rx' do |rx|
rx.source_files = 'Cordate/Sources/**/*.{h,m,swift}'
rx.dependency 'RxCocoa'
rx.dependency 'RxSwift'
end
end