# File lib/choices/rails.rb, line 4
  def self.included(base)
    base.class_eval do
      def initialize_with_choices(*args, &block)
        initialize_without_choices(*args, &block)
        @choices = Hashie::Mash.new
      end
      
      alias :initialize_without_choices :initialize
      alias :initialize :initialize_with_choices
    end
  end