-
Notifications
You must be signed in to change notification settings - Fork 39
/
NAKPlaybackIndicatorView.podspec
28 lines (26 loc) · 1.05 KB
/
NAKPlaybackIndicatorView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Pod::Spec.new do |s|
s.name = 'NAKPlaybackIndicatorView'
s.version = '0.1.1'
s.summary = 'A view that mimics the music playback indicator in the Music.app on iOS 7.'
s.description = <<-DESC
A view that mimics the music playback indicator in the Music.app on iOS 7.
It has three vertical bars and they oscillate randomly.
DESC
s.homepage = 'https://github.com/yujinakayama/NAKPlaybackIndicatorView'
s.screenshots = 'https://raw.github.com/yujinakayama/NAKPlaybackIndicatorView/master/Documentation/screenshot.png'
s.license = 'MIT'
s.author = { 'Yuji Nakayama' => '[email protected]' }
s.source = {
git: 'https://github.com/yujinakayama/NAKPlaybackIndicatorView.git',
tag: s.version.to_s
}
s.platform = :ios
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.source_files = 'Classes'
s.public_header_files = [
'Classes/NAKPlaybackIndicatorView.h',
'Classes/NAKPlaybackIndicatorViewStyle.h'
]
s.frameworks = 'QuartzCore'
end