-
Notifications
You must be signed in to change notification settings - Fork 208
Expand file tree
/
Copy pathJSBadgeView.podspec
More file actions
20 lines (17 loc) · 834 Bytes
/
Copy pathJSBadgeView.podspec
File metadata and controls
20 lines (17 loc) · 834 Bytes
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 = "JSBadgeView"
s.version = '2.0.0'
s.summary = "Customizable UIKit badge view like the one on applications in the iOS springboard."
s.description = "Customizable UIKit badge view like the one on applications in the iOS springboard. Very optimized for performance: drawn entirely using CoreGraphics."
s.homepage = "https://github.com/JaviSoto/JSBadgeView"
s.license = 'MIT'
s.author = { 'Javier Soto' => 'ios@javisoto.es' }
s.source = { :git => 'https://github.com/JaviSoto/JSBadgeView.git', :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'JSBadgeView' => ['Pod/Assets/*.png']
}
s.frameworks = 'QuartzCore'
end