-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathDSLCalendarView.podspec
More file actions
18 lines (16 loc) · 941 Bytes
/
DSLCalendarView.podspec
File metadata and controls
18 lines (16 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "DSLCalendarView"
s.version = "0.0.1"
s.summary = "Simple calendar view for iOS."
s.description = "DSLCalendar view is an iOS control that displays a calendar similar to the system calendar. It allows the user to select a single date or a date range."
s.author = { "Pete" => "pete@dativestudios.com" }
s.homepage = "https://github.com/PeteC/DSLCalendarView"
s.screenshots = "https://github.com/PeteC/DSLCalendarView/raw/images/Screenshot.png"
s.license = { :type => 'BSD 3-Clause License', :file => 'README.markdown' }
s.source = { :git => "https://github.com/PeteC/DSLCalendarView.git", :commit => "cd64b97529fd25c3b610c1681e1cfbf301a07cc0" }
s.requires_arc = true
s.platform = :ios, '5.0'
s.framework = 'UIKit', 'CoreGraphics'
s.source_files = 'DSLCalendarView/*.{h,m}'
s.resources = "DSLCalendarView/Images/*.png", "DSLCalendarView/*.xib"
end