-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Raizlabs/feature/ateliercw/tests_and_struc…
…ture Feature/ateliercw/tests and structure
- Loading branch information
Showing
27 changed files
with
754 additions
and
267 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,35 @@ | ||
# RIGImageGallery | ||
|
||
[![Version](https://img.shields.io/cocoapods/v/RIGImageGallery.svg?style=flat)](http://cocoapods.org/pods/RIGImageGallery) | ||
[![License](https://img.shields.io/cocoapods/l/RIGImageGallery.svg?style=flat)](http://cocoapods.org/pods/RIGImageGallery) | ||
[![Platform](https://img.shields.io/cocoapods/p/RIGImageGallery.svg?style=flat)](http://cocoapods.org/pods/RIGImageGallery) | ||
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) | ||
|
||
RIGImageGallery is an image gallery for iOS written in Swift. | ||
|
||
The goal is to offer sensible defaults that takes care of most of building an image gallery automatically, and offer easy block based customization.. | ||
|
||
## Installation with CocoaPods | ||
|
||
RIGImageGallery is available through [CocoaPods](http://cocoapods.org). To install | ||
it, simply add the following line to your Podfile: | ||
|
||
```ruby | ||
pod 'RIGImageGallery' | ||
``` | ||
|
||
## Installation with Carthage | ||
|
||
RIGImageGallery is also compatible with [Carthage](https://github.com/Carthage/Carthage). To install it, simply add the following line to your Cartfile: | ||
|
||
```ogdl | ||
github "Raizlabs/RIGImageGallery" | ||
``` | ||
|
||
## Author | ||
|
||
Michael Skiba, mike.skiba@raizlabs.com | ||
|
||
## License | ||
|
||
RIGImageGallery is available under the MIT license. See the LICENSE file for more info. |
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,24 +1,24 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "RIGImageGallery" | ||
s.version = "0.0.1" | ||
s.version = "0.1.0" | ||
s.summary = "An image gallery view controller designed to work with the Raizlabs Interface Guidelines for iOS." | ||
|
||
s.description = <<-DESC | ||
An image gallery view controller designed to work with the Raizlabs Interface Guidelines for iOS. | ||
RIGImageGallery is an image gallery for iOS written in Swift. | ||
Includes pinch to zoom, swiping between images, and tap to hide scrollbars. | ||
The goal is to offer sensible defaults that takes care of most of building an image gallery automatically, and offer easy block based customization. | ||
DESC | ||
|
||
s.homepage = "https://github.com/raizlabs/RIGImageGallery" | ||
s.license = 'MIT' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { "Michael Skiba" => "mike.skiba@raizlabs.com" } | ||
s.source = { :git => "https://github.com/raizlabs/RIGImageGallery.git", :tag => s.version.to_s } | ||
s.social_media_url = 'https://twitter.com/ateliercw' | ||
|
||
s.platform = :ios, '9.0' | ||
s.requires_arc = true | ||
s.ios.deployment_target = '9.0' | ||
|
||
s.source_files = 'RIGImageGallery', 'RIGImageGallery/**/*' | ||
|
||
s.frameworks = ["Foundation", "UIKit"] | ||
s.frameworks = 'Foundation', 'UIKit' | ||
|
||
end |
Large diffs are not rendered by default.
Oops, something went wrong.
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
File renamed without changes.
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.