15 lines
507 B
Ruby
Executable File
15 lines
507 B
Ruby
Executable File
Pod::Spec.new do |s|
|
|
s.name = 'PSStackedView'
|
|
s.version = '1.0'
|
|
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 => '1.0' }
|
|
|
|
s.requires_arc = true
|
|
s.source_files = 'PSStackedView'
|
|
s.framework = 'QuartzCore'
|
|
end
|