mirror of
https://github.com/ViViDboarder/sublime-abuse-the-force.git
synced 2024-11-21 20:36:31 +00:00
Initial Commit
This commit is contained in:
commit
7009ed1c7a
7
ForceDotCom/AbuseTheForce.sublime-build
Normal file
7
ForceDotCom/AbuseTheForce.sublime-build
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"cmd": ["abusetheforce deploy file \"${file}\""],
|
||||
"shell": true,
|
||||
"working_dir": "${project_path:${folder}}",
|
||||
"path": "${path}",
|
||||
"selector": ["source.cls","source.trigger","source.page","source.component"]
|
||||
}
|
7
ForceDotCom/HTML.sublime-settings
Normal file
7
ForceDotCom/HTML.sublime-settings
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"extensions":
|
||||
[
|
||||
"page",
|
||||
"component"
|
||||
]
|
||||
}
|
7
ForceDotCom/Java.sublime-settings
Normal file
7
ForceDotCom/Java.sublime-settings
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"extensions":
|
||||
[
|
||||
"cls",
|
||||
"trigger"
|
||||
]
|
||||
}
|
6
ForceDotCom/XML.sublime-settings
Normal file
6
ForceDotCom/XML.sublime-settings
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"extensions":
|
||||
[
|
||||
"object"
|
||||
]
|
||||
}
|
19
README.md
Normal file
19
README.md
Normal file
@ -0,0 +1,19 @@
|
||||
Sublime Abuse the Force
|
||||
===================
|
||||
Plugin for "compiling" Salesforce.com code with [Abuse the Force](http://github.com/ViViDboarder/abuse-the-force)
|
||||
|
||||
Works with Sublime Text 2 only
|
||||
|
||||
Installation
|
||||
------------
|
||||
* Install [Abuse the Force](http://github.com/ViViDboarder/abuse-the-force)
|
||||
* Clone this repo
|
||||
* Navigate to this directory
|
||||
* Run install.sh
|
||||
|
||||
Here it is in terminal:
|
||||
|
||||
git clone http://github.com/ViViDboarder/sublime-abuse-the-force
|
||||
cd sublime-abuse-the-force
|
||||
./install.sh
|
||||
|
12
install.sh
Executable file
12
install.sh
Executable file
@ -0,0 +1,12 @@
|
||||
#! /bin/bash
|
||||
|
||||
SUBLIME_DIR=~/Library/Application\ Support/Sublime\ Text\ 2/Packages/
|
||||
|
||||
mkdir -p "$SUBLIME_DIR"
|
||||
|
||||
cp -r "./ForceDotCom" "$SUBLIME_DIR/"
|
||||
|
||||
cat ./ForceDotCom/AbuseTheForce.sublime-build | sed "s#"'${path}'"#$PATH#" > "$SUBLIME_DIR/ForceDotCom/AbuseTheForce.sublime-build"
|
||||
|
||||
echo "SFDC Sublime Plugin install finished"
|
||||
|
Loading…
Reference in New Issue
Block a user