From dcf4492622e3b5466a057a5a2af866e8581d2459 Mon Sep 17 00:00:00 2001 From: Atsushi_Araki Date: Sat, 4 Mar 2017 13:34:34 +0900 Subject: [PATCH] add SwiftActors.podspec --- .DS_Store | Bin 6148 -> 0 bytes .gitignore | 2 ++ SwiftActors.podspec | 83 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 85 insertions(+) delete mode 100644 .DS_Store create mode 100644 SwiftActors.podspec diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 02f7d1da5fcfab04d5521f3d38d8678aa61de6b9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHK%}T>S5T30SDtf3lkNX5d-yoFu1n~isMk>;DLx0qZkcaUo_$nTJAiw!RTB8s= z6tOcf`)wvO+03_LCqqPGye>yXLn0bL8GA<YfPI)nFy~%^W1?YZ*eK!-Bxop5LxZ&#LBnB>=9d{ZiW*MA znvY;B2kTIRtd8eLai@?e`sfTe1KSK7=;e^>|HaS!|8|gHIRnnXzhWTt^CBN3C9AEi vL! "MIT", :file => "FILE_LICENSE" } + + + # ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # + # + # Specify the authors of the library, with email addresses. Email addresses + # of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also + # accepts just a name if you'd rather not provide an email address. + # + # Specify a social_media_url where others can refer to, for example a twitter + # profile URL. + # + + s.author = "Tomek Cejner, Atsushi Araki" + + # ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― # + # + # If this Pod runs only on iOS or OS X, then specify the platform and + # the deployment target. You can optionally include the target after the platform. + # + + s.platform = :ios, "8.0" + + + # ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # + # + # Specify the location from where the source should be retrieved. + # Supports git, hg, bzr, svn and HTTP. + # + + s.source = { :git => "https://github.com/applideveloper/SwiftActors.git", :branch => "master" } + + + # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # + # + # CocoaPods is smart about how it includes source code. For source files + # giving a folder will include any swift, h, m, mm, c & cpp files. + # For header files it will include any header in the folder. + # Not including the public_header_files will make all headers public. + # + + s.source_files = "Swactor/*.{swift}" + +end