Ember.required()

requiredprivate Defined in packages/ember-metal/lib/mixin.js:650 Denotes a required property for a mixin

ApplicationInstance.BootOptions#location

locationstringpublic Defined in packages/ember-application/lib/system/application-instance.js:451 If present, overrides the router's location property with this value. This is useful for environments where trying to modify the URL would be inappropriate. Default: null

DS.RecordArray

DS.RecordArray Class Extends: Ember.ArrayProxy Uses: Ember.Evented Defined in: addon/-private/system/record-arrays/record-array.js:12 Module: ember-data A record array is an array that contains records of a certain type. The record array materializes records as needed when they are retrieved for the first time. You should not create record arrays yourself. Instead, an instance of DS.RecordArray or its subclasses will be returned by your application's store in response to queries.

DS.Model#didDelete event

didDelete Defined in addon/-private/system/model/model.js:451 Fired when the record is deleted.

InstrumentationSupport#instrumentDisplay

instrumentDisplayStringpublic Defined in packages/ember-views/lib/mixins/instrumentation_support.js:14 Used to identify this view during debugging

Map#clear()

clearprivate Defined in packages/ember-metal/lib/map.js:392

Map.create()

createprivatestatic Defined in packages/ember-metal/lib/map.js:253

Setting Up Tests

Setting Up Tests To demonstrate the basic setup and processing of an Ember application, this section will walk through building an Ember application for a property rental site called Super Rentals. It will start with a homepage, an about page and a contact page. Here's a look at the desired application before we get started. Let's think through what we want to do on the home page of our Super Rentals application. We want our application to: List available rentals. Link to information about t

Ember.deprecate()

deprecate (message, test, options) public Defined in packages/ember-debug/lib/deprecate.js:97 Display a deprecation warning with the provided message and a stack trace (Chrome and Firefox only). In a production build, this method is defined as an empty function (NOP). Uses of this method in Ember itself are stripped from the ember.prod.js build. Parameters: message String A description of the deprecation. test Boolean A boolean. If falsy, the deprecation will be displayed. option

DS.Snapshot#serialize()

serialize (options) Object Defined in addon/-private/system/snapshot.js:350 Parameters: options Object Returns: Object an object whose values are primitive JSON values only