Skip to content

Instantly share code, notes, and snippets.

View JoeWoodward's full-sized avatar

Joe Woodward JoeWoodward

View GitHub Profile
.page-header
%h1 Website Introduction
.row
- unless collection
.span12
%p
You have not created any text for this section yet, please click
initialise to add text.
.well
= link_to 'Initialise', new_resource_path, :class => 'btn large primary'
#controller
def activate
if @user = User.load_from_activation_token(params[:activation_token])
@user.inactive = true
@user.activate!
login(@user.email, @user.password)
else
redirect_to login_path, :alert => 'Account has been activated already, please login'
.inner
.alert-message.warning
Your account has now been activated! Be sure to set your password below.
= simple_form_for [:admin, @user] do |f|
%fieldset
.clearfix
.input
= f.input :email
.clearfix
.input
class StaticPagesController < ApplicationController
def info
@favorite_links = Link.where(:favourite => true)
@links = Link.where(:favourite => false)
render 'info'
end
def contact
if request.subdomain.present?
@section = User.where(:role_ids == Role.find_by_name(request.subdomain).id)
- for section in @sections
.contact-section
- if section.present?
- section.each do |user|
.contact-card
.photo
= image_tag user.avatar
.contact-details
%h3= "#{user.title} #{user.full_name}"
.contact-email
HarleyHealthVip::Application.routes.draw do
resources :faqs
resources :notices, :only => [:index, :show]
# events routes
get 'events' => 'events#index', :as => 'events'
get 'events/:id' => 'events#show', :as => 'event'
HarleyHealthVip::Application.routes.draw do
get 'faqs' => 'faqs#index', :as => 'faqs'
resources :notices, :only => [:index, :show]
# events routes
get 'events' => 'events#index', :as => 'events'
get 'events/:id' => 'events#show', :as => 'event'
Processing by Chargify::HooksController#dispatch_handler as XML
Parameters: {"payload"=>{"chargify"=>"testing"}, "event"=>"test"}
Completed 500 Internal Server Error in 2ms
NameError (uninitialized constant Chargify::HooksController::MD5):
app/controllers/chargify/hooks_controller.rb:74:in `verify'
@JoeWoodward
JoeWoodward / aliased-git-completion
Created March 22, 2012 11:38
Git auto-complete script for wrapping aliases. Insert into .bash_profile below anything git related
# wrap_alias takes three arguments:
# $1: The name of the alias
# $2: The command used in the alias
# $3: The arguments in the alias all in one string
# Generate a wrapper completion function (completer) for an alias
# based on the command and the given arguments, if there is a
# completer for the command, and set the wrapper as the completer for
# the alias.
function wrap_alias() {
[[ "$#" == 3 ]] || return 1
@JoeWoodward
JoeWoodward / jQuery.slickSlider.js
Created September 26, 2012 08:09
jQuery.slickSlider.js files including markup and styles
$.fn.initSlickSlider = function(options){
var goToMargin;
// #TODO modulate slide function for fade only!
// set default options
var settings = jQuery.extend({
transitionDuration: 300, fade: true
}, options);