From 4d00cacee95ccf7c366bdd79bf3bafa875dad7fd Mon Sep 17 00:00:00 2001 From: Taylor Franklin Date: Fri, 17 Mar 2017 10:13:48 -0500 Subject: [PATCH 1/3] attempt to get cocoa pod working --- BlueSocket.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 BlueSocket.podspec diff --git a/BlueSocket.podspec b/BlueSocket.podspec new file mode 100644 index 0000000..a2afba6 --- /dev/null +++ b/BlueSocket.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = "BlueSocket" + s.version = "0.12.34-beta" + s.summary = "Socket framework for Swift using the Swift Package Manager" + s.homepage = "https://github.com/IBM-Swift/BlueSocket" + s.license = { :type => "Apache License, Version 2.0" } + s.author = "IBM" + + s.requires_arc = true + s.osx.deployment_target = "10.11" + s.ios.deployment_target = "10.0" + s.source = { :git => "https://github.com/IBM-Swift/BlueSocket.git", :tag => s.version } + s.source_files = "Sources/*.swift" + s.pod_target_xcconfig = { + 'SWIFT_VERSION' => '3.0', + } +end \ No newline at end of file From e0dbaaae3c56424a54a67ad93965a5b9ab33fd69 Mon Sep 17 00:00:00 2001 From: Taylor Franklin Date: Fri, 17 Mar 2017 10:28:43 -0500 Subject: [PATCH 2/3] adding module name to pod spec --- BlueSocket.podspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BlueSocket.podspec b/BlueSocket.podspec index a2afba6..7f40b6b 100644 --- a/BlueSocket.podspec +++ b/BlueSocket.podspec @@ -1,10 +1,11 @@ Pod::Spec.new do |s| s.name = "BlueSocket" - s.version = "0.12.34-beta" + s.version = "0.12.35-beta2" s.summary = "Socket framework for Swift using the Swift Package Manager" s.homepage = "https://github.com/IBM-Swift/BlueSocket" s.license = { :type => "Apache License, Version 2.0" } s.author = "IBM" + s.module_name = 'Socket' s.requires_arc = true s.osx.deployment_target = "10.11" From 23cbddacbdff5ceee18b7ec39d02c32c6f1b6fc0 Mon Sep 17 00:00:00 2001 From: Taylor Franklin Date: Fri, 17 Mar 2017 10:34:25 -0500 Subject: [PATCH 3/3] one more pod spec version change --- BlueSocket.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BlueSocket.podspec b/BlueSocket.podspec index 7f40b6b..1434c8a 100644 --- a/BlueSocket.podspec +++ b/BlueSocket.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "BlueSocket" - s.version = "0.12.35-beta2" + s.version = "0.12.35" s.summary = "Socket framework for Swift using the Swift Package Manager" s.homepage = "https://github.com/IBM-Swift/BlueSocket" s.license = { :type => "Apache License, Version 2.0" }