-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
1,825 additions
and
4,822 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.externalToolBuilders | ||
.project | ||
.settings | ||
build.properties | ||
salesforce.schema | ||
Referenced Packages | ||
/uninstall | ||
/uninstallsrc | ||
/installdeploy | ||
/installedPackages | ||
src/quickActions/LogACall.quickAction | ||
src/quickActions/NewNote.quickAction | ||
src/quickActions/NewTask.quickAction |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<project default="deploy" basedir="." xmlns:sf="antlib:com.salesforce"> | ||
<!-- Load the package requirements from version.properties --> | ||
<loadproperties srcFile="${basedir}/version.properties"/> | ||
|
||
<!-- Load environment variables --> | ||
<property environment="env" /> | ||
|
||
<!-- Check if the CUMULUSCI_PATH environment variable is set --> | ||
<fail> | ||
<condition> | ||
<not><isset property="env.CUMULUSCI_PATH" /></not> | ||
</condition> | ||
CUMULUSCI_PATH is Required! | ||
|
||
This project uses the CumulusCI build scripts which must be checked out and | ||
referenced in an environment variable before you can run the build scripts. | ||
|
||
To configure the build scripts, do the following: | ||
|
||
1. Clone the CumulusCI GitHub repository to a local folder: | ||
https://github.com/SalesforceFoundation/CumulusCI | ||
|
||
2. Set the CUMULUSCI_PATH environment variable to the path to CumulusCI | ||
|
||
If you are on a unix based system, the following commands should work: | ||
|
||
git clone https://github.com/SalesforceFoundation/CumulusCI ~/CumulusCI | ||
export CUMULUSCI_PATH=~/CumulusCI | ||
</fail> | ||
|
||
<!-- Load CumulusCI build targets --> | ||
<import file="${env.CUMULUSCI_PATH}/build/build.xml" /> | ||
|
||
<!-- Add project specific build targets and CumulusCI overrides here --> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
cumulusci.package.name=Recurring Donations | ||
cumulusci.package.namespace=npe03 | ||
cumulusci.package.apiVersion=29.0 | ||
cumulusci.package.installClass= | ||
cumulusci.package.uninstallClass= | ||
cumulusci.github.url.raw=https://raw.github.com/SalesforceFoundation/Recurring_Donations |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<apiVersion>27.0</apiVersion> | ||
<apiVersion>29.0</apiVersion> | ||
<status>Active</status> | ||
</ApexClass> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<apiVersion>23.0</apiVersion> | ||
<apiVersion>29.0</apiVersion> | ||
<status>Active</status> | ||
</ApexClass> |
Oops, something went wrong.