21 lines
989 B
Ruby
21 lines
989 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'MOOMaskedIconView'
|
|
s.version = '0.1.0'
|
|
s.license = 'Public domain / MIT'
|
|
s.summary = 'UIView subclass that uses black-and-white masks to draw icons.'
|
|
s.homepage = 'https://github.com/peyton/MOOMaskedIconView'
|
|
s.author = { 'Peyton Randolph' => '_@peytn.com' }
|
|
s.source = { :git => 'https://github.com/peyton/MOOMaskedIconView.git', :tag => 'v0.1.0' }
|
|
s.description = 'MOOMaskedIconView is a UIView subclass that uses ' \
|
|
'black-and-white masks to draw icons of different ' \
|
|
'styles at any size or resolution. It\'s like Photoshop ' \
|
|
'layer styles, using the same technique as UITabBar to ' \
|
|
'generate various effects from a single icon mask. ' \
|
|
'MOOMaskedIconView displays common image formats and PDFs.'
|
|
s.platform = :ios
|
|
s.source_files = 'MOOMaskedIconView'
|
|
|
|
s.frameworks = 'QuartzCore', 'Accelerate'
|
|
s.requires_arc = false
|
|
end
|