-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMagicBell.podspec
34 lines (26 loc) · 1.16 KB
/
MagicBell.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
#
# Be sure to run `pod lib lint MagicBell.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'MagicBell'
s.version = package['version']
s.summary = 'Official MagicBell SDK for Swift'
s.description = 'Official MagicBell SDK for Swift. The notification inbox for your product.'
s.homepage = 'https://magicbell.com'
s.license = { :type => 'Custom', :file => 'LICENSE' }
s.author = { 'MagicBell' => '[email protected]' }
s.source = { :git => 'https://github.com/magicbell/magicbell-swift.git', :tag => 'v'+s.version.to_s }
s.social_media_url = 'https://twitter.com/magicbell_io'
s.osx.deployment_target = '10.15'
s.ios.deployment_target = '12.0'
s.swift_versions = ['5.3', '5.4', '5.5']
s.source_files = 'Source/**/*.swift'
s.dependency 'Harmony', '2.0.0'
s.dependency 'Ably', '1.2.27'
end