require 'active_support' module Forcast module Model module Meta extend ActiveSupport::Concern included do end def initialize() @name = attributes[:name] @email = attributes[:email] end end end end