From d1bd0a9a889869b3e4802d9d79a4b40114532bba Mon Sep 17 00:00:00 2001 From: Ilya Kharabet Date: Fri, 15 Dec 2017 11:38:01 +0300 Subject: [PATCH] Add podspec --- Foto.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Foto.podspec diff --git a/Foto.podspec b/Foto.podspec new file mode 100644 index 0000000..c10d980 --- /dev/null +++ b/Foto.podspec @@ -0,0 +1,18 @@ +Pod::Spec.new do |s| + + s.name = 'Foto' + s.summary = 'Easy to use gallery content provider written in Swift' + s.authors = 'nofearjoe' + s.homepage = 'https://github.com/NoFearJoe' + s.license = { :type => 'MIT' } + + s.version = '0.1' + s.source = { :git => 'https://github.com/NoFearJoe/Foto.git', :tag => s.version.to_s } + + s.platform = :ios + s.ios.deployment_target = '9.0' + s.requires_arc = true + + s.source_files = 'Foto/Foto/Sources/**/*.{swift}' + +end