-
Notifications
You must be signed in to change notification settings - Fork 31
/
EPShapes.podspec
30 lines (24 loc) · 1.09 KB
/
EPShapes.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
29
30
Pod::Spec.new do |s|
s.name = "EPShapes"
s.version = "1.0.1"
s.summary = "Design shapes(polygons, hearts, arrows, stars) in Interface builder"
s.description = <<-DESC
1. Design shapes in interface builder using IBInspectable and IBDesignable Protocols
2. UIBezierPath extensions that can easily draw polygons, stars, arrows and hearts
3. Designable classes that can be used with custom views
4. Support for creating programmatically
5. Scale shapes
6. Apply extursions for stars to generate different star shapes
7. Equilateral Polygon UIviews/UIImageViews/UIButtons with 'n' number of shapes can be designed directly from IB/ Storyboards
DESC
s.homepage = "https://github.com/ipraba/EPShapes"
s.license = 'MIT'
s.author = { "Prabaharan" => "[email protected]" }
s.source = { :git => "https://github.com/ipraba/EPShapes.git", :tag => s.version.to_s }
s.platform = :ios, '10.3'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
#s.resource_bundles = {
# 'EPShapes' => ['Pod/Assets/*.png']
# }
end