# for more details see: emberjs.com/guides/models/defining-models/
class <%= application_name.camelize %>.<%= class_name %> extends DS.Model <% attributes.each do |attribute| -%>
<%= attribute[:name].camelize(:lower) %>: <%= if %w(references belongs_to).member?(attribute[:type]) "DS.belongsTo '%s'" % attribute[:name].camelize(:lower) else "DS.attr '%s'" % attribute[:type] end %>
<% end -%>