-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSweeft.podspec
More file actions
24 lines (19 loc) · 1004 Bytes
/
Copy pathSweeft.podspec
File metadata and controls
24 lines (19 loc) · 1004 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 = 'Sweeft'
s.version = '0.15.2'
s.summary = 'Swift but a bit Sweeter - More Syntactic Sugar for Swift'
s.description = "A collection of different operators and extensions that make writing in Swift a bit sweeter."
s.homepage = 'https://github.com/mathiasquintero/Sweeft'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Mathias Quintero' => 'mathias.quintero@tum.de' }
s.source = { :git => 'https://github.com/mathiasquintero/Sweeft.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/sifrinoimperial'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.2' }
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.source_files = 'Sources/Sweeft/**/*'
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = ['Foundation', 'Security']
# s.dependency 'AFNetworking', '~> 2.3'
end