forked from MosheBerman/MBCalendarKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMBCalendarKit.podspec
18 lines (17 loc) · 929 Bytes
/
MBCalendarKit.podspec
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 = "MBCalendarKit"
s.version = "3.0.2"
s.summary = "An open source calendar view for iOS."
s.description = <<-DESC
MBCalendarKit is a calendar control written in UIKit. I've found existing implementations to be inadequate and difficult to work with, so I rolled my own.
DESC
s.homepage = "https://github.com/MosheBerman/MBCalendarKit"
s.screenshots = "https://raw.github.com/MosheBerman/MBCalendarKit/master/screens/month.png", "https://raw.github.com/MosheBerman/MBCalendarKit/master/screens/week.png"
s.author = { "Moshe Berman" => "[email protected]" }
s.license = 'MIT'
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/MosheBerman/MBCalendarKit.git", :tag => "2.2.7"}
s.source_files = 'Classes', 'MBCalendarKit/CalendarKit/**/*.{h,m}'
s.frameworks = 'QuartzCore'
s.requires_arc = true
end