Skip to content
This repository has been archived by the owner on Nov 19, 2023. It is now read-only.

Commit

Permalink
public extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
tib committed Feb 11, 2019
1 parent 8e033d8 commit 9f7696d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CollectionView.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'CollectionView'
s.version = '1.0.2'
s.version = '1.0.3'
s.summary = 'CollectionViews with ease.'
s.description = <<-DESC
A view model framework around collection views.
Expand Down
6 changes: 3 additions & 3 deletions Sources/Grid.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

import UIKit

extension UIEdgeInsets {
init(all value: CGFloat) {
public extension UIEdgeInsets {
public init(all value: CGFloat) {
self.init(top: value, left: value, bottom: value, right: value)
}
}

extension CGFloat {
public extension CGFloat {

public var evenRounded: CGFloat {
var newValue = self.rounded(.towardZero)
Expand Down

0 comments on commit 9f7696d

Please sign in to comment.