14 lines
562 B
Ruby
14 lines
562 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "MTStackViewController"
|
|
s.version = "1.0.2"
|
|
s.summary = "A container view controller which provides Facebook / Path style navigation."
|
|
s.homepage = "https://github.com/willowtreeapps/MTStackViewController"
|
|
s.license = 'MIT'
|
|
s.author = { "WillowTree Apps" => "" }
|
|
s.source = { :git => "https://github.com/willowtreeapps/MTStackViewController.git", :tag => '1.0.2' }
|
|
s.source_files = 'Classes'
|
|
s.requires_arc = true
|
|
s.frameworks = 'QuartzCore'
|
|
s.platform = :ios, '5.0'
|
|
end
|