15 lines
484 B
Ruby
15 lines
484 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'PSStackedView'
|
|
s.version = '0.1'
|
|
s.platform = :ios
|
|
s.summary = 'Open source implementation of Twitter/iPad stacked ui - done right.'
|
|
s.homepage = 'https://github.com/steipete/PSStackedView'
|
|
s.license = 'MIT'
|
|
s.author = { 'Peter Steinberger' => 'steipete@gmail.com' }
|
|
s.source = { :git => 'https://github.com/steipete/PSStackedView.git', :tag => '0.1' }
|
|
|
|
s.source_files = 'PSStackedView'
|
|
s.framework = 'QuartzCore'
|
|
|
|
end
|