This file contains 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
#!/bin/bash | |
[[ $1 =~ ([[:alnum:]]+)-([[:alnum:]]+) ]] || exit 1 | |
[[ "$2" = suffix ]] && | |
echo ${BASH_REMATCH[2]} && exit 0 | |
echo ${BASH_REMATCH[1]} && exit 0 |
This file contains 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
_RUBY=ruby-1.9.3 | |
_PROJECT=dia-x | |
export rvm_gem_options="--no-rdoc --no-ri" | |
if [[ -s "${rvm_path:-$HOME/.rvm}/environments/$_RUBY@$_PROJECT" ]] | |
then | |
. "${rvm_path:-$HOME/.rvm}/environments/$_RUBY@$_PROJECT" | |
else | |
rvm --create use "$_RUBY@$_PROJECT" |
This file contains 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
# | |
# responds to requests with Forsyth-Edwards notation in URL with an image: | |
# http://dia-x.info/fen/2S5/1bQKpR2/4s3/2bkpP2/Sr1p2r1/1P1R3B/1B2s3/8 | |
# | |
class FenController < ApplicationController | |
include Magick |
This file contains 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
# coding: utf-8 | |
class ApplicationController < ActionController::Base | |
protect_from_forgery | |
rescue_from Exception, :with => :handle_exceptions | |
private | |
def handle_exceptions(e) | |
case e | |
when CanCan::AccessDenied |
NewerOlder