-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fraser Scott-Morrison
committed
May 15, 2015
1 parent
f0e3bc8
commit 31aeb4c
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'DoImagePickerController' | ||
s.version = '1.0' | ||
s.summary = 'An image picker controller with single selection and multiple selection. Support to select lots photos with panning gesture' | ||
s.homepage = 'https://github.com/IdleHandsApps/DoImagePickerController/' | ||
s.description = <<-DESC | ||
DoImagePickerController is an image picker controller with single selection and multiple selection. Support to select lots photos with panning gesture | ||
DESC | ||
s.license = 'MIT' | ||
s.author = { 'Fraser Scott-Morrison' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/IdleHandsApps/DoImagePickerController.git', :tag => s.version.to_s } | ||
s.platform = :ios, '7.0' | ||
s.source_files = 'ImagePicker/DoImagePicker/*{h,m}' | ||
s.public_header_files = 'ImagePicker/DoImagePicker/*.h' | ||
s.resources = 'ImagePicker/DoImagePicker/*.{xib}' | ||
|
||
s.ios.deployment_target = '7.0' | ||
s.requires_arc = true | ||
end |