-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathAACoreData.podspec
More file actions
21 lines (15 loc) · 1.03 KB
/
Copy pathAACoreData.podspec
File metadata and controls
21 lines (15 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'AACoreData'
s.version = '1.0'
s.summary = 'AACoreData is a lightweight data persistence wrapper designed to provide an easier solution for `CRUD` operations using CoreData in Swift.'
s.description = <<-DESC
AACoreData is a lightweight data persistence wrapper designed to provide an easier solution for `CRUD` operations using `CoreData`, written in Swift. It provides a singleton instance to access `CoreData` objects anywhere in the code and uses 'value types' to define `CoreData` entities.
DESC
s.homepage = 'https://github.com/EngrAhsanAli/AACoreData'
# s.screenshots = 'https://github.com/EngrAhsanAli/AACoreData/blob/master/Screenshots/demo.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Engr. Ahsan Ali' => 'hafiz.m.ahsan.ali@gmail.com' }
s.source = { :git => 'https://github.com/EngrAhsanAli/AACoreData.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'AACoreData/Classes/**/*'
end