forked from nabla/nabla-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNablaScheduling.podspec
26 lines (21 loc) · 1.33 KB
/
NablaScheduling.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
Pod::Spec.new do |spec|
spec.name = "NablaScheduling"
spec.version = "1.1.3"
spec.summary = "#{spec.name} iOS SDK"
spec.description = <<-DESC
The Nabla iOS SDK makes it quick and easy to build an excellent healthcare communication experience in your iOS app.
We provide powerful and customizable UI elements that can be used out-of-the-box to create a full healthcare communication experience.
We also expose the low-level APIs that power those UIs so that you can build fully custom experiences.
Right now the library is in alpha, meaning all core features are here and ready to be used but API might change during the journey to a stable 1.0 version.
DESC
spec.homepage = "https://www.nabla.com"
spec.documentation_url = "https://docs.nabla.com"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = "Nabla Technologies"
spec.platform = :ios, "13.0"
spec.swift_versions = '5.0'
spec.source = { :git => "https://github.com/nabla/nabla-ios.git", :tag => "#{spec.version}" }
spec.source_files = ["Sources/#{spec.name}/**/*.swift"]
spec.resource_bundles = {"#{spec.name}Resources" => "Sources/#{spec.name}/Resources/**/*"}
spec.dependency 'NablaCore', "#{spec.version}"
end