-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathOnoKit.podspec
More file actions
22 lines (17 loc) · 812 Bytes
/
OnoKit.podspec
File metadata and controls
22 lines (17 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'OnoKit'
s.version = '1.0.15'
s.summary = 'A collection of common classes'
s.description = 'This is a collection of classes, extensions, methods and functions that aims at make things easy.'
s.swift_version = '5'
s.homepage = 'https://github.com/onodude/OnoKit-iOS'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.author = { 'onodude' => 'onur.erdemol@gmail.com' }
s.source = { :git => 'https://github.com/onodude/OnoKit-iOS.git', :tag => s.version.to_s }
s.documentation_url = 'https://github.com/onodude/OnoKit-iOS/blob/develop/README.md'
s.ios.deployment_target = '13.0'
s.source_files = 'OnoKit/**/*.swift'
s.dependency 'KeychainAccess', '~> 4.1.0'
s.dependency 'ObjectMapper', '~> 3.5.1'
s.dependency 'SnapKit', '~> 5.0.0'
end