Rails 5 beta-1 wasrecently released and one of the notable change was introduction ofApplicationRecord. Up to Rails 4.2, all models inherited from ActiveRecord::Base. But startingfrom Rails 5, all models will inherit from ApplicationRecord. class Post < ApplicationRecordendWhat happened to ActiveRecord::Base ? Well not much changed in reality. Following file will be automatically added tomodels in
