Acts as Configurable

  1. Install the acts_as_configurable plugin
    ./script/plugin install http://svn.nkryptic.com/plugins/acts_as_configurable
  2. Create a database migration with the following contents:
    class ConfigurableSettings < ActiveRecord::Migration
      def self.up
        ConfigurableSetting.create_table
      end
    
      def self.down
        ConfigurableSetting.drop_table
      end
    end
    
  3. Run rake db:migrate.
  4. Add acts_as_configurable to the User model.
    class User < ActiveRecord::Base
    	acts_as_configurable
    end