From a686368f629e11c77e0566fcdf164d268fdbcfa7 Mon Sep 17 00:00:00 2001 From: Asif Bilal Date: Mon, 20 Jun 2016 15:16:20 +0500 Subject: [PATCH] Updated Podspec file to 0.1.4 --- SimplePhotoPicker.podspec | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/SimplePhotoPicker.podspec b/SimplePhotoPicker.podspec index 351487c..9f6e644 100644 --- a/SimplePhotoPicker.podspec +++ b/SimplePhotoPicker.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # s.name = 'SimplePhotoPicker' - s.version = '0.1.3' + s.version = '0.1.4' s.summary = 'This is the simple photo picker which uses default iPhone SDK with UIImagePickerController.' s.description = <<-DESC SimplePhotoPicker is a control that optionally takes inputs of Source Type & allow Editing. On the basis of these inputs, this control displays the action sheet if needed and displays the iOS default image editor if selected. It has simple block based implementation. No need to implement delegate methods. @@ -10,6 +10,8 @@ Pod::Spec.new do |s| s.homepage = 'https://github.com/asifbilal786/SimplePhotoPicker' # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' + s.frameworks = 'UIKit' + s.requires_arc = true # ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # @@ -29,6 +31,11 @@ Pod::Spec.new do |s| s.source = { :git => 'https://github.com/asifbilal786/SimplePhotoPicker.git', :tag => s.version } s.social_media_url = 'https://twitter.com/asifbilal786' - s.source_files = 'SimplePhotoPicker/PhotoPicker.swift' - s.requires_arc = true + s.default_subspec = 'Core' + + s.subspec 'Core' do |sp| + sp.source_files = 'Pod', 'SimplePhotoPicker/Core/*.swift' + end + + end \ No newline at end of file