Skip to content

Commit

Permalink
初始化
Browse files Browse the repository at this point in the history
  • Loading branch information
lmf12 committed Apr 6, 2019
1 parent 76822fd commit 9278548
Show file tree
Hide file tree
Showing 17 changed files with 936 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .gitignore
@@ -0,0 +1,63 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control

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

# Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode

iOSInjectionProject/
8 changes: 8 additions & 0 deletions Podfile
@@ -0,0 +1,8 @@
platform :ios, '9.0'

target 'SimpleCam' do

pod 'GPUImage'
pod 'Masonry'

end
20 changes: 20 additions & 0 deletions Podfile.lock
@@ -0,0 +1,20 @@
PODS:
- GPUImage (0.1.7)
- Masonry (1.1.0)

DEPENDENCIES:
- GPUImage
- Masonry

SPEC REPOS:
https://github.com/cocoapods/specs.git:
- GPUImage
- Masonry

SPEC CHECKSUMS:
GPUImage: 733a5f0fab92df9de1c37ba9df520a833ccb406d
Masonry: 678fab65091a9290e40e2832a55e7ab731aad201

PODFILE CHECKSUM: a152d7286ee13cd62ebdea4827438329da4153af

COCOAPODS: 1.5.3

0 comments on commit 9278548

Please sign in to comment.