Skip to content

Commit

Permalink
Update CoffeeScript to 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RobLoach committed Feb 8, 2014
1 parent d49d00b commit 0a2df02
Show file tree
Hide file tree
Showing 8 changed files with 251 additions and 93 deletions.
8 changes: 7 additions & 1 deletion .gitignore
@@ -1,12 +1,18 @@
# v1.3.5 October 31, 2013
# v1.3.10 December 10, 2013
# https://github.com/bevry/base

# Temp Files
**/*.log
**/.docpad.db

# Build Files
build/
components/
bower_components/
node_modules/
out/

# =====================================
# CUSTOM MODIFICATIONS

# None
10 changes: 8 additions & 2 deletions .npmignore
@@ -1,8 +1,9 @@
# v1.3.3 October 26, 2013
# v1.3.10 December 10, 2013
# https://github.com/bevry/base

# Temp Files
**/*.log
**/.docpad.db

# Build Files
build/
Expand All @@ -23,4 +24,9 @@ HISTORY.md
# Other Package Definitions
template.js
component.json
bower.json
bower.json

# =====================================
# CUSTOM MODIFICATIONS

# None
9 changes: 6 additions & 3 deletions .travis.yml
@@ -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"
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:
- travisci@bevry.me
- travisci@bevry.me
54 changes: 49 additions & 5 deletions CONTRIBUTING.md
@@ -1,15 +1,38 @@
<!--
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

1. Fork the project and clone your fork
For developers and contributors

1. Fork project and clone your fork

2. Install global dependencies

``` bash
npm install -g coffee-script
```

3. Compile the project
3. Install local dependencies

``` bash
cake install
```

4. Compile project

``` bash
# Only once
Expand All @@ -19,20 +42,41 @@
cake watch
```

4. Run your tests
5. Run tests

``` bash
cake test
```

5. Prepare the project for publishing

## Publishing

For project maintainers

1. Update meta files with latest information

``` bash
cake prepublish
```

6. Publish the project
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
```

0 comments on commit 0a2df02

Please sign in to comment.