-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCoredatable.podspec
More file actions
25 lines (19 loc) · 947 Bytes
/
Coredatable.podspec
File metadata and controls
25 lines (19 loc) · 947 Bytes
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
Pod::Spec.new do |spec|
spec.name = "Coredatable"
spec.version = "0.1.0"
spec.summary = "Easy Codable conformance in NSManagedObject subclasses."
spec.description = <<-DESC
Adding `Decodable` and `Encodable` conformance to `NSManagedObject` subclasses is usually very tricky.
Coredatable simplifies this process using equivalent protocols called `CoreDataDecodable`, `CoreDataEncodable` and `CoreDataCodable`.
DESC
spec.homepage = "https://github.com/ManueGE/Coredatable/"
spec.license = "MIT"
spec.author = "Manuel García-Estañ"
spec.social_media_url = "http://twitter.com/ManueGE"
spec.platform = :ios, "10.0"
spec.source = { :git => "https://github.com/ManueGE/Coredatable.git", :tag => "#{spec.version}" }
spec.requires_arc = true
spec.framework = "UIKit"
spec.framework = "CoreData"
spec.source_files = "Coredatable/**/*.{swift,h,m}"
end