Learning Ember has been a challenging experience for me. The guide I am using seems to be lacking important information that I need.
I keep encountering two specific errors:
Uncaught Error: Ember.State has been moved into a plugin: https://github.com/emberjs/ember-states
and,
Uncaught ReferenceError: DS is not defined
The structure of my scripts is as follows:
<script src="js/libs/jquery-1.10.2.js"></script>
<script src="js/libs/handlebars-1.1.2.js"></script>
<script src="js/libs/ember-1.3.0.js"></script>
<script src="js/libs/ember-data.js"></script>
<script src="js/libs/ember-states.js"></script>
<script src="js/app.js"></script>
The errors occur depending on whether I comment out `ember-data.js` or `ember-states.js`.
No matter what, I always end up with an error. Why is this happening?