-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathSherginScrollableNavigationBar.podspec
24 lines (22 loc) · 1.13 KB
/
SherginScrollableNavigationBar.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
Pod::Spec.new do |s|
s.name = "SherginScrollableNavigationBar"
s.version = "0.3.1"
s.summary = "A scrollable UINavigationBar that follows a UIScrollView."
s.description = <<-DESC
A scrollable UINavigationBar that follows a UIScrollView.
This project was inspired by the navigation bar functionality
seen in the Chrome, Facebook and Instagram iOS apps.
This description and some implementation ideas was inspired by
GTScrollNavigationBar.
DESC
s.homepage = "https://github.com/shergin/SherginScrollableNavigationBar"
s.license = 'MIT'
s.author = { "Valentin Shergin" => "valentin@shergin.com" }
s.source = { :git => "https://github.com/shergin/SherginScrollableNavigationBar.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/shergin'
s.platform = :ios, '7.0'
s.ios.deployment_target = '7.0'
s.requires_arc = true
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
end