17 lines
740 B
Ruby
17 lines
740 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'UIViewDrawRectBlock'
|
|
s.version = '0.0.1'
|
|
s.summary = 'A category on UIView to create an instance with a block for its drawRect.'
|
|
s.homepage = 'https://github.com/hsjunnesson/UIViewDrawRectBlock'
|
|
s.author = { 'Hans Sjunnesson' => 'hans.sjunnesson@gmail.com' }
|
|
s.source = { :git => 'https://github.com/hsjunnesson/UIViewDrawRectBlock.git',
|
|
:commit => '09ba68a24924dbcb36aa6f4da4df0aea8d469b37' }
|
|
|
|
s.description = 'Tired of subclassing UIView just to implement drawRect? ' \
|
|
'This is a category on UIView to create an instance with a ' \
|
|
'block for its drawRect.'
|
|
|
|
s.platform = :ios
|
|
s.source_files = '*.{h,m}'
|
|
end
|