#### Expected behavior vs actual behavior As long as belongs_to relationship is not declared in `include` parameter, it shouldn't be loaded during serialization. Currently it's loaded. #### Steps to reproduce ``` class MembershipSerializer < ActiveModel::Serializer attributes :id, :position belongs_to :organization belongs_to :user end ``` And in controller: ``` respond_with @memberships, meta: meta_data ``` #### Environment ActiveModelSerializers 0.10.0.rc4 ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin15] Rails 4.2.4