Skip to content

Instantly share code, notes, and snippets.

View kennethkalmer's full-sized avatar

Kenneth Kalmer kennethkalmer

View GitHub Profile
require 'active_support'
# Define resources here
class Email < ActiveResourceBase
self.site = 'http://localhost:3000'
end
# Actual participant
class RailsParticipant
From 343e4e3955c095faf39f84dd7ddb0b0ea3b4380e Mon Sep 17 00:00:00 2001
From: Kenneth Kalmer <[email protected]>
Date: Tue, 1 Dec 2009 23:21:15 +0200
Subject: [PATCH] Don't halt the inheritence chain
---
lib/couchrest/more/extended_document.rb | 6 ++-
spec/couchrest/more/extended_doc_inherited_spec.rb | 40 ++++++++++++++++++++
2 files changed, 45 insertions(+), 1 deletions(-)
create mode 100644 spec/couchrest/more/extended_doc_inherited_spec.rb
class ModelWithIgnoredColumns < ActiveRecord::Base
class << self
def columns_without_binary_timestamps
columns = columns_with_binary_timestamps
columns.reject { |c| c.name == 'i_hate_you_microsoft' }
end
alias_method_chain :columns, :binary_timestamps
@kennethkalmer
kennethkalmer / gist:242210
Created November 24, 2009 20:58
Simple patron vs em-http-client observation
#
# Patron vs em-http-client
#
# This is not science, it is the same test suite on the same laptop running Ruby 1.9.1 on Leopard
# (ruby 1.9.1p243 (2009-07-16 revision 24175) [i386-darwin9.8.0]).
#
# Some insight into the matter might be found here: http://curl.haxx.se/mail/archive-2008-09/0075.html
#
require 'blather'
var proc_rep = ["define",{"name":"foo"},[["sequence",{},[["participant",{"activity":"Foo","ref":"nada"},[]]]]]];
4 FluoCan.renderFlow( 'fluo', proc_rep, { 'workitems' : ['0_0_0'] } );
5 FluoCan.crop('fluo');
# Pseudo class
class SearchResult < ActiveRecord::Base
has_no_table
class << self
def has_many( klass )
# This is almost definitely wrong, but the idea is here
define_method( klass.name.tableize ) do
klass.for_search_term( self.id )
require 'rubygems'
require 'activerecord'
$:.unshift('lib')
require 'state_machine'
ActiveRecord::Base.establish_connection({
:adapter => 'mysql',
:database => 'test',
:username => 'root'
# Ensure the AMQP connection is started
def start!
return if started?
Thread.main[:ruote_amqp_connection] = Thread.new do
Thread.abort_on_exception = true
AMQP.start { RuoteAMQP.started! }
end
sleep 0.001 until RuoteAMQP.started?
require 'rubygems'
require 'mq'
AMQP.start do
1000.times { |i| MQ.queue('A').publish("A #{i}") }
1000.times { |i| MQ.queue('B').publish("B #{i}") }
amq = MQ.new
amq.queue('A').subscribe do |msg|
p [ Time.now, msg ]