Skip to content

Commit

Permalink
Left aligned from now on
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanbruel committed Jan 15, 2016
1 parent 61854bd commit 0ca5099
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 2 deletions.
Empty file modified .gitignore
100644 → 100755
Empty file.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified README.md
100644 → 100755
Empty file.
3 changes: 2 additions & 1 deletion SeparatorCollectionViewFlowLayout.podspec
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SeparatorCollectionViewFlowLayout"
s.version = "1.0.5"
s.version = "1.1"
s.summary = "A UICollectionViewFlowLayout implementation to allow separators between cells"
s.description = <<-EOS
A UICollectionViewFlowLayout implementation to allow separators between cells
Expand All @@ -20,6 +20,7 @@ Pod::Spec.new do |s|
ss.source_files = "Source/*.swift"
ss.framework = "Foundation"
ss.framework = "UIKit"
ss.dependency = "UICollectionViewLeftAlignedLayout"
end

end
3 changes: 2 additions & 1 deletion Source/SeparatorCollectionViewFlowLayout.swift
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@

import Foundation
import UIKit
import UICollectionViewLeftAlignedLayout

public class SeparatorCollectionViewFlowLayout: UICollectionViewFlowLayout {
public class SeparatorCollectionViewFlowLayout: UICollectionViewLeftAlignedLayout {

@IBInspectable var separatorWidth: CGFloat = 1 {
didSet {
Expand Down

0 comments on commit 0ca5099

Please sign in to comment.