- Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathParticlesLoadingView.podspec
More file actions
Latest commit
20 lines (18 loc) · 815 Bytes
/
Copy pathParticlesLoadingView.podspec
File metadata and controls
20 lines (18 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.newdo |s|
s.name="ParticlesLoadingView"
s.version="0.5"
s.summary="A loading animation made of particles."
s.description="A customizable SpriteKit particles animation on the border of a view."
s.homepage="https://github.com/BalestraPatrick/ParticlesLoadingView"
s.license='MIT'
s.author={"Patrick Balestra"=>"me@patrickbalestra.com"}
s.source={:git=>"https://github.com/BalestraPatrick/ParticlesLoadingView.git",:tag=>s.version.to_s}
s.social_media_url='https://twitter.com/BalestraPatrick'
s.platform=:ios,'9.0'
s.requires_arc=true
s.source_files='Pod/Classes/**/*'
s.resource_bundles={
'ParticlesLoadingView'=>['Pod/Assets/*.png','Pod/Assets/*.sks']
}
s.frameworks='SpriteKit'
end