Skip to content

Commit

Permalink
Add jasmine as dev dependency for bower.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Mauro committed Nov 16, 2013
1 parent 3e74c96 commit 3a15724
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,5 +1,5 @@
*.DS_Store
*.scssc
test/jasmine-1.3.1
bower_components/
test/keypress.js
test/tests.js
13 changes: 8 additions & 5 deletions bower.json
@@ -1,6 +1,9 @@
{
"name" : "Keypress",
"version" : "1.0.8",
"main" : "keypress-1.0.8.min.js",
"description" : "a robust keyboard input capturing Javascript utility focused on input for games. For details and documentation, please visit http://dmauro.github.io/Keypress/"
}
"name" : "Keypress",
"version" : "1.0.8",
"main" : "keypress-1.0.8.min.js",
"description" : "a robust keyboard input capturing Javascript utility focused on input for games. For details and documentation, please visit http://dmauro.github.io/Keypress/",
"devDependencies" : {
"jasmine" : "1.3.0"
}
}
6 changes: 3 additions & 3 deletions test/run_tests.html
Expand Up @@ -3,9 +3,9 @@
<head>
<title>Keypress Jasmine tests</title>

<link rel="stylesheet" type="text/css" href="./jasmine-1.3.1/jasmine.css">
<script src="./jasmine-1.3.1/jasmine.js"></script>
<script src="./jasmine-1.3.1/jasmine-html.js"></script>
<link rel="stylesheet" type="text/css" href="../bower_components/jasmine/lib/jasmine-core/jasmine.css">
<script src="../bower_components/jasmine/lib/jasmine-core/jasmine.js"></script>
<script src="../bower_components/jasmine/lib/jasmine-core/jasmine-html.js"></script>

<!-- include source files here... -->
<script src="./keypress.js"></script>
Expand Down

0 comments on commit 3a15724

Please sign in to comment.