From 0610c3b7eb724e398924e49b42b3f5f4f7701538 Mon Sep 17 00:00:00 2001 From: Niko Usai Date: Thu, 12 Dec 2013 23:19:58 +0100 Subject: [PATCH] added podspec --- MDWamp.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 MDWamp.podspec diff --git a/MDWamp.podspec b/MDWamp.podspec new file mode 100644 index 0000000..b62e22f --- /dev/null +++ b/MDWamp.podspec @@ -0,0 +1,18 @@ +Pod::Spec.new do |s| + s.name = 'MDWamp' + s.version = '1.0.1' + s.license = 'Apache 2.0' + s.homepage = 'http://github.com/mogui/MDWamp' + s.summary = 'a client side objective-C implementation of the WebSocket subprotocol WAMP' + s.author = { + 'Niko Usai' => 'mogui83@gmail.com' + } + s.source = { + :git => 'https://github.com/mogui/MDWamp.git', + :tag => '1.0.1' + } + s.source_files = 'MDWamp/MDWamp/**/*.{h,m,c}' + s.ios.deployment_target = '5.0' + s.osx.frameworks = %w{CFNetwork Security} + s.libraries = "icucore" +end \ No newline at end of file