-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathFileSmith.podspec
More file actions
14 lines (14 loc) · 845 Bytes
/
FileSmith.podspec
File metadata and controls
14 lines (14 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Pod::Spec.new do |s|
s.name = 'FileSmith'
s.version = '0.3.0'
s.summary = 'A strongly typed Swift library for working with local files and directories.'
s.description = 'FileSmith differentiates between file paths and directory paths, and between paths and actual files and directories, because the programmer knows which are which and when the compiler knows it too it can be much more helpful.'
s.homepage = 'https://github.com/kareman/FileSmith'
s.license = { type: 'MIT', file: 'LICENSE' }
s.author = { 'Kare Morstol' => 'kare@nottoobadsoftware.com' }
s.source = { git: 'https://github.com/kareman/FileSmith.git', tag: s.version.to_s }
s.source_files = 'Sources/FileSmith/*.swift'
s.osx.deployment_target = '10.11'
s.ios.deployment_target = '9.0'
s.dependency 'SwiftShell', '~> 5.0.1'
end