forked from antiguab/BAFluidView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBAFluidView.podspec
More file actions
24 lines (22 loc) · 1.33 KB
/
BAFluidView.podspec
File metadata and controls
24 lines (22 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "BAFluidView"
s.version = "0.1.3"
s.summary = "UIView that simulates a 2D view of a fluid in motion"
s.description = <<-DESC
This view and it's layer create a 2D fluid animation that can be used to simulate a filling effect.
more info at: [https://github.com/antiguab/BAFluidView](https://github.com/antiguab/BAFluidView)
DESC
s.homepage = "https://github.com/antiguab/BAFluidView"
s.screenshots = "https://github.com/antiguab/BAFluidView/blob/master/readmeAssets/screenshot1.png?raw=true", "https://github.com/antiguab/BAFluidView/blob/master/readmeAssets/screenshot2.png?raw=true","https://github.com/antiguab/BAFluidView/blob/master/readmeAssets/screenshot3.png?raw=true","https://github.com/antiguab/BAFluidView/blob/master/readmeAssets/screenshot4.png?raw=true"
s.license = 'MIT'
s.author = { "Bryan Antigua" => "antigua.b@gmail.com" }
s.source = { :git => "https://github.com/antiguab/BAFluidView.git", :tag => s.version.to_s }
s.platform = :ios
s.requires_arc = true
s.source_files = 'Pod/Classes'
s.resource_bundles = {
'BAFluidView' => ['Pod/Assets/*.png']
}
s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit'
end