gem 'activeadmin', github: "activeadmin/activeadmin"
gem "devise"
rails g active_admin:install
brew install redis
redis-server
$ redis-server
78495:C 18 Mar 13:20:12.711 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
bin/rails g model comment body:text commentable:references{polymorphic}
class CreateComments < ActiveRecord::Migration
def change
create_table :comments do |t|
t.text :body
stripe info should never be saved and sent through rails server
user fills out the form, send the credit card info to stripe server through ajax
stripe server sends a one time token to rails server
generate a migration
class AddStripeFieldsToDb < ActiveRecord::Migration
def change
add_column :pledges, :stripe_txn_id, :string