-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotSoMagicalRecord.podspec
More file actions
24 lines (22 loc) · 914 Bytes
/
NotSoMagicalRecord.podspec
File metadata and controls
24 lines (22 loc) · 914 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
Pod::Spec.new do |s|
s.default_subspec = 'Core'
s.name = 'NotSoMagicalRecord'
s.version = '0.0.1'
s.license = 'MIT'
s.summary = 'Super Awesome Easy Fetching for Core Data 1!!!11!!!!1!.'
s.homepage = 'http://github.com/bugix/NotSoMagicalRecord'
s.author = { 'Saul Mora' => 'saul@magicalpanda.com', 'Tony Arnold' => 'tony@thecocoabots.com' }
s.source = { :git => 'https://github.com/bugix/NotSoMagicalRecord.git', :tag => "v#{s.version}" }
s.description = 'Handy fetching helpers to make Core Data a little easier to use.'
s.requires_arc = true
s.ios.deployment_target = '10.0'
s.subspec 'Core' do |sp|
sp.framework = 'CoreData'
sp.header_dir = 'NotSoMagicalRecord'
sp.source_files = 'NotSoMagicalRecord/**/*.{h,m}'
sp.prefix_header_contents = <<-EOS
#import <CoreData/CoreData.h>
#import <NotSoMagicalRecord/NotSoMagicalRecord.h>
EOS
end
end