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 'active_support' | |
# Define resources here | |
class Email < ActiveResourceBase | |
self.site = 'http://localhost:3000' | |
end | |
# Actual participant | |
class RailsParticipant | |
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
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 |
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
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 |
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
# | |
# 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 | |
# |
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 'blather' |
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
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'); |
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
# 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 ) |
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 'activerecord' | |
$:.unshift('lib') | |
require 'state_machine' | |
ActiveRecord::Base.establish_connection({ | |
:adapter => 'mysql', | |
:database => 'test', | |
:username => 'root' |
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
# 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? |
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 '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 ] |