Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
caseywebdev committed Sep 4, 2012
0 parents commit 11bd439
Show file tree
Hide file tree
Showing 27 changed files with 3,053 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
.DS_Store
/node_modules
19 changes: 19 additions & 0 deletions LICENSE
@@ -0,0 +1,19 @@
Copyright (C) 2012 Casey Foster <casey@caseywebdev.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
35 changes: 35 additions & 0 deletions Makefile
@@ -0,0 +1,35 @@
BIN=node_modules/.bin/
COFFEE=$(BIN)coffee

all: npm-install compile-lib compile-test

npm-install:
npm install

compile-join:
$(COFFEE) -c -j dist/jquery-cwd.js lib

compile-join-w:
$(COFFEE) -cw -j dist/jquery-cwd.js lib

compile-lib:
$(COFFEE) -c -o dist lib

compile-lib-w:
$(COFFEE) -cw -o dist lib

compile-test:
$(COFFEE) -c -j test/test.js test

compile-test-w:
$(COFFEE) -cw -j test/test.js test

dev:
make -j dev-j

dev-j: compile-join-w compile-lib-w compile-test-w

test: all
open test/test.html

.PHONY: test
49 changes: 49 additions & 0 deletions README.md
@@ -0,0 +1,49 @@
jquery-cwd
==========

jQuery plugins by caseyWebDev.

Install
-------

```html
<script src='https://raw.github.com/caseywebdev/jquery-cwd/master/dist/jquery-cwd.js'></script>
```

or download `jquery-cwd.js` and reference your own copy. You'll also need to have [jQuery](https://github.com/jquery/jquery) and [Underscore](https://github.com/documentcloud/underscore) on the page before loading these extensions.

Use
---

TODO

Test
----

```bash
make test
```

Licence
-------

Copyright (C) 2012 Casey Foster <casey@caseywebdev.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

76 changes: 76 additions & 0 deletions dist/backbone-link.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

62 changes: 62 additions & 0 deletions dist/cookie.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 11bd439

Please sign in to comment.