14 lines
628 B
Ruby
14 lines
628 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'JJCachedAsyncViewDrawing'
|
|
s.version = '1.0.0'
|
|
s.platform = :ios
|
|
s.license = 'Apache'
|
|
s.summary = 'Helper class that allows you to draw views (a)synchronously to a UIImage with caching for great performance.'
|
|
s.homepage = 'https://github.com/mindsnacks/MSCachedAsyncViewDrawing'
|
|
s.authors = { 'Javier Soto' => '' , 'Jacob Jennings' => 'jacob.r.jennings@gmail.com'}
|
|
s.source = { :git => 'https://github.com/jacobjennings/JJCachedAsyncViewDrawing.git', :tag => '1.0.0' }
|
|
s.source_files = '*.{h,m}'
|
|
s.frameworks = 'QuartzCore', 'Foundation'
|
|
s.requires_arc = true
|
|
end
|