-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathRMQClient.podspec
23 lines (22 loc) · 979 Bytes
/
RMQClient.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "RMQClient"
s.version = "0.13.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 = { type: "Apache 2.0", file: "LICENSE-APACHE2" }
s.author = { "Team RabbitMQ" => "[email protected]" }
s.social_media_url = "https://twitter.com/rabbitmq"
s.ios.deployment_target = "15.0"
s.osx.deployment_target = "12.5"
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", "~> 1.3"
s.dependency "CocoaAsyncSocket", "~> 7.6"
s.pod_target_xcconfig = {
'PRODUCT_BUNDLE_IDENTIFIER': 'io.pivotal.RMQClient'
}
end