forked from graetzer/DirectoryWatchdog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectoryWatchdog.podspec
More file actions
16 lines (13 loc) · 880 Bytes
/
Copy pathDirectoryWatchdog.podspec
File metadata and controls
16 lines (13 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = 'DirectoryWatchdog'
s.version = '1.1.0'
s.license = 'Apache License 2.0'
s.summary = 'A simple utility class to monitor real time changes in a directory, such as the documents dir for an app with File Sharing enabled.'
s.homepage = 'https://github.com/graetzer/DirectoryWatchdog'
s.author = { 'Simon Grätzer' => 'simon@graetzer.org' }
s.source = { :git => 'https://github.com/graetzer/DirectoryWatchdog.git', :tag => '1.1.0' }
s.description = 'DirectoryWatchdog is a simple utility tool to monitor real time changes in local folders. '\
'Most common use is the monitoring of an applications documents directory in combination'\
' with iTunes file sharing support. This code uses the BSD kqueue API and should work on OSX as well as iOS.'
s.source_files = 'SGDirWatchdog.{h,m}'
end