-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathSwiftyDraw.podspec
More file actions
24 lines (17 loc) · 801 Bytes
/
SwiftyDraw.podspec
File metadata and controls
24 lines (17 loc) · 801 Bytes
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 = 'SwiftyDraw'
s.version = '2.4.1'
s.summary = 'A simple, core graphics drawing framework written in Swift'
s.description = <<-DESC
SwiftyDraw is a simple drawing framework written in Swift. SwiftyDraw is built using Core Gaphics and is very easy to implement
DESC
s.homepage = 'https://github.com/Awalz/SwiftyDraw'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Linus Geffarth' => 'hello@ogli.codes' }
s.source = { :git => 'https://github.com/Awalz/SwiftyDraw.git', :tag => s.version }
s.social_media_url = ''
s.ios.deployment_target = '9.0'
s.swift_version = '5.0'
s.source_files = 'Source/**/*'
s.frameworks = 'UIKit'
end