Skip to content

Commit 7e47fe4

Browse files
committed
Merge pull request #1 from ericdrowell/master
Actualisation
2 parents 4536f3c + a53a260 commit 7e47fe4

File tree

207 files changed

+45383
-22614
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+45383
-22614
lines changed

.gitignore

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,51 @@
1+
dist
2+
documentation
3+
analysis
4+
node_modules
5+
bower_components
6+
phantomjs.exe
7+
docs
8+
jsdoc-template
9+
test/sandbox.html
10+
11+
# Numerous always-ignore extensions
12+
*.diff
13+
*.err
14+
*.orig
15+
*.log
16+
*.rej
17+
*.swo
18+
*.swp
19+
*.vi
20+
*~
21+
*.sass-cache
22+
23+
# OS or Editor folders
24+
.DS_Store
25+
Thumbs.db
26+
.cache
127
.project
2-
jsdoc-toolkit
28+
.settings
29+
.tmproj
30+
*.esproj
31+
nbproject
32+
*.sublime-project
33+
*.sublime-workspace
34+
*.md.html
35+
36+
# Dreamweaver added files
37+
_notes
38+
dwsync.xml
39+
40+
# Komodo
41+
*.komodoproject
42+
.komodotools
43+
44+
# Folders to ignore
45+
.hg
46+
.svn
47+
.CVS
48+
intermediate
49+
publish
50+
.idea
51+

.jshintrc

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"curly": true,
3+
"immed": true,
4+
"latedef": true,
5+
"newcap": true,
6+
"noarg": true,
7+
"sub": true,
8+
"undef": true,
9+
"boss": true,
10+
"eqnull": true,
11+
"node": true,
12+
"latedef": true,
13+
"quotmark": "single",
14+
"unused": true,
15+
"trailing" : true,
16+
"laxbreak" : true,
17+
"globals": {
18+
"Kinetic": false,
19+
"document": false,
20+
"window" : false,
21+
"navigator" : false,
22+
"define" : false,
23+
"Image" : false,
24+
"assert" : false,
25+
"test": false,
26+
"addStage" : false
27+
}
28+
}

.npmignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
dist
2+
doc-includes
3+
jsdoc-master
4+
src
5+
docs
6+
test
7+
.travis.yml
8+
Gruntfile.js
9+
bower-template.json
10+
bower.json
11+
presentation-schedule.md
12+
*.sublime-project
13+
*.sublime-workspace

.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
language: node_js
2+
node_js:
3+
- '0.11'
4+
branches:
5+
only:
6+
- master
7+
before_script:
8+
- npm install
9+
script:
10+
- grunt test
11+
deploy:
12+
provider: npm
13+
email: lavrton@gmail.com
14+
api_key:
15+
secure: rYqyBhn3K8tnt/XK6RFodBiIsIqwmUuPBEAOQxRt/elK4F7BVC+ba7/xgsvdFLP+Bqn4sS8b/YjfxUqm0lfxoph3qvvyKZ+qjuGCXBtvbY8EgGqX3FJKq/LJp8Vu4encCUOpI3PWXQEB+0OrC8ntKnBn1L1WP6lzDbRHj49e9ew=
16+
on:
17+
tags: true
18+
repo: ericdrowell/KineticJS

Gemfile

Lines changed: 0 additions & 5 deletions
This file was deleted.

Gemfile.lock

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)