Skip to content

Commit

Permalink
Migrate with Xcode
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnyyoung committed Aug 11, 2017
1 parent 62e8fa8 commit e4fc52d
Show file tree
Hide file tree
Showing 12 changed files with 562 additions and 208 deletions.
139 changes: 84 additions & 55 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Created by https://www.gitignore.io/api/macos,windows,sublimetext,visualstudiocode,xcode
# Created by https://www.gitignore.io/api/xcode,macos,windows,cocoapods,objective-c,visualstudiocode

### CocoaPods ###
## CocoaPods GitIgnore Template

# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
# - Also handy if you have a lage number of dependant pods
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGONRE THE LOCK FILE
Pods/

### macOS ###
*.DS_Store
Expand All @@ -7,8 +15,10 @@

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
Expand All @@ -17,13 +27,78 @@ Icon
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

### Objective-C ###
# 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 - Refactored to standalone file


# Carthage - Refactored to standalone file

# 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/

### Objective-C Patch ###

### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history

### Windows ###
# Windows thumbnail cache files
Expand All @@ -46,68 +121,22 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk


### SublimeText ###
# cache files for sublime text
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache

# workspace files are user-specific
*.sublime-workspace

# project files should be checked into the repository, unless a significant
# proportion of contributors will probably not be using SublimeText
# *.sublime-project

# sftp configuration file
sftp-config.json

# Package control specific files
Package Control.last-run
Package Control.ca-list
Package Control.ca-bundle
Package Control.system-ca-bundle
Package Control.cache/
Package Control.ca-certs/
bh_unicode_properties.cache

# Sublime-github package stores a github token in this file
# https://packagecontrol.io/packages/sublime-github
GitHub.sublime-settings


### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json


### Xcode ###
# 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

# End of https://www.gitignore.io/api/macos,windows,sublimetext,visualstudiocode,xcode
### Xcode Patch ###
*.xcodeproj/*
!*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata
/*.gcno

# End of https://www.gitignore.io/api/xcode,macos,windows,cocoapods,objective-c,visualstudiocode
13 changes: 0 additions & 13 deletions JRSwizzle.h

This file was deleted.

134 changes: 0 additions & 134 deletions JRSwizzle.m

This file was deleted.

6 changes: 6 additions & 0 deletions Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
platform :osx, '10.10'
inhibit_all_warnings!

target 'WeChatTweak' do
pod 'JRSwizzle'
end
12 changes: 12 additions & 0 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
PODS:
- JRSwizzle (1.0)

DEPENDENCIES:
- JRSwizzle

SPEC CHECKSUMS:
JRSwizzle: dd5ead5d913a0f29e7f558200165849f006bb1e3

PODFILE CHECKSUM: 19c0de41a7724720f663ad47eb3832778049a284

COCOAPODS: 1.3.1
Binary file removed WeChatTweak.dylib
Binary file not shown.
Loading

0 comments on commit e4fc52d

Please sign in to comment.