-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathRMPScrollingMenuBarController.podspec
37 lines (32 loc) · 1.7 KB
/
RMPScrollingMenuBarController.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
33
34
35
36
37
#
# Be sure to run `pod lib lint RMPScrollingMenuBarController.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "RMPScrollingMenuBarController"
s.version = "1.0.6"
s.summary = "A scrollable menu bar and multiple view controllers, which is managed like a UITabBarController."
s.description = <<-DESC
`RMPScrollingMenuBarController` has a scrollable menu bar, and multiple view controllers.
You can switch view controllers, which is managed like a `UITabBarController`, by swiping a screen or scrolling the menu.
DESC
s.homepage = "https://github.com/recruit-mp/RMPScrollingMenuBarController"
s.screenshots = "https://raw.githubusercontent.com/recruit-mp/RMPScrollingMenuBarController/master/docs/rmpscrollingmenubarcontroller.gif"
s.license = 'MIT'
s.author = { "kato" => "yoshihiro@sputnik-apps.com", "Recruit Marketing Partners Co.,Ltd." => "recruit_mp_oss@ml.cocorou.jp" }
s.source = { :git => "https://github.com/recruit-mp/RMPScrollingMenuBarController.git", :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes'
s.resource_bundles = {
'RMPScrollingMenuBarController' => ['Pod/Assets/*.png']
}
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit'
# s.dependency 'AFNetworking', '~> 2.3'
end