Skip to content

Commit

Permalink
Updated Podspec file to 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
asifbilal786 committed Jun 20, 2016
1 parent 8d89c80 commit a686368
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions SimplePhotoPicker.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ 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.
DESC

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 ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
Expand All @@ -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

0 comments on commit a686368

Please sign in to comment.