This file contains hidden or 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
+ builtin cd customization_server | |
+ local result=0 | |
+ __rvm_project_rvmrc | |
+ local working_dir | |
+ [[ -n /Users/randomcamel/.rvm/scripts ]] | |
+ source /Users/randomcamel/.rvm/scripts/initialize | |
++ [[ -n 3.2.48(1)-release ]] | |
++ shopt -s extglob | |
++ export rvm_path=/Users/randomcamel/.rvm | |
++ rvm_path=/Users/randomcamel/.rvm |
This file contains hidden or 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
shopt -u cdable_vars | |
shopt -s cdspell | |
shopt -u checkhash | |
shopt -s checkwinsize | |
shopt -s cmdhist | |
shopt -u compat31 | |
shopt -u dotglob | |
shopt -u execfail | |
shopt -s expand_aliases | |
shopt -u extdebug |
This file contains hidden or 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
Sinatra 1.2.6 doesn't appear to properly handle multiple values for a form parameter. 'params[:my_param_name]' | |
only returns the last one supplied. I've verified that Chrome is sending the full list, and the list appears in | |
the rack.request.query_string variable (but not the rack.request.params variable). | |
get '/lame' do | |
erb :lame | |
end | |
post '/lame' do | |
puts params.inspect |
This file contains hidden or 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
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'bunny' | |
# Chris Doherty, confused by Bunny::Queue#subscribe semantics. | |
# run with `ruby bunny_test.rb load` followed by `ruby bunny_test.rb consume`. | |
class BunnyTest |
This file contains hidden or 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 'ruote' # 2.3.0.2 | |
require 'ruote/storage/fs_storage' | |
def get_storage | |
Ruote::FsStorage.new("ruote_issue_work") | |
end | |
class MyParticipant < Ruote::Participant |
This file contains hidden or 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
[2013-05-05T23:37:03+00:00] INFO: Processing service[carbon-cache] action enable (graphite::carbon line 68) | |
[2013-05-05T23:37:03+00:00] INFO: Processing service[carbon-cache] action start (graphite::carbon line 68) | |
================================================================================ | |
Error executing action `start` on resource 'service[carbon-cache]' | |
================================================================================ |
This file contains hidden or 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
# Chris Doherty, [email protected] | |
require "celluloid" | |
require "celluloid/autostart" | |
class Cell | |
include Celluloid | |
include Celluloid::Notifications | |
attr_reader :count |
This file contains hidden or 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
--- | |
timestamp: 2014-11-07 01:14:47.029690000 Z | |
kitchen_version: 1.2.1 | |
instances: | |
chef-client-test-centos-65: | |
state_file: | |
hostname: 127.0.0.1 | |
last_action: create | |
port: '2222' | |
ssh_key: /Users/cdoherty/.vagrant.d/insecure_private_key |
This file contains hidden or 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
PS C:\Users\Chris Doherty\chef> bundle exec chef-client -z -r 'recipe[dsc-test]' | |
DL is deprecated, please use Fiddle | |
[2014-12-15T20:08:26-08:00] WARN: No config file found or specified on command line, using command line options. | |
Starting Chef Client, version 12.1.0.dev.0 | |
resolving cookbooks for run list: ["dsc-test"] | |
Synchronizing Cookbooks: | |
- dsc-test | |
Compiling Cookbooks... | |
Converging 1 resources | |
Recipe: dsc-test::default |
This file contains hidden or 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
find_executable: checking for pg_config... -------------------- yes | |
-------------------- | |
find_header: checking for libpq-fe.h... -------------------- yes | |
"gcc -o conftest -I/opt/chef/embedded/include/ruby-2.1.0/x86_64-linux -I/opt/chef/embedded/include/ruby-2.1.0/ruby/backward -I/opt/chef/embedded/include/ruby-2.1.0 -I. -I/usr/include/postgresql -I/opt/chef/embedded/include -O3 -g -pipe -I/opt/chef/embedded/include -I/opt/chef/embedded/include -O3 -g -pipe -fPIC conftest.c -L. -L/opt/chef/embedded/lib -Wl,-R/opt/chef/embedded/lib -L/usr/lib -Wl,-R/usr/lib -L/opt/chef/embedded/lib -Wl,-R/opt/chef/embedded/lib -L. -Wl,-rpath,/opt/chef/embedded/lib -fstack-protector -L/opt/chef/embedded/lib -rdynamic -Wl,-export-dynamic -L/opt/chef/embedded/lib -Wl,-R/opt/chef/embedded/lib -Wl,-R -Wl,/opt/chef/embedded/lib -L/opt/chef/embedded/lib -lruby -lpthread -lrt -ldl -lcrypt -lm -lc" | |
checked program was: | |
/* begin */ | |
1: #include "ruby.h" |
OlderNewer