16 lines
736 B
Ruby
16 lines
736 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "XLPagerTabStrip"
|
|
s.version = "7.0.0"
|
|
s.summary = "Android PagerTabStrip for iOS and much more."
|
|
s.homepage = "https://github.com/xmartlabs/XLPagerTabStrip"
|
|
s.license = { type: 'MIT', file: 'LICENSE' }
|
|
s.author = { "Martin Barreto" => "martin@xmartlabs.com" }
|
|
s.source = { git: "https://github.com/xmartlabs/XLPagerTabStrip.git", tag: s.version.to_s }
|
|
s.social_media_url = 'https://twitter.com/xmartlabs'
|
|
s.ios.deployment_target = '8.0'
|
|
s.requires_arc = true
|
|
s.ios.source_files = 'Sources/**/*'
|
|
s.ios.frameworks = 'UIKit', 'Foundation'
|
|
s.resource_bundles = { 'XLPagerTabStrip' => ['Sources/ButtonCell.xib'] }
|
|
end
|