forked from rileytestut/Harmony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHarmony.podspec
25 lines (20 loc) · 978 Bytes
/
Harmony.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
Pod::Spec.new do |spec|
spec.name = "Harmony"
spec.version = "0.1"
spec.summary = "iOS Syncing Framework"
spec.description = "iOS framework that automatically syncs Core Data databases across different backends."
spec.homepage = "https://github.com/rileytestut/Harmony"
spec.platform = :ios, "14.0"
spec.source = { :git => "https://github.com/litritt/Harmony.git" }
spec.author = { "Riley Testut" => "riley@rileytestut.com" }
spec.social_media_url = "https://twitter.com/rileytestut"
spec.source_files = "Harmony/**/*.{h,m,swift}"
spec.public_header_files = "Harmony/Harmony.h"
spec.header_mappings_dir = ""
spec.resources = "Harmony/**/*.xcdatamodeld", "Harmony/**/*.xcmappingmodel"
spec.dependency 'Roxas'
spec.subspec 'Harmony-Dropbox' do |dropbox|
dropbox.source_files = "Backends/Dropbox/Harmony-Dropbox/**/*.swift"
dropbox.dependency 'SwiftyDropbox', '~> 5.0.0'
end
end