forked from rabbitmq/rabbitmq-objc-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRMQClient.podspec
19 lines (19 loc) · 896 Bytes
/
RMQClient.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "RMQClient"
s.version = "0.10.0"
s.summary = "RabbitMQ client"
s.description = <<-DESC
RabbitMQ client for Objective-C and Swift. Developed and supported by the
RabbitMQ team.
DESC
s.homepage = "https://github.com/rabbitmq/rabbitmq-objc-client"
s.license = "Mozilla Public License, Version 1.1 and Apache License, Version 2.0"
s.author = { "RabbitMQ team" => "[email protected]" }
s.social_media_url = "https://twitter.com/rabbitmq"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.11"
s.source = { :git => "https://github.com/rabbitmq/rabbitmq-objc-client.git", :tag => "v#{s.version}" }
s.source_files = "RMQClient", "RMQClient/**/*.{h,m}"
s.dependency "JKVValue"
s.dependency "CocoaAsyncSocket", "~> 7.5.0"
end