14 lines
606 B
Ruby
14 lines
606 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "StyledPageControl"
|
|
s.version = "1.0"
|
|
s.summary = "Customizable PageControl for iOS."
|
|
s.homepage = "https://github.com/honcheng/iOS-StyledPageControl"
|
|
s.license = 'MIT'
|
|
s.author = { "honcheng" => "honcheng@gmail.com" }
|
|
s.source = { :git => "https://github.com/honcheng/iOS-StyledPageControl.git", :tag => "1.0" }
|
|
s.platform = :ios
|
|
s.requires_arc = true
|
|
s.source_files = "StyledPageControlDemo/PageControlDemo/StyledPageControl.{h,m}"
|
|
s.resources = "StyledPageControlDemo/PageControlDemo/Resources/*.png"
|
|
end
|