-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDataFixture.podspec
36 lines (26 loc) · 1.13 KB
/
DataFixture.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
33
34
35
36
Pod::Spec.new do |s|
s.name = 'DataFixture'
s.version = '2.1.0'
s.summary = 'Creation of data model easily, with no headache.'
s.description = <<-DESC
Creation of data model easily, with no headache. DataFixture is onvenient way to generate new data for testing / seeding your Realm Database.
DESC
s.homepage = 'https://github.com/andreadelfante/DataFixture'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'andreadelfante' => '[email protected]' }
s.source = { :git => 'https://github.com/andreadelfante/DataFixture.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/a_delfante'
s.swift_version = '5.1'
s.cocoapods_version = '> 0.39.0'
s.ios.deployment_target = '9.0'
s.dependency 'Fakery'
s.default_subspec = 'Basic'
s.subspec 'Basic' do |b|
b.source_files = [ 'DataFixture/Classes/**/*' ]
end
s.subspec 'RealmSeeder' do |r|
r.source_files = [ 'DataFixture-RealmSeeder/Classes/**/*' ]
r.dependency 'DataFixture/Basic'
r.dependency 'RealmSwift'
end
end