Skip to content

Commit

Permalink
Updates podspec to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pavankataria committed Apr 6, 2017
1 parent ace2eab commit 7f6bcb2
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- SwiftDataTables (0.4.2)
- SwiftDataTables (0.5.0)

DEPENDENCIES:
- SwiftDataTables (from `../`)
Expand All @@ -9,7 +9,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
SwiftDataTables: e00dd31cb962d895d7ce2a8b7b0b6e3da419ce2b
SwiftDataTables: c6191386bf58e48178f0362170fa7d65439ccaf7

PODFILE CHECKSUM: 117ac710a88fe801ecac2a925baa29b1107fef2e

Expand Down
4 changes: 2 additions & 2 deletions Example/Pods/Local Podspecs/SwiftDataTables.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion SwiftDataTables.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'SwiftDataTables'
s.version = '0.4.3'
s.version = '0.5.1'
s.summary = 'A Swift Data Table package that allows ordering, searching, and paging with extensible options.'

# This description is used to generate tags and improve search results.
Expand Down
5 changes: 2 additions & 3 deletions SwiftDataTables/Classes/SwiftDataTableFlowLayout.swift
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ class SwiftDataTableFlowLayout: UICollectionViewFlowLayout {
let currentRowYOffset = Array(0..<row).reduce(defaultUpperHeight) { $0 + self.dataTable.heightForRow(index: $1) + self.dataTable.heightOfInterRowSpacing() }
yOffsets.append(currentRowYOffset)
}
// print("prepare layout with \(counter) rows")


//Item equals the current item in the row
Expand All @@ -83,8 +82,8 @@ class SwiftDataTableFlowLayout: UICollectionViewFlowLayout {
cache.append(attributes)
}
}
let methodFinish = Date()
let executionTime = methodFinish.timeIntervalSince(methodStart)
//let methodFinish = Date()
//let executionTime = methodFinish.timeIntervalSince(methodStart)
// print("Prepare method: exec-time: \(executionTime)")

self.collectionView?.scrollIndicatorInsets = UIEdgeInsets(
Expand Down

0 comments on commit 7f6bcb2

Please sign in to comment.