-
Notifications
You must be signed in to change notification settings - Fork 33
/
MOOMaskedIconView.podspec
20 lines (20 loc) · 1.01 KB
/
MOOMaskedIconView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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.clean_paths = "Demo Project", "Editor Support"
s.frameworks = 'QuartzCore', 'Accelerate'
s.requires_arc = false
end