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
Record findRemote:[NSString stringWithFormat:@"%@/%@/%@/%@", | |
projectId, @"stages", stageId, @"tasks", nil]]; |
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
[someTextField performSelectorOnMainThread:@selector(setText:) | |
withObject:[deployment log] | |
waitUntilDone:YES]; | |
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
load 'deploy' if respond_to?(:namespace) # cap2 differentiator | |
set :application, "host.name" | |
set :domain, "host.name" | |
set :repository, "[email protected]:user/jekyll-blog.git" | |
set :use_sudo, false | |
set :deploy_to, "/var/www/#{application}" | |
ssh_options[:forward_agent] = true | |
default_run_options[:pty] = true | |
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 RunLater::Cleanup | |
def initialize(app) | |
@app = app | |
end | |
def call(env) | |
@app.call(env) | |
ensure | |
RunLater::Worker.cleanup | |
end |
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 Capistrano | |
class Configuration | |
module Extensions | |
module Execution | |
def transaction(&blk) | |
super do | |
self.rollback_requests = [] unless transaction? | |
blk.call | |
end | |
end |
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 Speech | |
def self.included(base) | |
base.send :include, Speech::Support | |
end | |
end | |
module Speech::Support | |
def self.included(base) | |
base.extend(ClassMethods) | |
end |
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 CouchFoo | |
module NamedScope | |
def self.included(base) | |
base.class_eval do | |
extend ClassMethods | |
named_scope :scoped, lambda { |scope| scope } | |
end | |
end | |
module ClassMethods |
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 'monitor' | |
class ConnectionPool | |
class Connection | |
end | |
def initialize | |
@mutex = Monitor.new | |
@condition = @mutex.new_cond | |
@pool = {} |
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 'thread' | |
class ConnectionPool | |
class Connection | |
end | |
def initialize | |
@mutex = Mutex.new | |
@pool = {} |
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' | |
ActiveRecord::Base.configurations = {'sqlite3' => {:adapter => 'sqlite3', :database => ':memory:'}} | |
ActiveRecord::Base.establish_connection('sqlite3') | |
ActiveRecord::Base.logger = Logger.new(STDERR) | |
ActiveRecord::Base.logger.level = Logger::DEBUG | |
ActiveRecord::Schema.define(:version => 0) do |