Skip to content

Commit

Permalink
updated dist and vendor files
Browse files Browse the repository at this point in the history
  • Loading branch information
danielspaniel committed Dec 23, 2014
1 parent 814e8a6 commit 2a90c1b
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 4 deletions.
9 changes: 8 additions & 1 deletion dist/amd/factory-guy.js
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,13 @@ var FactoryGuy = {
Ember.deprecate('DEPRECATION Warning: use FactoryGuy.make instead');
FactoryGuy.make.call(FactoryGuy, arguments)
},
/**
Deprecated in favor of FactoryGuy.makeList
*/
makeList: function () {
Ember.deprecate('DEPRECATION Warning: use FactoryGuy.makeList instead');
FactoryGuy.makeList.call(FactoryGuy, arguments)
},
/**
* Most of the work of making the model from the json fixture is going on here.
* @param modelType
Expand Down Expand Up @@ -908,7 +915,7 @@ var FactoryGuyTestMixin = Em.Mixin.create({
})
```
The model instances
The model instances will be created from the json you have passed in.
@param {String} modelName name of the mode like 'user' for User model type
@param {String} searchParams the parameters that will be queried
Expand Down
9 changes: 8 additions & 1 deletion dist/ember-data-factory-guy.js
Original file line number Diff line number Diff line change
Expand Up @@ -583,6 +583,13 @@ var FactoryGuy = {
Ember.deprecate('DEPRECATION Warning: use FactoryGuy.make instead');
FactoryGuy.make.call(FactoryGuy, arguments)
},
/**
Deprecated in favor of FactoryGuy.makeList
*/
makeList: function () {
Ember.deprecate('DEPRECATION Warning: use FactoryGuy.makeList instead');
FactoryGuy.makeList.call(FactoryGuy, arguments)
},
/**
* Most of the work of making the model from the json fixture is going on here.
* @param modelType
Expand Down Expand Up @@ -903,7 +910,7 @@ var FactoryGuyTestMixin = Em.Mixin.create({
})
```
The model instances
The model instances will be created from the json you have passed in.
@param {String} modelName name of the mode like 'user' for User model type
@param {String} searchParams the parameters that will be queried
Expand Down
Loading

0 comments on commit 2a90c1b

Please sign in to comment.