Skip to content
This repository was archived by the owner on Oct 18, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
6ab808d
Add .gitignore
Dec 20, 2018
5506625
Initial setup
Dec 20, 2018
cf75d35
Add bitrise.yml
Dec 21, 2018
a09a4cd
Update project structure
Dec 21, 2018
f201c17
Add Pull Request template
Dec 21, 2018
96d21d4
Update README.md with initial info
Dec 21, 2018
f423836
Provide a default link in PR template
Dec 21, 2018
e4d6897
Update bundle identifier
Dec 21, 2018
cc14987
Set code signing to manual
Dec 21, 2018
db689a2
Update build step in bitrise.yml
Dec 21, 2018
110e29a
Update iOS deployment target
Dec 24, 2018
f18b1d2
Merge pull request #1 from netguru/task/CRAI-355
anyashka Dec 28, 2018
3262fd0
Add collection view layout and attributes files
Dec 28, 2018
4b373a1
Add collection view cell
Jan 2, 2019
8453800
Make cell property public
Jan 2, 2019
b61216d
Add guard statement to animation method
Jan 2, 2019
9dacfc9
Update documentation
Jan 2, 2019
b98e7d9
Update attributes access level
Jan 2, 2019
688272e
Reorder properties in the cell
Jan 2, 2019
2c9297a
Improve guard statements usage
Jan 3, 2019
dd4cf6d
Remove unused variable
Jan 3, 2019
f5744b1
Remove guard statement from cell file
Jan 3, 2019
74364eb
Merge pull request #2 from netguru/task/CRAI-365
anyashka Jan 3, 2019
1e6fd65
Rename project to CarLensCollectionViewLayout
Jan 3, 2019
6a70cb7
Remove an author and date from the documentation
Jan 3, 2019
bbcbfaf
Merge pull request #3 from netguru/task/CRAI-361
anyashka Jan 3, 2019
2f92b23
Add license
Jan 3, 2019
45dcb78
Create podspec
Jan 3, 2019
99bc2de
Update company name in LICENSE.md
Jan 4, 2019
b5f3fe3
Add cocoapods step to bitrise
Jan 4, 2019
c977636
Rename scheme
Jan 4, 2019
f116359
Add --alow-warnings flag to pods step in bitrise.yml
Jan 4, 2019
ef7c001
Merge pull request #4 from netguru/task/CRAI-356
Jan 4, 2019
75c7dc5
Update README.md for public repository
Jan 4, 2019
8e9d462
Add initial demo project
Jan 8, 2019
77c5681
Add initial implementation to the demo
Jan 8, 2019
49e414e
Update UI of the cell
Jan 8, 2019
8f5d71a
Update demo project structure
Jan 8, 2019
8b3ed10
Update bitrise.yml for demo build
Jan 8, 2019
372be9b
Add identifier variable for a cell
Jan 8, 2019
4c610ca
Merge pull request #6 from netguru/task/CRAI-358
anyashka Jan 9, 2019
f6a8f7e
Remove viewDidAppear method implementation
Jan 9, 2019
180ad55
Fix a demo project target name
Jan 9, 2019
4a29bf4
Merge pull request #7 from netguru/task/CRAI-358
anyashka Jan 9, 2019
537e7bb
Merge branch 'develop' into task/CRAI-363
Jan 9, 2019
1e7cb17
Update README.md Usage section
Jan 9, 2019
6bad93a
Add Carthage step to README.md
Jan 9, 2019
ea3e12c
Merge pull request #5 from netguru/task/CRAI-363
anyashka Jan 9, 2019
75be655
Update Podspec due to repo name change
Jan 9, 2019
f5e432c
Remove PR template
Jan 9, 2019
d36413d
Update access level order
Jan 9, 2019
a04f488
Merge pull request #8 from netguru/task/CRAI-366
anyashka Jan 9, 2019
19c9e66
Remove author's name from the documentation
Jan 10, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
.DS_Store
.Trashes
.localized

build
.build
xcuserdata
DerivedData

*.mode1v3
*.mode2v3
*.perspectivev3
*.pbxuser
*.xccheckout
*.xcuserstate
*.xcscmblueprint
*.moved-aside
*.hmap
*.o
*.hmap
*.ipa
*.dSYM.zip

timeline.xctimeline
playground.xcworkspace

.idea
*.iml

Pods
Carthage
Packages

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output

.env
18 changes: 18 additions & 0 deletions CarLensCollectionViewLayout.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Pod::Spec.new do |s|

s.name = "CarLensCollectionViewLayout"
s.version = "1.0.0"
s.summary = "An easy to use Collection View Layout for card-like animation."

s.homepage = "https://github.com/netguru/CarLensCollectionViewLayout"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.authors = { "Anna-Mariia Shkarlinska" => "anna-mariia.shkarlinska@netguru.co",
"Michał Kwiecień" => "michal.kwiecien@netguru.co" }

s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/netguru/CarLensCollectionViewLayout.git", :tag => "#{s.version}" }
s.source_files = "CarLensCollectionViewLayout/**/*.swift"
s.swift_version = "4.2"
s.framework = "UIKit"

end
Loading