-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
98 changed files
with
1,875 additions
and
2,888 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,9 @@ | |
// | ||
|
||
@_exported import Foundation | ||
#if os(iOS) || os(tvOS) | ||
@_exported import UIKit | ||
#endif | ||
|
||
|
||
/// Grid view | ||
|
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.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// | ||
// Hagrid_appleTV.h | ||
// Hagrid-appleTV | ||
// | ||
// Created by Ondrej Rafaj on 31/05/2018. | ||
// Copyright © 2018 LiveUI. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
|
||
//! Project version number for Hagrid_appleTV. | ||
FOUNDATION_EXPORT double Hagrid_appleTVVersionNumber; | ||
|
||
//! Project version string for Hagrid_appleTV. | ||
FOUNDATION_EXPORT const unsigned char Hagrid_appleTVVersionString[]; | ||
|
||
// In this header, you should import all the public headers of your framework using statements like #import <Hagrid_appleTV/PublicHeader.h> | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# | ||
# Be sure to run `pod lib lint Reloaded.podspec' to ensure this is a | ||
# valid spec before submitting. | ||
# | ||
# Any lines starting with a # are optional, but their use is encouraged | ||
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html | ||
# | ||
|
||
Pod::Spec.new do |s| | ||
s.name = 'Hagrid' | ||
s.version = '1.0.0' | ||
s.summary = 'Brings proper grid layout to the Apple platforms!' | ||
s.swift_version = '4.1' | ||
|
||
# This description is used to generate tags and improve search results. | ||
# * Think: What does it do? Why did you write it? What is the focus? | ||
# * Try to keep it short, snappy and to the point. | ||
# * Write the description between the DESC delimiters below. | ||
# * Finally, don't worry about the indent, CocoaPods strips it! | ||
|
||
s.description = <<-DESC | ||
Hagrid is a simple to use grid layout engine based on SnapKit. Written purely in swift and with a great amount of love! | ||
DESC | ||
|
||
s.homepage = 'https://github.com/LiveUI/Hagrid' | ||
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'rafiki270' => 'dev@liveui.io' } | ||
s.source = { :git => 'https://github.com/LiveUI/Hagrid.git', :tag => s.version.to_s } | ||
# s.social_media_url = 'https://twitter.com/rafiki270' | ||
|
||
s.ios.deployment_target = '9.3' | ||
s.tvos.deployment_target = '10.2' | ||
#s.macos.deployment_target = '10.12' | ||
|
||
s.source_files = 'Classes/**/*' | ||
|
||
# s.public_header_files = 'Pod/Classes/**/*.h' | ||
s.frameworks = 'UIKit' | ||
s.dependency 'SnapKit', '~> 4.0.0' | ||
end |
Oops, something went wrong.