-
Notifications
You must be signed in to change notification settings - Fork 13
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
Robin Oster
committed
Aug 12, 2015
1 parent
b913edd
commit 85e577d
Showing
4 changed files
with
93 additions
and
2 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,43 @@ | ||
# ROThumbnailGenerator | ||
Creates Thumbnails.... | ||
|
||
## Installation | ||
|
||
ROThumbnailGenerator is available through [CocoaPods](http://cocoapods.org). To install | ||
it, simply add the following line to your Podfile: | ||
|
||
```ruby | ||
pod "ROThumbnailGenerator" | ||
``` | ||
|
||
## How to use | ||
Todo | ||
|
||
## License | ||
|
||
``` | ||
The MIT License (MIT) | ||
Copyright (c) 2015 Robin Oster (http://prine.ch) | ||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
the Software, and to permit persons to whom the Software is furnished to do so, | ||
subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
``` | ||
|
||
## Author | ||
|
||
Robin Oster, [email protected] |
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,38 @@ | ||
# | ||
# Be sure to run `pod lib lint ROStorageBar.podspec' 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 = "1.0.0" | ||
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' | ||
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