-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathEFAutoScrollLabel.podspec
More file actions
21 lines (18 loc) · 989 Bytes
/
EFAutoScrollLabel.podspec
File metadata and controls
21 lines (18 loc) · 989 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'EFAutoScrollLabel'
s.version = '6.0.0.0'
s.summary = 'A label which can scroll when text length beyond the width of label.'
s.description = <<-DESC
A label which can scroll when text length beyond the width of label, in Swift.
DESC
s.homepage = 'https://github.com/EFPrefix/EFAutoScrollLabel'
s.screenshots = 'https://raw.githubusercontent.com/EFPrefix/EFAutoScrollLabel/master/Assets/EFAutoScrollLabel.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'EyreFree' => 'eyrefree@eyrefree.org' }
s.source = { :git => 'https://github.com/EFPrefix/EFAutoScrollLabel.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/EyreFree777'
s.swift_version = '6.0'
s.ios.deployment_target = '12.0'
s.requires_arc = true
s.source_files = 'EFAutoScrollLabel/Classes/*.swift'
end