This repository was archived by the owner on Jan 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathRealmContent.podspec
More file actions
41 lines (31 loc) · 1.44 KB
/
RealmContent.podspec
File metadata and controls
41 lines (31 loc) · 1.44 KB
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
37
38
39
40
41
Pod::Spec.new do |s|
s.name = 'RealmContent'
s.version = '0.2.6'
s.summary = 'Realm powered content management system'
s.description = <<-DESC
Realm powered content management system providing built-in view controllers and views to rapidly add dynamic content to iOS apps.
DESC
s.homepage = 'https://github.com/realm-demos/RealmContent'
# s.screenshots = ''
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/realm-demos/RealmContent.git', :tag => s.version.to_s }
s.author = { 'Realm' => 'help@realm.io' }
s.library = 'c++'
s.requires_arc = true
s.social_media_url = 'https://twitter.com/realm'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.ios.deployment_target = '9.0'
s.frameworks = 'UIKit'
s.dependency 'RealmSwift', '~> 3'
s.dependency 'Kingfisher', '~> 4'
s.dependency 'NSString+Color'
s.default_subspec = 'Core'
s.subspec 'Core' do |cs|
cs.source_files = 'RealmContent/Entities/*', 'RealmContent/Core/Classes/*', 'RealmContent/Core/View/*'
end
s.subspec 'Markdown' do |cs|
cs.dependency 'MMMarkdown'
cs.source_files = 'RealmContent/Entities/*', 'RealmContent/Markdown/Classes/*', 'RealmContent/Markdown/View/*'
end
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
end