-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGoldDigger.podspec
More file actions
27 lines (21 loc) · 889 Bytes
/
GoldDigger.podspec
File metadata and controls
27 lines (21 loc) · 889 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
26
27
Pod::Spec.new do |s|
s.name = "GoldDigger"
s.version = "0.7.4"
s.summary = "Simple ORM"
s.description = "Simple ORM for Objective-C"
s.homepage = "https://github.com/CopyIsRight/GoldDigger.git"
s.license = 'MIT'
s.author = { "Pietro Caselani" => "pc1992@gmail.com", "Felipe Lobo" => "frlwolf@gmail.com", "Bruno da Luz" => "brunolabx@gmail.com" }
s.source = { :git => "https://github.com/CopyIsRight/GoldDigger.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.subspec 'Core' do |core|
core.source_files = 'Pod/Core/*.{h,m}'
core.dependency 'ObjectiveSugar', '1.1.0'
end
s.subspec 'SQL' do |sql|
sql.source_files = 'Pod/SQL/*.{h,m}'
sql.dependency 'GoldDigger/Core'
sql.dependency 'SQLAid', '0.2.0'
end
end