-
-
Notifications
You must be signed in to change notification settings - Fork 73
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
84 changed files
with
6,772 additions
and
4,689 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 @@ | ||
{ | ||
"systemErr":"System", | ||
"systemOut":"System", | ||
"adminPassword" : "testbox", | ||
"debuggingEnabled": true, | ||
"debuggingShowDatabase":true, | ||
"debuggingShowException":true, | ||
"debuggingShowGeneral":true, | ||
"ajaxDebugWindowEnabled": false, | ||
"debuggingReportExecutionTimes": false, | ||
"maxCFThreads":100, | ||
"whitespaceManagement":"smart" | ||
} |
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
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,11 +1,13 @@ | ||
/** | ||
* Copyright Since 2005 Ortus Solutions, Corp | ||
* www.ortussolutions.com | ||
************************************************************************************** | ||
*/ | ||
component{ | ||
this.name = "TestBox Development Suite " & hash( getCurrentTemplatePath() ); | ||
this.sessionManagement = true; | ||
* Copyright Since 2005 Ortus Solutions, Corp | ||
* www.ortussolutions.com | ||
************************************************************************************** | ||
*/ | ||
component { | ||
|
||
this.name = "TestBox Development Suite " & hash( getCurrentTemplatePath() ); | ||
this.sessionManagement = true; | ||
// Local mappings | ||
this.mappings[ "/testbox" ] = getDirectoryFromPath( getCurrentTemplatePath() ); | ||
} | ||
|
||
} |
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,6 +1,6 @@ | ||
{ | ||
"name":"TestBox", | ||
"version":"3.2.0", | ||
"version":"4.0.0", | ||
"location":"https://downloads.ortussolutions.com/ortussolutions/testbox/@build.version@/[email protected]@.zip", | ||
"author":"Ortus Solutions <[email protected]>", | ||
"slug":"testbox", | ||
|
@@ -36,13 +36,19 @@ | |
"watchDelay":"250" | ||
}, | ||
"dependencies":{ | ||
"cbstreams":"^1.5.0" | ||
"cbstreams":"^1.5.0", | ||
"mockdatacfc":"^3.3.0+22" | ||
}, | ||
"installPaths":{ | ||
"cbstreams":"system/modules/cbstreams/" | ||
}, | ||
"scripts":{ | ||
"cbstreams":"system/modules/cbstreams/", | ||
"mockdatacfc":"system/modules/mockdatacfc/" | ||
}, | ||
"scripts":{ | ||
"toMaster":"recipe build/toMaster.boxr", | ||
"format":"cfformat run system/**/*.cfc,test-harness/**/*.cfc,tests/specs/**/*.cfc,*.cfc --overwrite", | ||
"format:check":"cfformat run system/**/*.cfc,test-harness/**/*.cfc,tests/specs/**/*.cfc,*.cfc --check" | ||
"format:check":"cfformat run system/**/*.cfc,test-harness/**/*.cfc,tests/specs/**/*.cfc,*.cfc --check", | ||
"start:lucee":"server start [email protected]", | ||
"start:2016":"server start [email protected]", | ||
"start:2018":"server start [email protected]" | ||
} | ||
} |
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,20 @@ | ||
# This recipe signifies a new release of the module by doing merges and bumps accordingly | ||
|
||
# Check out master | ||
!git checkout -f master | ||
!git pull | ||
# Merge development into it | ||
!git merge --no-ff development | ||
# Tag the master repo with the version in box.json | ||
!git tag v`box package show version` | ||
# Push all branches | ||
!git push origin --all | ||
# Push all tags | ||
!git push origin --tags | ||
# Check development again | ||
!git checkout -f development | ||
# Bump to prepare for a new release, do minor, change if needed and don't tag | ||
bump --minor --!tagVersion | ||
# Send it out | ||
!git commit -a -m "version bump" | ||
!git push origin development |
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 was deleted.
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,10 +1,12 @@ | ||
/** | ||
* Copyright Since 2005 TestBox Framework by Luis Majano and Ortus Solutions, Corp | ||
* www.ortussolutions.com | ||
* --- | ||
* This is the base Application.cfc for the TestBox testing suite | ||
* Whenever you are running tests from within TestBox Core | ||
*/ | ||
component{ | ||
* Copyright Since 2005 TestBox Framework by Luis Majano and Ortus Solutions, Corp | ||
* www.ortussolutions.com | ||
* --- | ||
* This is the base Application.cfc for the TestBox testing suite | ||
* Whenever you are running tests from within TestBox Core | ||
*/ | ||
component { | ||
|
||
this.name = "TestBox Testing Suite"; | ||
} | ||
|
||
} |
Oops, something went wrong.