forked from armstrongnate/CalendarView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CalendarView.podspec
38 lines (33 loc) · 1.33 KB
/
CalendarView.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
28
29
30
31
32
33
34
35
36
37
38
#
# Be sure to run `pod lib lint CalendarView.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "CalendarView"
s.version = "1.1.2"
s.summary = "A lightweight calendar view."
s.description = <<-DESC
A calendar view with a focus on:
* Speed
* Simplicity
* Customization
DESC
s.homepage = "https://github.com/n8armstrong/CalendarView"
s.screenshots = "https://raw.githubusercontent.com/n8armstrong/CalendarView/master/screens/screenshot.png"
s.license = 'MIT'
s.author = { "Nate Armstrong" => "[email protected]" }
s.source = { :git => "https://github.com/n8armstrong/CalendarView.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/N8armstrong'
s.platform = :ios, '9.3'
s.requires_arc = true
s.source_files = 'CalendarView/CalendarView/Classes/**/*'
s.resource_bundles = {
'CalendarView' => ['Pod/Assets/*.png']
}
s.frameworks = 'UIKit'
s.dependency 'SwiftMoment', '~> 0.6'
end