I am trying to create a Active Record tableless Model. My user.rb looks like this
class User < ActiveRecord::Base class_inheritable_accessor :columns
Don't inherit your class from ActiveRecord::Base. If a model inherits from ActiveRecord::Base as you would expect a model class to,it wants to have a database back-end.
ActiveRecord::Base