forked from Romixery/SwiftStomp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftStomp.podspec
39 lines (33 loc) · 1.51 KB
/
SwiftStomp.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
35
36
37
38
39
#
# 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.1.0'
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 Starscream, an amazing Websocket library for swift.
DESC
s.homepage = 'https://github.com/Romixery/SwiftStomp'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Romixery' => '[email protected]' }
s.source = { :git => 'https://github.com/Romixery/SwiftStomp.git', :tag => s.version.to_s }
s.author = {'Ahmad Daneshvar' => 'http://iamdaneshvar.com'}
s.source = { :git => 'https://github.com/Romixery/SwiftStomp.git', :tag => "#{s.version}"}
s.ios.deployment_target = '10.0'
s.osx.deployment_target = "10.12"
s.tvos.deployment_target = "10.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 'Starscream', '~> 4.0.4'
s.dependency 'ReachabilitySwift', '~> 5.0.0'
end