-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLHToolbar.podspec
32 lines (27 loc) · 1.76 KB
/
LHToolbar.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
#
# Be sure to run `pod lib lint LHToolbar.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 = "LHToolbar"
s.version = "1.3.0-beta"
s.summary = "An alternative way to create a tool bar for iOS applications."
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = "LHToolbar is an alternative way to create a toolbar in iOS applications. Tool bars are widely used in iOS applications, however, UIToolbar class lacks of updates and flexibility, uncustomizable to some extent. It motivated me to create a container like toolbar so developers have more control and flexibility on layout and UIs. LHToolbar concentrates in providing fully functioning toolbar container, manipulation of container items and many more in the future."
s.homepage = "https://github.com/Lucashuang0802/LHToolbar"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Lucas Huang" => "[email protected]" }
s.source = { :git => "https://github.com/Lucashuang0802/LHToolbar.git", :tag => s.version.to_s }
s.social_media_url = 'http://www.focushuang.com/'
s.ios.deployment_target = '8.0'
s.source_files = 'LHToolbar/**/*'
s.public_header_files = 'LHToolbar/LHToolbar.h'
end