This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Tester < ActiveRecord::Base | |
include AASM | |
aasm_initial_state :inactive | |
aasm_state :inactive | |
aasm_state :active, | |
:after_enter => :after_active_state | |
aasm_event :activate do | |
transitions :to => :active, | |
:from => [:inactive], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sample ReportOutputter & child class (FileOutputter) | |
class ReportOutputter | |
attr_accessort :report_generator | |
def initialize(report_generator) | |
@report_generator = report_generator | |
end | |
def write | |
print_all_students |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem 'oauth' | |
require 'oauth/consumer' | |
@consumer = OAuth::Consumer.new("your api key", "your oauth consumer secret", :site => "http://www.ohloh.net") | |
@request_token = @consumer.get_request_token |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function parse_git_branch { | |
ref=$(git symbolic-ref HEAD 2> /dev/null) || return | |
echo "("${ref#refs/heads/}")" | |
} | |
RED="\[\033[0;31m\]" | |
YELLOW="\[\033[0;33m\]" | |
GREEN="\[\033[0;32m\]" | |
PS1="$GREEN \w$YELLOW \$(parse_git_branch)\$ " |
NewerOlder