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
require("rubygems") | |
require("sinatra") | |
get("/") { | |
"Hello, Sinatra, from Fancy!" | |
} | |
Sinatra Application run!() |
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
require 'sinatra' | |
require 'coffee-script' | |
require 'slim' | |
require 'sass' | |
enable :sessions | |
helpers do | |
def verbs(&block) | |
verbs.each(&block) if block |
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
#!/usr/bin/env ruby | |
# Print the complexity over time for a Ruby method in a | |
# git repository. | |
# | |
# Requires: >= bash ?.? | |
# >= git 1.7.1 | |
# >= ruby 1.9.2 | |
# >= flog 2.5.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
#!/usr/bin/env ruby | |
$:.unshift(File.expand_path(File.join(File.dirname(__FILE__), "..", "lib"))) | |
require 'eventmachine' | |
require 'thin' | |
require 'favicon_service' | |
require 'favicon_service/app' | |
EventMachine.run do | |
grabber = EM.spawn {|url| | |
# Do some stuff with url |
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
>> "1" =~ /(?<a>\d)/ && a | |
NameError: undefined local variable or method `a' for main:Object | |
from (irb):5 | |
from /Users/lee/.rvm/rubies/ruby-1.9.2-p180/bin/irb:16:in `<main>' | |
>> /(?<a>\d)/ =~ "1" && a | |
=> "1" |
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
rvm install ruby-head-n18 --branch ruby_1_8 | |
rvm alias ruby-head-n18 1.8.8 |
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
$ uname -a && git --version | |
Darwin asha.local 10.6.0 Darwin Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386 i386 | |
git version 1.7.2.1 | |
$ git clone git://github.com/github/gitignore.git | |
$ cd gitignore | |
$ # fetching over ssh | |
$ yes | head -5 | (while read ; do time git fetch [email protected]:github/gitignore.git; done) 2>&1 | grep real | |
real 0m2.103s |
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
#define STRING char * | |
#define IF if( | |
#define THEN ){ | |
#define ELSE } else { | |
#define FI ;} | |
#define WHILE while ( | |
#define DO ){ | |
#define OD ;} | |
#define INT int | |
#define BEGIN { |
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
module ClassHook | |
extend_object Class | |
def new(sclass = Object, *args) | |
super(sclass.to_class, *args) | |
end | |
end | |
module ModuleHook | |
append_features Module |
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
# Add all gems in the global gemset to the $LOAD_PATH so they can be used in rails3 console with bundler | |
if defined?(::Bundler) | |
$LOAD_PATH.concat Dir.glob("#{ENV['rvm_path']}/gems/#{ENV['rvm_ruby_string']}@global/gems/*/lib") | |
end |