-
Notifications
You must be signed in to change notification settings - Fork 9
/
EmailPicker.podspec
27 lines (24 loc) · 1.05 KB
/
EmailPicker.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
#
# Be sure to run `pod lib lint EmailPicker.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 = 'EmailPicker'
s.version = '4.0.5'
s.summary = 'A viewcontroller to select emails, written in Swift.'
s.description = <<-DESC
A viewcontroller that enables users to select emails from a list of their contacts, or type them in manually. 100% Swift.
DESC
s.homepage = 'https://github.com/dockwa/EmailPicker'
s.license = 'MIT'
s.author = { 'Christian Hatch' => '[email protected]' }
s.source = { :git => 'https://github.com/dockwa/EmailPicker.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/commodoreftp'
s.swift_version = '5.0'
s.ios.deployment_target = '12.4'
s.source_files = 'Sources/EmailPicker/**/*'
s.dependency 'CLTokenInputView'
end