From e552c436db1698aa3b1dc479762a93f4496ed008 Mon Sep 17 00:00:00 2001 From: ReDetection Date: Mon, 2 Mar 2015 17:52:39 +0600 Subject: [PATCH 1/2] added some gitignore --- .gitignore | 4 ++ .../xcshareddata/FTPKit.xccheckout | 41 ------------------- 2 files changed, 4 insertions(+), 41 deletions(-) create mode 100644 .gitignore delete mode 100644 FTPKit.xcodeproj/project.xcworkspace/xcshareddata/FTPKit.xccheckout diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b103455 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +xcuserdata +.DS_Store +.idea +*.xccheckout diff --git a/FTPKit.xcodeproj/project.xcworkspace/xcshareddata/FTPKit.xccheckout b/FTPKit.xcodeproj/project.xcworkspace/xcshareddata/FTPKit.xccheckout deleted file mode 100644 index 70a6ea9..0000000 --- a/FTPKit.xcodeproj/project.xcworkspace/xcshareddata/FTPKit.xccheckout +++ /dev/null @@ -1,41 +0,0 @@ - - - - - IDESourceControlProjectFavoriteDictionaryKey - - IDESourceControlProjectIdentifier - DC6B3E88-0BDA-4EFA-BC17-D3C7C081565B - IDESourceControlProjectName - FTPKit - IDESourceControlProjectOriginsDictionary - - E60CA41811954B4B65A8C3425AEDF2C90AD3886E - ssh://github.com/PeqNP/FTPKit.git - - IDESourceControlProjectPath - FTPKit.xcodeproj/project.xcworkspace - IDESourceControlProjectRelativeInstallPathDictionary - - E60CA41811954B4B65A8C3425AEDF2C90AD3886E - ../.. - - IDESourceControlProjectURL - ssh://github.com/PeqNP/FTPKit.git - IDESourceControlProjectVersion - 111 - IDESourceControlProjectWCCIdentifier - E60CA41811954B4B65A8C3425AEDF2C90AD3886E - IDESourceControlProjectWCConfigurations - - - IDESourceControlRepositoryExtensionIdentifierKey - public.vcs.git - IDESourceControlWCCIdentifierKey - E60CA41811954B4B65A8C3425AEDF2C90AD3886E - IDESourceControlWCCName - FTPKit - - - - From cfa0cb37790600f32bc4ca7c2fbc282efd97fc99 Mon Sep 17 00:00:00 2001 From: ReDetection Date: Mon, 2 Mar 2015 18:46:57 +0600 Subject: [PATCH 2/2] constructed podspec --- FTPKit.podspec | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 FTPKit.podspec diff --git a/FTPKit.podspec b/FTPKit.podspec new file mode 100644 index 0000000..eb7a5b3 --- /dev/null +++ b/FTPKit.podspec @@ -0,0 +1,29 @@ + +Pod::Spec.new do |s| + s.name = "FTPKit" + s.version = "1.3.1" + s.summary = "An Objective-C lib that provides client side facilities for FTP." + s.description = <<-DESC + FTPKit is an Objective-C library providing facilities implementing the client side of the File Transfer Protocol (FTP). + This lib is based off or inspired by the BlackRaccoon, WhiteReaccoon and Apple's SimpleFTP example. It utilizes the ftplib library, developed by Thomas Pfau, for most of the remote actions. + DESC + s.homepage = "https://github.com/PeqNP/FTPKit" + s.license = 'MIT' + s.author = { "Eric Chamberlain" => "eric.chamberlain@hotmail.com" } + s.source = { :git => "https://github.com/PeqNP/FTPKit.git", :tag => "v1.3.1" } + + s.requires_arc = true + s.ios.deployment_target = "6.0" + s.osx.deployment_target = "10.8" + + s.source_files = 'FTPKit/**/*', 'Libraries/include/ftplib/src/ftplib.{c,h}' + + s.public_header_files = 'FTPKit/**/*.h' + s.private_header_files = 'FTPKit/Protected/*.h' + s.prefix_header_contents = <<-PCH + #ifdef __OBJC__ + #import + #endif + PCH + +end