Skip to content

Instantly share code, notes, and snippets.

View elricstorm's full-sized avatar

Joel Dezenzio elricstorm

View GitHub Profile
ActionController::Routing::Routes.draw do |map|
# | ======== USER and SESSIONS BELOW ======================= |
map.resources :users, :path_prefix => '/administration',
:member => {
:suspend => :put,
:unsuspend => :put,
:force_activate => :put,
:purge => :delete
}
map.logout '/logout', :controller => 'sessions', :action => 'destroy'
<html>
<head>
<title>Activation Successful</title>
</head>
<body>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
<tr valign="top">
<td width="100%">
<span>Your Account Has Been Activated<br/>
<br/></span>
class UserMailer < ApplicationMailer
def signup_notification(user)
setup_email(user)
@subject += 'Please activate your new account.'
@body[:url] = "http://localhost:3000/activate/#{user.activation_code}"
end
def activation(user)
setup_email(user)
class UserObserver < ActiveRecord::Observer
def after_create(user)
user.reload
UserMailer.deliver_signup_notification(user)
end
def after_save(user)
user.reload
UserMailer.deliver_activation(user) if user.recently_activated?
# Be sure to restart your server when you modify this file
# Specifies gem version of Rails to use when vendor/rails is not present
RAILS_GEM_VERSION = '2.3.5' unless defined? RAILS_GEM_VERSION
# Bootstrap the Rails environment, frameworks, and default configuration
require File.join(File.dirname(__FILE__), 'boot')
Rails::Initializer.run do |config|
* {
padding : 0;
margin : 0;
}
body {
color : #000000;
margin : 0;
padding : 0;
background : url('../images/bg.gif') repeat-y;
background-position : center;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" >
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" >
<head>
<meta name="Description" content=""/>
<meta name="KeyWords" content=""/>
<meta http-equiv="X-UA-Compatible" content="IE=8"/>
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>Mailbag</title>
<%= stylesheet_link_tag('mailbag.css') %>
<style type="text/css">
BODY, TD {font-family: verdana,arial,helvetica,sans-serif;font-size: 12px;color: #000000;}
LI {line-height: 120%;}
UL.smallBorder {margin:10px 5px 10px 20px;}
LI.smallBorderLi {margin:0px 0px 5px 0px;}
UL.Narrow {margin:10px 5px 0px 40px;}
HR.dotted {width: 100%; margin-top: 0px; margin-bottom: 0px; border-left: #fff; border-right: #fff; border-top: #fff; border-bottom: 2px dotted #ccc;}
.smallEmphasis {font-family: verdana,arial,helvetica,sans-serif;font-size: 11px;font-weight: bold;color: #000000;}
.refund {font-family: verdana,arial,helvetica,sans-serif;font-size: 10pt;font-weight: bold;color: #000000;}
.serifBig {font-family: serif;font-size: 20px;font-weight: bold;color: #000000;}
mysql:
adapter: mysql
database: cheese_plugin_test
username:
password:
host: localhost
port: 3306
# OLD Routes.rb file - showing changes
#Rails.application.routes.draw do |map|
Rails.application.routes.draw do
mount_at = Cheese::Engine.config.mount_at
match mount_at => 'cheese/widgets#index'
# map.resources :widgets, :only => [ :index, :show ],