forked from gblancogarcia/GBInfiniteScrollView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGBInfiniteScrollView.podspec
More file actions
20 lines (20 loc) · 920 Bytes
/
GBInfiniteScrollView.podspec
File metadata and controls
20 lines (20 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "GBInfiniteScrollView"
s.version = "1.8"
s.summary = "GBInfiniteScrollView class provides an endlessly scroll view organized in pages."
s.homepage = "https://github.com/gblancogarcia"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Gerardo Blanco" => "gblancogarcia@gmail.com" }
s.source = { :git => "https://github.com/gblancogarcia/GBInfiniteScrollView.git", :tag => "#{s.version}" }
s.platform = :ios, '6.1'
s.requires_arc = true
s.default_subspec = 'Core'
s.subspec 'Core' do |core|
core.source_files = 'GBInfiniteScrollView/GBInfiniteScrollView/*.{h,m}'
end
s.subspec 'PageControl' do |pc|
pc.dependency 'GBInfiniteScrollView/Core'
pc.source_files = 'GBInfiniteScrollView/GBInfiniteScrollView/Optional/PageControlSubClass/*.{h,m}'
pc.dependency 'FXPageControl', '~> 1.3.2'
end
end