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

Commit

Permalink
Merge pull request #9 from netguru/develop
Browse files Browse the repository at this point in the history
Release 1.0.0
  • Loading branch information
anyashka authored Jan 10, 2019
2 parents 7914e26 + 19c9e66 commit d6cc7b0
Show file tree
Hide file tree
Showing 22 changed files with 1,457 additions and 1 deletion.
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" => "[email protected]",
"Michał Kwiecień" => "[email protected]" }

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

0 comments on commit d6cc7b0

Please sign in to comment.