forked from Romixery/SwiftStomp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftStomp.podspec
More file actions
36 lines (30 loc) · 1.26 KB
/
SwiftStomp.podspec
File metadata and controls
36 lines (30 loc) · 1.26 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
#
# Be sure to run `pod lib lint SwiftStomp.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
#
Pod::Spec.new do |s|
s.name = 'SwiftStomp'
s.version = '1.2.1'
s.summary = 'An elegant Stomp client for iOS.'
s.description = <<-DESC
SwiftStomp is and elegant, light-weight and easy-to-use STOMP (Simple Text Oriented Messaging Protocol) client for iOS.
It's based on `URLSessionWebSocketTask`.
DESC
s.homepage = 'https://github.com/Romixery/SwiftStomp'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = {'Romixery' => 'http://attar.ai'}
s.source = { :git => 'https://github.com/Romixery/SwiftStomp.git', :tag => "#{s.version}"}
s.ios.deployment_target = '13.0'
s.osx.deployment_target = "10.15"
s.tvos.deployment_target = "13.0"
s.swift_version = '5.0'
s.source_files = 'SwiftStomp/Classes/**/*'
# s.resource_bundles = {
# 'SwiftStomp' => ['SwiftStomp/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
s.dependency 'ReachabilitySwift', '~> 5.2.1'
end