forked from ipraba/EPCalendarPicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EPCalendarPicker.podspec
27 lines (26 loc) · 1.02 KB
/
EPCalendarPicker.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
Pod::Spec.new do |s|
s.name = "EPCalendarPicker"
s.version = "1.0.6"
s.summary = "Colourful calendar component for iOS written in Swift"
s.description = <<-DESC
Features
1. Single selection and multiselection option
2. Customization on changing the colors of the dates
3. Delegates to capture teh selected dates
4. Option to define the calendar start and ending year
DESC
s.homepage = "https://github.com/ipraba/EPCalendarPicker"
s.license = 'MIT'
s.author = { "Prabaharan" => "[email protected]" }
s.source = { :git => "https://github.com/ipraba/EPCalendarPicker.git", :tag => '1.0.6' }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'EPCalendar/EPCalendarPicker'
s.frameworks = 'UIKit'
# s.resource_bundles = {
# 'EPCalendarPicker' => [
# 'EPCalendar/**/*.xib'
# ]
# }
s.resources = ["EPCalendar/EPCalendarPicker/EPCalendarCell1.xib", "EPCalendar/EPCalendarPicker/EPCalendarHeaderView.xib"]
end