Skip to content

Instantly share code, notes, and snippets.

View Sutto's full-sized avatar

Darcy Laycock Sutto

View GitHub Profile
@Sutto
Sutto / gist:621632
Created October 12, 2010 03:45 — forked from sj26/gist:621629
require 'active_support/all'
class Blah
def foo
'foo!'
end
end
module Things
def self.included(base)
#
# Based upon the NCSA server configuration files originally by Rob McCool.
#
# This is the main Apache server configuration file. It contains the
# configuration directives that give the server its instructions.
# See http://httpd.apache.org/docs/2.2/ for detailed information about
# the directives.
#
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
if ENV['MY_RUBY_HOME'] && ENV['MY_RUBY_HOME'].include?('rvm')
begin
rvm_path = File.dirname(File.dirname(ENV['MY_RUBY_HOME']))
rvm_lib_path = File.join(rvm_path, 'lib')
$LOAD_PATH.unshift rvm_lib_path
require 'rvm'
RVM.use_from_path! File.dirname(File.dirname(__FILE__))
raise "Gem Path: #{Gem.path.inspect}"
rescue LoadError
# RVM is unavailable at this point.
@Sutto
Sutto / gist:549577
Created August 25, 2010 14:10 — forked from tyx/gist:549520
if ENV['MY_RUBY_HOME'] && ENV['MY_RUBY_HOME'].include?('rvm')
begin
rvm_path = File.dirname(File.dirname(ENV['MY_RUBY_HOME']))
rvm_lib_path = File.join(rvm_path, 'lib')
$LOAD_PATH.unshift rvm_lib_path
require 'rvm'
RVM.use_from_path! File.expand_path(File.dirname(File.dirname(__FILE__)))
rescue LoadError
# RVM is unavailable at this point.
raise "RVM ruby lib is currently unavailable."
#!/usr/bin/env sh
source ~/.rvm/scripts/rvm
! command -v ruby >/dev/null 2>&1 || command -v ruby | grep -v rvm >/dev/null
echo "Result = $?"
echo "<pre>"
echo "rvm_path = '$rvm_path'"
echo "$rvm_environments_path"
echo "---"
rvm alias list
echo "--"
#!/usr/bin/env bash
source "$HOME/.rvm/scripts/rvm"
if command -v __rvm_load_rvmrc >/dev/null; then
__rvm_load_rvmrc
fi
exec ruby "$@"
set :default_environment, {
'PATH' => '/home/joey/.rvm/gems/ree-1.8.7-2010.02@vk/bin:/home/joey/.rvm/gems/ree-1.8.7-2010.02@global/bin:/home/joey/.rvm/rubies/ree-1.8.7-2010.02/bin:/home/joey/.rvm/bin:$PATH',
'RUBY_VERSION' => 'ree-1.8.7-2010.02',
'GEM_HOME' => '/home/joey/.rvm/gems/ree-1.8.7-2010.02@vk',
'GEM_PATH' => '/home/joey/.rvm/gems/ree-1.8.7-2010.02@vk:/home/joey/.rvm/gems/ree-1.8.7-2010.0@global',
'BUNDLE_PATH' => '/home/joey/.rvm/gems/ree-1.8.7-2010.02@vk' # If you are using bundler.
}
#!/usr/bin/env zsh
if [[ -s "${TM_PROJECT_DIRECTORY}/.rvmrc" ]]
then
source "${TM_PROJECT_DIRECTORY}/.rvmrc"
fi
exec ruby "$@"
@Sutto
Sutto / app.rb
Created October 25, 2009 02:30 — forked from zacheryph/app.rb
require 'sinatra/base'
class Bacon < Sinatra::Base
enable :logging, :clean_trace
get '/' do
'Hello from Sinatra!'
end
end
@Sutto
Sutto / checker.erb
Created October 15, 2009 11:30 — forked from ocean/checker.erb
<h1>Feeds Checker</h1>
<%
require 'hpricot'
require 'open-uri'
f1 = open("http://www.commerce.wa.gov.au/feeds/feed1.xml")
feed = Hpricot.XML(f1)