Skip to content

Commit fe0608f

Browse files
author
Mike Amaral
committedOct 3, 2015
Cleanup.
1 parent 284eec4 commit fe0608f

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed
 

Diff for: ‎Neon.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,9 @@
189189
isa = PBXGroup;
190190
children = (
191191
03EDD3AE1BBF8BC90006C4A9 /* Neon.swift */,
192-
03EDD3AF1BBF8BC90006C4A9 /* NeonAlignable.swift */,
193-
03EDD3B01BBF8BC90006C4A9 /* NeonAnchorable.swift */,
194192
03EDD3B11BBF8BC90006C4A9 /* NeonFrameable.swift */,
193+
03EDD3B01BBF8BC90006C4A9 /* NeonAnchorable.swift */,
194+
03EDD3AF1BBF8BC90006C4A9 /* NeonAlignable.swift */,
195195
03EDD3B21BBF8BC90006C4A9 /* NeonGroupable.swift */,
196196
03EDD39F1BBF8A6A0006C4A9 /* Supporting Files */,
197197
);

Diff for: ‎Source/Neon.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
// Copyright © 2015 Mike Amaral. All rights reserved.
77
//
88

9-
109
#if os(iOS)
1110
import UIKit
1211
typealias View = UIView
@@ -28,6 +27,7 @@ extension View : Frameable, Anchorable, Alignable, Groupable {
2827
}
2928
}
3029

30+
3131
// MARK: CALayer implementation of the Neon protocols.
3232
//
3333
extension CALayer : Frameable, Anchorable, Alignable, Groupable {

Diff for: ‎Source/NeonAlignable.swift

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
public protocol Alignable : Frameable {}
1717

1818
public extension Alignable {
19+
1920
/// Align a view relative to a sibling view in the same superview.
2021
///
2122
/// - parameters:

Diff for: ‎Source/NeonFrameable.swift

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
// Copyright © 2015 Mike Amaral. All rights reserved.
77
//
88

9-
109
#if os(iOS)
1110
import UIKit
1211
#else

Diff for: ‎Source/NeonGroupable.swift

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
// Copyright © 2015 Mike Amaral. All rights reserved.
77
//
88

9-
109
#if os(iOS)
1110
import UIKit
1211
#else

0 commit comments

Comments
 (0)