Skip to content

Instantly share code, notes, and snippets.

View alexcoplan's full-sized avatar

Alex Coplan alexcoplan

  • Arm
  • Cambridge, UK
View GitHub Profile
@alexcoplan
alexcoplan / app.rb
Created July 6, 2012 13:35
Templating with Sculpt.
require 'sinatra'
require 'sculpt'
require 'sass'
t = template_doc do |includes, content|
head do
render includes
css "main.css"
title "Sculpt"
end
@alexcoplan
alexcoplan / to_proc.rb
Created June 29, 2012 17:47
String#to_proc in Ruby
# String#to_proc
# this can be used to evaluate a string to a proc.
class String
def to_proc
eval "Proc.new do\n#{self}\nend"
end
end
# demo