-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathTOFileSystemObserver.podspec
More file actions
15 lines (15 loc) · 881 Bytes
/
TOFileSystemObserver.podspec
File metadata and controls
15 lines (15 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = 'TOFileSystemObserver'
s.version = '0.0.4'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'A bullet-proof mechanism for detecting any changes made to the contents of a folder in iOS & iPadOS.'
s.homepage = 'https://github.com/TimOliver/TOFileSystemObserver'
s.author = 'Tim Oliver'
s.source = { :git => 'https://github.com/TimOliver/TOFileSystemObserver.git', :tag => s.version }
s.platforms = { :ios => "8.0", :osx => "10.12" }
s.source_files = 'TOFileSystemObserver/**/*.{h,m}'
s.exclude_files = 'TOFileSystemObserver/include/**'
s.osx.exclude_files = 'TOFileSystemObserver/Utilities/TOFileSystemObserver+UIKit.h'
s.ios.exclude_files = ['TOFileSystemObserver/Utilities/TOFileSystemObserver+AppKit.h','TOFileSystemObserver/Categories/NSIndexPath+AppKitAdditions.{h,m}']
s.requires_arc = true
end