Skip to content

Instantly share code, notes, and snippets.

View calebhaye's full-sized avatar

Caleb Adam Haye calebhaye

View GitHub Profile
@calebhaye
calebhaye / extract_fixtures.rake
Created January 8, 2013 07:01
Create YAML test fixtures from data in an existing database.
desc 'Create YAML test fixtures from data in an existing database.
Defaults to development database. Set RAILS_ENV to override.'
task :extract_fixtures => :environment do
sql = "SELECT * FROM %s"
skip_tables = ["schema_info"]
ActiveRecord::Base.establish_connection
(ActiveRecord::Base.connection.tables - skip_tables).each do |table_name|
i = "000"
File.open("#{Rails.root}/test/fixtures/#{table_name}.yml", 'w') do |file|
@calebhaye
calebhaye / pdf_helper.rb
Created October 24, 2012 17:23
Generating PDFs with wicked_pdf
module PdfHelper
require 'wicked_pdf'
def self.included(base)
base.class_eval do
alias_method_chain :render, :wicked_pdf
end
end
def render_with_wicked_pdf(options = nil, *args, &block)
@calebhaye
calebhaye / gist:3726057
Created September 15, 2012 02:09
Sample Textile
h2{color:green}. This is a title
h3. This is a subhead
p{color:red}. This is some text of dubious character. Isn't the use of "quotes" just lazy writing -- and theft of 'intellectual property' besides? I think the time has come to see a block quote.
bq[fr]. This is a block quote. I'll admit it's not the most exciting block quote ever devised.
Simple list:
@calebhaye
calebhaye / .gems
Created April 21, 2012 07:13 — forked from rmanalan/.gems
Static websites using Heroku
rack-contrib
rack-rewrite