18 lines
846 B
Ruby
18 lines
846 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "InfinitePagingView"
|
|
s.version = "0.0.1"
|
|
s.summary = "InfinitePagingView is a subclass of UIView. It contains an endlessly scrollable UIScrollView."
|
|
s.description = <<-DESC
|
|
InfinitePagingView is a subclass of UIView. It contains an endlessly scrollable UIScrollView.on't worry about the indent, we strip it!
|
|
DESC
|
|
s.homepage = "https://github.com/caesarcat/InfinitePagingView"
|
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
s.author = { "SHIGETA Takuji" => "shigeta@qnote.co.jp" }
|
|
s.source = { :git => "https://github.com/caesarcat/InfinitePagingView.git", :commit => "ba137b9001f294f021887b8746f6704e7a6322b6" }
|
|
s.platform = :ios
|
|
|
|
s.source_files = 'Classes', 'Classes/**/*.{h,m}'
|
|
|
|
s.requires_arc = true
|
|
end
|