Podspec
Pod::Spec.new do |s|
s.name = „AutoScout24 Demo Library"
s.version = "1.0"
s.summary = "Some description"
s.homepage = "https://github.com/AutoScout24/DemoLibrary"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Felix Schulze" => "
[email protected]" }
s.source = {
:git => "https://github.com/AutoScout24/DemoLibrary.git",
:tag => s.version.to_s
}
!
s.platform = :ios, '5.0'
s.requires_arc = true
!
s.source_files = 'ASCDemoLibrary*.{h,m}'
s.resources = 'ASCDemoLibrary.bundle'
!
s.framework = 'Foundation', 'UIKit', 'CoreGraphics', 'QuartzCore'
s.weak_frameworks = 'AdSupport‘
!
s.dependency 'AFNetworking', '~> 1.3'
!
end