-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade Ember CLI to v1.13.10; has dummy app run errors
- Loading branch information
1 parent
26127a0
commit a190e1e
Showing
13 changed files
with
63 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"ignore_dirs": ["tmp"] | ||
"ignore_dirs": ["tmp", "dist"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"name": "ember-cli-jsdoc", | ||
"dependencies": { | ||
"ember": "1.13.7", | ||
"ember-cli-shims": "ember-cli/ember-cli-shims#0.0.3", | ||
"ember-cli-test-loader": "ember-cli-test-loader#0.1.3", | ||
"ember-load-initializers": "ember-cli/ember-load-initializers#0.1.5", | ||
"ember-qunit": "0.4.9", | ||
"ember-qunit-notifications": "0.0.7", | ||
"ember": "1.13.10", | ||
"ember-cli-shims": "ember-cli/ember-cli-shims#0.0.6", | ||
"ember-cli-test-loader": "ember-cli-test-loader#0.2.1", | ||
"ember-load-initializers": "ember-cli/ember-load-initializers#0.1.7", | ||
"ember-qunit": "0.4.16", | ||
"ember-qunit-notifications": "0.1.0", | ||
"ember-resolver": "0.1.18", | ||
"jquery": "1.11.3", | ||
"loader.js": "ember-cli/loader.js#3.2.1", | ||
"qunit": "1.18.0" | ||
"qunit": "1.20.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/*jshint node:true*/ | ||
module.exports = { | ||
scenarios: [ | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/*jshint node:true*/ | ||
'use strict'; | ||
|
||
module.exports = function(/* environment, appConfig */) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,24 +26,24 @@ | |
"author": "Jeremy Brown <[email protected]> (http://www.notmessenger.com/)", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"broccoli-asset-rev": "2.1.2", | ||
"ember-cli": "1.13.8", | ||
"ember-cli-app-version": "0.5.0", | ||
"ember-cli-dependency-checker": "1.0.1", | ||
"ember-cli-htmlbars": "0.7.9", | ||
"ember-cli-htmlbars-inline-precompile": "0.2.0", | ||
"broccoli-asset-rev": "2.2.0", | ||
"ember-cli": "1.13.10", | ||
"ember-cli-app-version": "1.0.0", | ||
"ember-cli-dependency-checker": "1.1.0", | ||
"ember-cli-htmlbars": "1.0.1", | ||
"ember-cli-htmlbars-inline-precompile": "0.3.1", | ||
"ember-cli-ic-ajax": "0.2.1", | ||
"ember-cli-inject-live-reload": "1.3.1", | ||
"ember-cli-qunit": "1.0.0", | ||
"ember-cli-qunit": "1.0.4", | ||
"ember-cli-uglify": "1.2.0", | ||
"ember-disable-prototype-extensions": "1.0.0", | ||
"ember-disable-proxy-controllers": "1.0.0", | ||
"ember-export-application-global": "1.0.3", | ||
"ember-disable-proxy-controllers": "1.0.1", | ||
"ember-export-application-global": "1.0.4", | ||
"ember-try": "0.0.6" | ||
}, | ||
"dependencies": { | ||
"chalk": "1.0.0", | ||
"ember-cli-babel": "5.1.3", | ||
"ember-cli-babel": "5.1.5", | ||
"jsdoc": "3.4.0", | ||
"jsdoc-plugins": "1.2.2", | ||
"rsvp": "3.0.18" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import Ember from 'ember'; | ||
|
||
export default function destroyApp(application) { | ||
Ember.run(application, 'destroy'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { module } from 'qunit'; | ||
import startApp from '../helpers/start-app'; | ||
import destroyApp from '../helpers/destroy-app'; | ||
|
||
export default function(name, options = {}) { | ||
module(name, { | ||
beforeEach() { | ||
this.application = startApp(); | ||
|
||
if (options.beforeEach) { | ||
options.beforeEach.apply(this, arguments); | ||
} | ||
}, | ||
|
||
afterEach() { | ||
destroyApp(this.application); | ||
|
||
if (options.afterEach) { | ||
options.afterEach.apply(this, arguments); | ||
} | ||
} | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters