From b9516267e6834edef65f5cc093e91d473cdc46be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Benaiteau?= Date: Tue, 3 Mar 2015 14:51:07 +0100 Subject: [PATCH] Add Podspec --- STUtils.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 STUtils.podspec diff --git a/STUtils.podspec b/STUtils.podspec new file mode 100644 index 0000000..4d5e9fd --- /dev/null +++ b/STUtils.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = "STUtils" + s.version = "0.0.1" + s.summary = "Various useful Objective-C code." + s.homepage = "https://github.com/ldandersen/STUtils.git" + s.license = "MIT" + s.authors = { 'Buzz Andersen' => 'buzz@scifihifi.com' } + + s.source = { :git => "https://github.com/ldandersen/STUtils.git", :commit => "3389fb68605514afe0f14dd712e7d51ca0cfb054" } + + s.subspec 'Additions' do |ios| + ios.source_files = "iOS/**/*" + end + + s.subspec 'Security' do |security| + security.source_files = "Security" + security.frameworks = "Security" + end +end