-
-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathPulsator.podspec
More file actions
22 lines (18 loc) · 791 Bytes
/
Pulsator.podspec
File metadata and controls
22 lines (18 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "Pulsator"
s.version = "0.6.0"
s.summary = "Pulse animation for iOS."
s.homepage = "https://github.com/shu223/Pulsator"
s.screenshots = "https://github.com/shu223/Pulsator/blob/master/demo.gif?raw=true"
s.license = 'MIT'
s.author = { "shu223" => "shuichi0526@gmail.com" }
s.source = { :git => "https://github.com/shu223/Pulsator.git", :tag => "#{s.version}" }
s.social_media_url = 'https://twitter.com/shu223'
s.swift_version = '5.0'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.requires_arc = true
s.source_files = 'Pulsator/Pulsator.swift'
s.ios.frameworks = 'UIKit', 'QuartzCore'
s.osx.frameworks = 'Cocoa', 'QuartzCore'
end