forked from krzysztofzablocki/KZFileWatchers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKZFileWatchers.podspec
30 lines (24 loc) · 1.32 KB
/
KZFileWatchers.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
# Be sure to run `pod lib lint KZFileWatchers.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'KZFileWatchers'
s.version = '0.1.3'
s.summary = 'A micro-framework for observing file changes, both local and remote. Helpful in building developer tools.'
s.description = <<-DESC
A micro-framework for observing file changes, both local and remote. Helpful in building developer tools. Supports both ETag and Last-Modified-Date so you can use it with most available hosting options, e.g. Dropbox or AWS.
DESC
s.homepage = 'https://github.com/krzysztofzablocki/KZFileWatchers'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Krzysztof Zabłocki' => '[email protected]' }
s.source = { :git => 'https://github.com/krzysztofzablocki/KZFileWatchers.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/merowing_'
s.ios.deployment_target = '8.0'
s.source_files = 'KZFileWatchers/Classes/**/*'
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
end