-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathWeekdayPicker.podspec
More file actions
24 lines (21 loc) · 1012 Bytes
/
WeekdayPicker.podspec
File metadata and controls
24 lines (21 loc) · 1012 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
#
# Be sure to run `pod lib lint WeekdayPicker.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'WeekdayPicker'
s.version = '0.1.0'
s.swift_version = '4.0'
s.summary = 'WeekdayPicker is a custom UIDatePicker with weekdays.'
s.homepage = 'https://github.com/Maximelc/WeekdayPicker'
s.screenshots = 'https://raw.githubusercontent.com/Maximelc/WeekdayPicker/master/Assets/DemoExample.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Maximelc' => 'maxime.le-coat@epitech.eu' }
s.source = { :git => 'https://github.com/Maximelc/WeekdayPicker.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/Maximelc'
s.ios.deployment_target = '8.0'
s.source_files = 'Source/**/*'
end