ember-faker
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -8,2 +8,11 @@ 'use strict'; | ||
included: function included(app) { | ||
this._super.included.apply(this, arguments); | ||
// Fixes an issue if references as *dependency* in package.json, not as | ||
// *devDependency*. | ||
// See: https://github.com/ember-cli/ember-cli/issues/5747 | ||
if (typeof app.import !== 'function' && app.app) { | ||
app = app.app; | ||
} | ||
this.app = app; | ||
@@ -10,0 +19,0 @@ var addonConfig = this.app.project.config(app.env)['ember-faker']; |
{ | ||
"name": "ember-faker", | ||
"description": "Include fake data in your app for testing or prototyping.", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"directories": { | ||
@@ -6,0 +6,0 @@ "doc": "doc", |
@@ -7,5 +7,11 @@ # Ember Faker | ||
## Installation | ||
## Installation for ember-cli >= 0.2.3 | ||
```javascript | ||
```bash | ||
ember install ember-faker | ||
``` | ||
#### ember-cli 0.1.5 - 0.2.2 | ||
```bash | ||
ember install:addon ember-faker | ||
@@ -12,0 +18,0 @@ ``` |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14701
197
104