-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathKVOController-Swift.podspec
32 lines (25 loc) · 1.23 KB
/
KVOController-Swift.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
31
32
#
# Be sure to run `pod lib lint KVOController-Swift.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 = "KVOController-Swift"
s.version = "2.0.1"
s.summary = "Generic, simple key-value observing for Swift"
s.description = <<-DESC
**Supports Swift 3.0**
Have you ever wondered if you can implement a generic key-value observing for Swift. It makes your life easy and saves you a lot of casting.
This project is inspired by facebook/KVOController. So, it doesn't only provide a neat API for KVO', but also makes use of Swift generics feature.
DESC
s.homepage = "https://github.com/mohamede1945/KVOController-Swift"
s.license = 'MIT'
s.author = { "Mohamed Afifi" => "[email protected]" }
s.source = { :git => "https://github.com/mohamede1945/KVOController-Swift.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/mohamede1945'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Sources/**/*'
end