Skip to content

Commit

Permalink
version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Finn-Lennart Heemeyer committed Nov 18, 2014
1 parent 74c26bc commit 9489caa
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.DS_STORE
bower_components/
32 changes: 32 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "ICanHaz.load",
"main": "ICanHaz.load.js",
"version": "0.1.0",
"homepage": "https://github.com/tonekk/ICanHaz.load",
"description": "Little extension for loading views with ICanHaz.js. Requires jQuery",
"moduleType": [
"globals"
],
"keywords": [
"mustache",
"icanhazjs"
],
"authors": [
"tonekk"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"icanhazjs": "~0.10.3",
"jquery": "~2.1.1"
},
"devDependencies": {
"jasmine": "~1.3.1"
}
}
11 changes: 5 additions & 6 deletions test/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,16 @@
<html>
<head>

<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jasmine/1.3.1/jasmine.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jasmine/1.3.1/jasmine-html.js"></script>
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/jasmine/1.3.1/jasmine.css" />
<script type="text/javascript" src="../bower_components/jasmine/lib/jasmine-core/jasmine.js"></script>
<script type="text/javascript" src="../bower_components/jasmine/lib/jasmine-core/jasmine-html.js"></script>
<link rel="stylesheet" type="text/css" href="../bower_components/jasmine/lib/jasmine-core/jasmine.css" />

<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/ICanHaz.js/0.10.3/ICanHaz.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="../bower_components/icanhazjs/ICanHaz.min.js"></script>
<script type="text/javascript" src="../bower_components/jquery/dist/jquery.min.js"></script>

<script type="text/javascript" src="../ICanHaz.load.js"></script>

<script type="text/javascript">

/*
* Test suite
*/
Expand Down

0 comments on commit 9489caa

Please sign in to comment.