-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Roll 4.1.0 from develop to master # Conflicts: # box.json # framework/Application.cfc
- Loading branch information
Showing
95 changed files
with
813 additions
and
1,940 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 |
---|---|---|
@@ -1,18 +1,12 @@ | ||
WEB-INF/* | ||
litepost/* | ||
mxunit/* | ||
wirebox/* | ||
tests/ci/results | ||
tests/ci/results/* | ||
testbox/* | ||
tests/results/ | ||
.project | ||
settings.xml | ||
.settings/org.eclipse.core.resources.prefs | ||
# Intellij IDEA files | ||
*.iml | ||
*.ipr | ||
*.idea | ||
.ant-targets-build.xml | ||
run-tests.sh | ||
/examples/6helloclojure/target/stale/extract-native.dependencies | ||
/taskmanager/ | ||
/server.json |
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
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,32 +1,66 @@ | ||
{ | ||
"name" : "Framework One", | ||
"slug" : "fw1", | ||
"version" : "4.0.0", | ||
"author" : "Sean Corfield, Marcin Szczepanski, Ryan Cogswell", | ||
"location" : "https://github.com/framework-one/fw1/archive/v4.0.0.zip", | ||
"createPackageDirectory" : true, | ||
"packageDirectory" : "framework", | ||
"Homepage" : "http://framework-one.github.io/", | ||
"Documentation" : "http://framework-one.github.io/documentation/", | ||
"Repository" : { | ||
"type" : "git", "URL" : "https://github.com/framework-one/fw1.git" | ||
}, | ||
"Bugs" : "https://github.com/framework-one/fw1/issues", | ||
"shortDescription" : "FW/1 - Framework One - is a family of small, lightweight, convention-over-configuration frameworks, primarily for CFML.", | ||
"description" : "FW/1 - Framework One - is a family of small, lightweight, convention-over-configuration frameworks, primarily for CFML. FW/1 itself provides MVC, DI/1 provides dependency injection (a.k.a. inversion of control), and AOP/1 provides aspect-oriented programming features on top of DI/1.", | ||
"instructions" : "http://framework-one.github.io/documentation/", | ||
"changelog" : "https://github.com/framework-one/fw1/commits/master", | ||
"type" : "mvc", | ||
"keywords" : [ "fw1", "framework one", "mvc", "conventions" ], | ||
"private" : "false", | ||
"engines" : [ | ||
{ "type" : "railo", "version" : ">=4.1.x" }, | ||
{ "type" : "lucee", "version" : ">=4.5.x" }, | ||
{ "type" : "adobe", "version" : ">=10.0.x" } | ||
"name":"Framework One", | ||
"slug":"fw1", | ||
"version":"4.1.0", | ||
"author":"Sean Corfield, Marcin Szczepanski, Ryan Cogswell", | ||
"location":"https://github.com/framework-one/fw1/archive/v4.1.0.zip", | ||
"createPackageDirectory":true, | ||
"packageDirectory":"framework", | ||
"Homepage":"http://framework-one.github.io/", | ||
"Documentation":"http://framework-one.github.io/documentation/", | ||
"Repository":{ | ||
"type":"git", | ||
"URL":"https://github.com/framework-one/fw1.git" | ||
}, | ||
"Bugs":"https://github.com/framework-one/fw1/issues", | ||
"shortDescription":"FW/1 - Framework One - is a family of small, lightweight, convention-over-configuration frameworks, primarily for CFML.", | ||
"description":"FW/1 - Framework One - is a family of small, lightweight, convention-over-configuration frameworks, primarily for CFML. FW/1 itself provides MVC, DI/1 provides dependency injection (a.k.a. inversion of control), and AOP/1 provides aspect-oriented programming features on top of DI/1.", | ||
"instructions":"http://framework-one.github.io/documentation/", | ||
"changelog":"https://github.com/framework-one/fw1/commits/master", | ||
"type":"mvc", | ||
"keywords":[ | ||
"fw1", | ||
"framework one", | ||
"mvc", | ||
"conventions" | ||
], | ||
"License" : [ | ||
{ "type" : "Apache 2.0", "URL" : "http://www.apache.org/licenses/LICENSE-2.0" } | ||
"private":"false", | ||
"engines":[ | ||
{ | ||
"type":"railo", | ||
"version":">=4.1.x" | ||
}, | ||
{ | ||
"type":"lucee", | ||
"version":">=4.5.x" | ||
}, | ||
{ | ||
"type":"adobe", | ||
"version":">=10.0.x" | ||
} | ||
], | ||
"Contributors" : [ {"name": "Contributors List", "url": "https://github.com/framework-one/fw1/graphs/contributors"} ], | ||
"ignore" : [ ] | ||
"License":[ | ||
{ | ||
"type":"Apache 2.0", | ||
"URL":"http://www.apache.org/licenses/LICENSE-2.0" | ||
} | ||
], | ||
"Contributors":[ | ||
{ | ||
"name":"Contributors List", | ||
"url":"https://github.com/framework-one/fw1/graphs/contributors" | ||
} | ||
], | ||
"ignore":[ | ||
|
||
], | ||
"devDependencies":{ | ||
"testbox":"^2.3.0+00044" | ||
}, | ||
"installPaths":{ | ||
"testbox":"testbox" | ||
}, | ||
"testbox":{ | ||
"runner":"http://localhost:8500/tests/runner.cfm" | ||
} | ||
} |
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
Oops, something went wrong.