Skip to content

Commit

Permalink
Closes #92
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Brown committed Dec 29, 2014
1 parent c2d8d3a commit 712ff7b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 4
indent_size = 2

[*.js]
indent_style = space
indent_size = 4
indent_size = 2

[*.hbs]
indent_style = space
indent_size = 4
indent_size = 2

[*.css]
indent_style = space
indent_size = 4
indent_size = 2

[*.html]
indent_style = space
indent_size = 4
indent_size = 2

[*.md]
[*.{diff,md}]
trim_trailing_whitespace = false
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

Ember CLI version: **0.1.4**
Ember CLI version: **0.1.5**

NPM package name: **sl-ember-store**

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"handlebars": "~1.3.0",
"jquery": "^1.11.1",
"ember": "1.8.1",
"ember-resolver": "~0.1.10",
"ember-resolver": "~0.1.11",
"loader.js": "stefanpenner/loader.js#1.0.1",
"ember-cli-shims": "stefanpenner/ember-cli-shims#0.0.3",
"ember-cli-test-loader": "rwjblue/ember-cli-test-loader#0.0.4",
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
},
"devDependencies": {
"body-parser": "~1.9.3",
"broccoli-asset-rev": "^1.0.0",
"broccoli-asset-rev": "^2.0.0",
"broccoli-ember-hbs-template-compiler": "^1.6.1",
"broccoli-static-compiler": "~0.2.1",
"connect-restreamer": "^1.0.1",
"ember-cli": "0.1.4",
"ember-cli-dependency-checker": "0.0.6",
"ember-cli": "0.1.5",
"ember-cli-dependency-checker": "0.0.7",
"ember-cli-ic-ajax": "0.1.1",
"ember-cli-inject-live-reload": "^1.3.0",
"ember-cli-pretender": "^0.3.1",
Expand Down
4 changes: 2 additions & 2 deletions tests/dummy/config/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ module.exports = function(environment) {

if (environment === 'development') {
// ENV.APP.LOG_RESOLVER = true;
ENV.APP.LOG_ACTIVE_GENERATION = true;
// ENV.APP.LOG_ACTIVE_GENERATION = true;
// ENV.APP.LOG_TRANSITIONS = true;
// ENV.APP.LOG_TRANSITIONS_INTERNAL = true;
ENV.APP.LOG_VIEW_LOOKUPS = true;
// ENV.APP.LOG_VIEW_LOOKUPS = true;
}

if (environment === 'test') {
Expand Down
10 changes: 5 additions & 5 deletions tests/helpers/start-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ import Router from '../../router';
import config from '../../config/environment';

export default function startApp(attrs) {
var App;
var application;

var attributes = Ember.merge({}, config.APP);
attributes = Ember.merge(attributes, attrs); // use defaults, but you can override;

Ember.run(function() {
App = Application.create(attributes);
App.setupForTesting();
App.injectTestHelpers();
application = Application.create(attributes);
application.setupForTesting();
application.injectTestHelpers();
});

return App;
return application;
}

0 comments on commit 712ff7b

Please sign in to comment.