Skip to content
This repository was archived by the owner on Oct 18, 2022. It is now read-only.

Commit d6cc7b0

Browse files
authored
Merge pull request #9 from netguru/develop
Release 1.0.0
2 parents 7914e26 + 19c9e66 commit d6cc7b0

22 files changed

+1457
-1
lines changed

.gitignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
.DS_Store
2+
.Trashes
3+
.localized
4+
5+
build
6+
.build
7+
xcuserdata
8+
DerivedData
9+
10+
*.mode1v3
11+
*.mode2v3
12+
*.perspectivev3
13+
*.pbxuser
14+
*.xccheckout
15+
*.xcuserstate
16+
*.xcscmblueprint
17+
*.moved-aside
18+
*.hmap
19+
*.o
20+
*.hmap
21+
*.ipa
22+
*.dSYM.zip
23+
24+
timeline.xctimeline
25+
playground.xcworkspace
26+
27+
.idea
28+
*.iml
29+
30+
Pods
31+
Carthage
32+
Packages
33+
34+
fastlane/report.xml
35+
fastlane/Preview.html
36+
fastlane/screenshots
37+
fastlane/test_output
38+
39+
.env

CarLensCollectionViewLayout.podspec

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Pod::Spec.new do |s|
2+
3+
s.name = "CarLensCollectionViewLayout"
4+
s.version = "1.0.0"
5+
s.summary = "An easy to use Collection View Layout for card-like animation."
6+
7+
s.homepage = "https://github.com/netguru/CarLensCollectionViewLayout"
8+
s.license = { :type => "MIT", :file => "LICENSE.md" }
9+
s.authors = { "Anna-Mariia Shkarlinska" => "[email protected]",
10+
"Michał Kwiecień" => "[email protected]" }
11+
12+
s.platform = :ios, "9.0"
13+
s.source = { :git => "https://github.com/netguru/CarLensCollectionViewLayout.git", :tag => "#{s.version}" }
14+
s.source_files = "CarLensCollectionViewLayout/**/*.swift"
15+
s.swift_version = "4.2"
16+
s.framework = "UIKit"
17+
18+
end

0 commit comments

Comments
 (0)