Skip to content
This repository was archived by the owner on Sep 15, 2019. It is now read-only.

Commit c93c9e1

Browse files
Satinder SinghSatinder Singh
Satinder Singh
authored and
Satinder Singh
committed
Refactor
- Refactor into multiple files - Improved Naming Convention - Removed unnecessary methods - Added Unit Testing
1 parent e55a2f1 commit c93c9e1

33 files changed

+937
-707
lines changed

Example/Podfile

+10-4
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@ use_frameworks!
33
target 'SnapLayout_Example' do
44
pod 'SnapLayout', :path => '../'
55

6-
target 'SnapLayout_Tests' do
7-
inherit! :search_paths
8-
9-
6+
target 'SnapLayout_ExampleTests' do
7+
inherit! :search_paths
108
end
119
end
10+
11+
post_install do |installer|
12+
installer.pods_project.targets.each do |target|
13+
target.build_configurations.each do |config|
14+
config.build_settings['SWIFT_VERSION'] = '3.0'
15+
end
16+
end
17+
end

Example/Podfile.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- SnapLayout (0.1.0)
2+
- SnapLayout (1.0.7)
33

44
DEPENDENCIES:
55
- SnapLayout (from `../`)
@@ -9,8 +9,8 @@ EXTERNAL SOURCES:
99
:path: "../"
1010

1111
SPEC CHECKSUMS:
12-
SnapLayout: fdee9eb11ceb8d18bf2fe2444b0ea8363c41ede1
12+
SnapLayout: b126499cc2d4e779ca1fb4100fdf886ffe3231e8
1313

14-
PODFILE CHECKSUM: 5160f9ae3cb931e7663d95b68905f03acc7b2467
14+
PODFILE CHECKSUM: f6cd245470fd9f107dd94e8ef9bffeaa3467d0af
1515

16-
COCOAPODS: 1.1.0.rc.2
16+
COCOAPODS: 1.0.1

Example/Pods/Local Podspecs/SnapLayout.podspec.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Manifest.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Pods.xcodeproj/project.pbxproj

+274-291
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-SnapLayout_Example/Pods-SnapLayout_Example-acknowledgements.plist

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-SnapLayout_Example/Pods-SnapLayout_Example.debug.xcconfig

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-SnapLayout_Example/Pods-SnapLayout_Example.release.xcconfig

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-SnapLayout_ExampleTests/Pods-SnapLayout_ExampleTests-dummy.m

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-SnapLayout_ExampleTests/Pods-SnapLayout_ExampleTests-umbrella.h

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-SnapLayout_Tests/Pods-SnapLayout_Tests.release.xcconfig Example/Pods/Target Support Files/Pods-SnapLayout_ExampleTests/Pods-SnapLayout_ExampleTests.debug.xcconfig

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-SnapLayout_ExampleTests/Pods-SnapLayout_ExampleTests.modulemap

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-SnapLayout_Tests/Pods-SnapLayout_Tests.debug.xcconfig Example/Pods/Target Support Files/Pods-SnapLayout_ExampleTests/Pods-SnapLayout_ExampleTests.release.xcconfig

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-SnapLayout_Tests/Pods-SnapLayout_Tests-dummy.m

-5
This file was deleted.

Example/Pods/Target Support Files/Pods-SnapLayout_Tests/Pods-SnapLayout_Tests-umbrella.h

-6
This file was deleted.

Example/Pods/Target Support Files/Pods-SnapLayout_Tests/Pods-SnapLayout_Tests.modulemap

-6
This file was deleted.

Example/Pods/Target Support Files/SnapLayout/Info.plist

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)