-
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
9 changed files
with
321 additions
and
125 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,18 @@ | ||
lib-cov | ||
*.seed | ||
*.log | ||
*.csv | ||
*.dat | ||
*.out | ||
*.pid | ||
*.gz | ||
# v1.3.10 December 10, 2013 | ||
# https://github.com/bevry/base | ||
|
||
pids | ||
logs | ||
results | ||
# Temp Files | ||
**/*.log | ||
**/.docpad.db | ||
|
||
node_modules | ||
npm-debug.log | ||
# Build Files | ||
build/ | ||
components/ | ||
bower_components/ | ||
node_modules/ | ||
out/ | ||
|
||
test/out/ | ||
out/ | ||
# ===================================== | ||
# CUSTOM MODIFICATIONS | ||
|
||
# None |
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,32 @@ | ||
# v1.3.10 December 10, 2013 | ||
# https://github.com/bevry/base | ||
|
||
# Temp Files | ||
**/*.log | ||
**/.docpad.db | ||
|
||
# Build Files | ||
build/ | ||
components/ | ||
bower_components/ | ||
node_modules/ | ||
|
||
# Development Files | ||
.travis* | ||
Makefile | ||
Cakefile | ||
History.md | ||
Makefile | ||
BACKERS.md | ||
CONTRIBUTING.md | ||
HISTORY.md | ||
**/src/ | ||
**/test/ | ||
|
||
# Other Package Definitions | ||
template.js | ||
component.json | ||
bower.json | ||
|
||
# ===================================== | ||
# CUSTOM MODIFICATIONS | ||
|
||
src/ | ||
out/*.tester.* | ||
out/*.test.* | ||
out/test/ | ||
test/ | ||
# None |
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,15 +1,18 @@ | ||
# v1.3.2 October 26, 2013 | ||
# v1.3.14 February 6, 2014 | ||
# https://github.com/bevry/base | ||
language: node_js | ||
install: "npm install; npm install docpad; cd ./node_modules/docpad; npm install; cd ../.." | ||
install: "npm install; ./node_modules/.bin/cake install" | ||
before_script: "./node_modules/.bin/cake compile" | ||
script: "npm test" | ||
node_js: | ||
- "0.8" | ||
- "0.10" | ||
cache: | ||
directories: | ||
- node_modules | ||
notifications: | ||
irc: | ||
- "irc.freenode.org#bevry-dev" | ||
email: | ||
recipients: | ||
- [email protected] | ||
- [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,81 @@ | ||
<!-- | ||
v1.3.10 December 10, 2013 | ||
https://github.com/bevry/base | ||
--> | ||
|
||
|
||
# Contribute | ||
|
||
|
||
## Resources | ||
|
||
- [Coding Standards](http://bevry.me/bevry/coding-standards) | ||
- [Documentation Guidelines](http://bevry.me/bevry/documentation-guidelines) | ||
- [Support Guidelines](http://bevry.me/bevry/support-guidelines) | ||
|
||
|
||
## Development | ||
|
||
For developers and contributors | ||
|
||
1. Fork project and clone your fork | ||
|
||
2. Install global dependencies | ||
|
||
``` bash | ||
npm install -g coffee-script | ||
``` | ||
|
||
3. Install local dependencies | ||
|
||
``` bash | ||
cake install | ||
``` | ||
|
||
4. Compile project | ||
|
||
``` bash | ||
# Only once | ||
cake compile | ||
|
||
# On every change | ||
cake watch | ||
``` | ||
|
||
5. Run tests | ||
|
||
``` bash | ||
cake test | ||
``` | ||
|
||
|
||
## Publishing | ||
|
||
For project maintainers | ||
|
||
1. Update meta files with latest information | ||
|
||
``` bash | ||
cake prepublish | ||
``` | ||
|
||
2. Add a changelog entry to `HISTORY.md` with change information | ||
|
||
``` | ||
v2.0.0 April 17, 2013 | ||
- Something that changes | ||
``` | ||
|
||
3. Update `version` entry in `package.json` with new version number | ||
|
||
4. Commit changes | ||
|
||
``` bash | ||
git commit -a -m "A message about what changed" | ||
``` | ||
|
||
5. Publish new version | ||
|
||
``` bash | ||
cake publish | ||
``` |
Oops, something went wrong.