-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathColander.podspec
More file actions
25 lines (19 loc) · 943 Bytes
/
Colander.podspec
File metadata and controls
25 lines (19 loc) · 943 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
Pod::Spec.new do |s|
s.name = 'Colander'
s.version = '0.3.0'
s.summary = 'A highly customizable iOS calendar view'
s.description = <<-DESC
Colander (originally developed for use in the Blue Apron app) provides a customizable,
vertically scrolling calendar view. Colander allows you to customize the display of dates
and month headers to match the style of your app.
DESC
s.homepage = 'https://github.com/blueapron/Colander'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Bryan Oltman' => 'bryan.oltman@blueapron.com' }
s.source = { :git => 'https://github.com/blueapron/Colander.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.swift_version = '5.7'
s.source_files = 'Sources/Colander/Classes/**/*'
s.dependency 'SnapKit', '~> 5.6.0'
s.dependency 'SwiftDate', '~> 7.0.0'
end