-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQuickELogger.podspec
More file actions
17 lines (16 loc) · 865 Bytes
/
QuickELogger.podspec
File metadata and controls
17 lines (16 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |spec|
spec.name = 'QuickELogger'
spec.version = '0.3.1'
spec.summary = 'A quick and simple way to log messages to disk on your iPhone or iPad app'
spec.homepage = 'https://github.com/rbaumbach/Quick-E-Logger'
spec.license = { :type => 'MIT', :file => 'MIT-LICENSE.txt' }
spec.author = { 'Ryan Baumbach' => 'github@ryan.codes' }
spec.source = { :git => 'https://github.com/rbaumbach/Quick-E-Logger.git', :tag => spec.version.to_s }
spec.requires_arc = true
spec.platform = :ios
spec.ios.deployment_target = '10.0'
spec.source_files = 'QuickELogger/Source/**/*.{swift}'
spec.swift_version = '5.1'
spec.dependency 'Capsule', '~> 0.0.12'
spec.dependency 'Utensils', '~> 0.0.6'
end