Skip to content

Instantly share code, notes, and snippets.

@TigerWolf
TigerWolf / Using Git SVN.sh
Last active November 10, 2016 03:24
Using git-svn
# Initial Checkout/Clone
git svn clone https://svn.yourdomain.com --stdlayout destination_folder_name
# stdlayout is used if your SVN follows the standard
# layout /trunk /branches /tags and will add the branches and tags as git branches.
# Do some dev work
git add .
git commit -m "commit message"
git stash # Stash uncommitted files
git svn fetch # Get new SVN changes
# Ability Class
class AdminAbility
include CanCan::Ability
def initialize(user)
if user && user.admin?
can :access, :rails_admin
can :manage, :all
end
class PerformanceWorker
include Wisper
def perform
publish(:start_download, self)
PerformanceDownloader.new(url, attributes)
publish(:finish_download, self)
Transaction.start
publish(:import_start, self)
PerformancePurger.new(dbtable)

Rails Models

Generating models

$ rails g model User

Associations

belongs_to

has_one

@TigerWolf
TigerWolf / e24payment.php
Created October 9, 2012 11:48
adding debug statement
<?php
/*
* e24PaymentPipe
*
*
* e24payment-php is an implementation in PHP of E24PaymentPipe
* java classes. It allows to connect to online credit card payment
* from http://www.aciworldwide.com/.
*