Skip to content

Commit ce8b990

Browse files
committed
initial commit
1 parent f4741c3 commit ce8b990

File tree

12 files changed

+243
-17
lines changed

12 files changed

+243
-17
lines changed

.ember-cli

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55

66
Setting `disableAnalytics` to true will prevent any data from being sent.
77
*/
8-
"disableAnalytics": false
8+
"disableAnalytics": false,
9+
"usePods": true
910
}

app/components/.gitkeep

Whitespace-only changes.

app/controllers/.gitkeep

Whitespace-only changes.

app/pods/application/route.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import Route from '@ember/routing/route';
2+
3+
export default Route.extend({
4+
});

app/pods/application/template.hbs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Hello World!
2+
{{outlet}}

app/routes/.gitkeep

Whitespace-only changes.

app/templates/application.hbs

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

app/templates/components/.gitkeep

Whitespace-only changes.

config/environment.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
module.exports = function(environment) {
44
let ENV = {
55
modulePrefix: 'codingblocks-online',
6+
podModulePrefix: 'codingblocks-online/pods',
67
environment,
78
rootURL: '/',
89
locationType: 'auto',

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"test": "ember test"
1818
},
1919
"devDependencies": {
20+
"@ember-decorators/babel-transforms": "^0.1.1",
2021
"broccoli-asset-rev": "^2.4.5",
2122
"ember-ajax": "^3.0.0",
2223
"ember-cli": "~2.18.1",
@@ -32,9 +33,12 @@
3233
"ember-cli-sri": "^2.1.0",
3334
"ember-cli-uglify": "^2.0.0",
3435
"ember-data": "~2.18.0",
36+
"ember-decorators": "^1.3.4",
3537
"ember-export-application-global": "^2.0.0",
3638
"ember-load-initializers": "^1.0.0",
3739
"ember-resolver": "^4.0.0",
40+
"ember-simple-auth": "^1.4.2",
41+
"ember-simple-auth-token": "^3.0.0",
3842
"ember-source": "~2.18.0",
3943
"ember-welcome-page": "^3.0.0",
4044
"eslint-plugin-ember": "^5.0.0",
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { moduleFor, test } from 'ember-qunit';
2+
3+
moduleFor('route:application', 'Unit | Route | application', {
4+
// Specify the other units that are required for this test.
5+
// needs: ['controller:foo']
6+
});
7+
8+
test('it exists', function(assert) {
9+
let route = this.subject();
10+
assert.ok(route);
11+
});

0 commit comments

Comments
 (0)