Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Centny/XEP
The Xcode Extend Plug-in
https://github.com/Centny/XEP
Last synced: 3 months ago
JSON representation
The Xcode Extend Plug-in
- Host: GitHub
- URL: https://github.com/Centny/XEP
- Owner: centny
- Created: 2013-04-23T14:14:30.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-10-10T09:27:00.000Z (about 11 years ago)
- Last Synced: 2024-07-20T11:06:16.258Z (4 months ago)
- Language: Objective-C
- Size: 852 KB
- Stars: 40
- Watchers: 8
- Forks: 18
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
The Xcode Extend Plug-in
===
![icon](https://raw.github.com/Centny/XEP/master/XEP/Resources/XEP.png "XEP")###Provided features
- format the source code(it depended by uncrustify tools).
- copy one line to up or down.
- using project configure file to create the comment(only effect to FULLUSERNAME/VERSION configure to the @author and @since).###Install
- install uncrustify:```
ruby -e "$(curl -fsSkL raw.github.com/mxcl/homebrew/go)"
brew install uncrustify
```
- install Plug-in
- download XEP-*.pkg and PrjEnv.cfg
- install the XEP-*.pkg
- copy the `PrjEnv.cfg` to you project home directory and rename to `.PrjEnv.cfg`,then edit it.
- then restart the Xcode
###Uninstall```
cd ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins
rm -rf XEP.xcplugin
brew uninstall uncrustify
```###Configure sample
```
#the file to configure the proejct environment.
#save this file to the project home directory(the directory
# contained *.xcodeproj file) as .PrjEnv.cfg
#you can change the file name and directory by setting in
# XEP->Preferences->Project .cfg file.
####
#specified the @author to the comment.
FULLUSERNAME=Centny
#specified the @since to the commend.
VERSION=1.10
```
*note:if you have any suggestions or bugs,you can email to [email protected]*