14 lines
666 B
Ruby
14 lines
666 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'JJCachedAsyncViewDrawing'
|
|
s.version = '0.0.1'
|
|
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', :commit => 'e6c472fdb96f20651ad2bfd17f4dcb896b128cb7' }
|
|
s.source_files = '*.{h,m}'
|
|
s.frameworks = 'QuartzCore', 'Foundation'
|
|
s.requires_arc = true
|
|
end
|