forked from prine/ROThumbnailGenerator
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Migration to Swift 3 and make it ready for iOS 10
- Loading branch information
Robin Oster
committed
Sep 20, 2016
1 parent
d486188
commit e44d694
Showing
12 changed files
with
115 additions
and
121 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 |
---|---|---|
@@ -1,38 +1,23 @@ | ||
# | ||
# Be sure to run `pod lib lint ROStorageBar.podspec' to ensure this is a | ||
# Be sure to run `pod lib lint ROThumbnailGenerator' to ensure this is a | ||
# valid spec and remove all comments before submitting the spec. | ||
# | ||
# Any lines starting with a # are optional, but encouraged | ||
# | ||
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html | ||
# | ||
|
||
Pod::Spec.new do |s| | ||
s.name = "ROThumbnailGenerator" | ||
s.version = "2.0.1" | ||
s.summary = "Creates thumbnails of different file types very easily" | ||
s.description = <<-DESC | ||
It does create a thumbnail by the given file url. Creation of PDF, Image and Video thumbnails is per default supported. | ||
With implementing the ROThumbnailGenerator it is very simple to add an additional ThumbnailGenerator for a missing file type. | ||
DESC | ||
s.homepage = "https://github.com/prine/ROThumbnailGenerator" | ||
#s.screenshots = "https://raw.githubusercontent.com/prine/ROThumbnailGenerator/master/Screenshot.png" | ||
s.license = 'MIT' | ||
s.author = { "Robin Oster" => "[email protected]" } | ||
s.source = { :git => "https://github.com/prine/ROThumbnailGenerator.git", :tag => s.version.to_s } | ||
s.social_media_url = 'https://twitter.com/prinedev' | ||
|
||
s.platform = :ios, '8.0' | ||
s.requires_arc = true | ||
|
||
s.source_files = 'Source/**/*' | ||
s.resource_bundles = { | ||
'ROBarcodeScanner' => ['Pod/Assets/*.png'] | ||
} | ||
|
||
#s.resources = ["Source/*.Storyboard"] | ||
|
||
# s.public_header_files = 'Pod/Classes/**/*.h' | ||
# s.frameworks = 'UIKit', 'MapKit' | ||
# s.dependency 'AFNetworking', '~> 2.3' | ||
Pod::Spec.new do |spec| | ||
spec.name = 'ROThumbnailGenerator' | ||
spec.version = '2.1.0' | ||
spec.license = { :type => 'MIT' } | ||
spec.homepage = 'https://github.com/prine/ROThumbnailGenerator' | ||
spec.authors = { 'Robin Oster' => '[email protected]' } | ||
spec.summary = 'Creates thumbnails of different file types very easily' | ||
spec.source = { :git => 'https://github.com/prine/ROThumbnailGenerator.git', :tag => "2.1.0" } | ||
spec.source_files = 'Source/**/*' | ||
spec.framework = 'SystemConfiguration' | ||
spec.ios.deployment_target = '9.3' | ||
end |
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
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
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
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
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
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
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
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
Oops, something went wrong.