I hereby claim:
- I am afair on github.
- I am allenfair (https://keybase.io/allenfair) on keybase.
- I have a public key whose fingerprint is F00B 3ED2 5CE8 F9AF 3D4A 55D9 1651 1D53 10AE 1388
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
################################################################################ | |
# Notes from: Straight Up RSpec 3 - a neat Ruby BDD Tool | |
#------------------------------------------------------------------------------- | |
# From: http://www.slideshare.net/gsterndale/straight-up-rspec-3 | |
# By: Greg Sterndale | |
################################################################################ | |
# .rspec | |
# lib/… | |
# spec/spec_helper.rb |
module MyModule | |
def module_method | |
end | |
end | |
class RubyRef < BaseClass | |
include MyModule | |
attr_reader :a | |
attr_writer :b | |
attr_accessor :c |
#!/bin/sh | |
gem install nokogiri -- \ | |
--use-system-libraries \ | |
--with-xml2-lib=/usr/local/lib \ | |
--with-xml2-include=/usr/local/include/libxml2/libxml \ | |
--with-xslt-lib=/usr/local/lib \ | |
--with-xslt-include=/usr/local/include/libxslt \ | |
--with-iconv-lib=/usr/local/lib \ | |
--with-iconv-include=/usr/local/include |
#!/bin/sh | |
brew tap homebrew/dupes | |
brew install zlib | |
brew tap homebrew/php | |
brew install php53 --with-pgsql | |
# Troubleshooting... | |
#% php -v ~/src/guacamole | |
#dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.54.dylib |
require 'spec_helper' | |
describe Widget do | |
# Setup, Exercise, Verify, Teardown! | |
describe '#instance_method' do | |
subject { buid_stubbed(:widget) } | |
it 'works' do | |
expect(subject.name).to be_nil |
drop table if exists data cascade; | |
create table data ( | |
id uuid not null default uuid_generate_v4(), | |
month integer not null, | |
data json not null); | |
drop table if exists data_201501; | |
create table data_201501 ( | |
check ( month = 201501 ) | |
) inherits (data); |
allen@dev2 % uname -a ~ | |
FreeBSD dev2.xxx.com 8.4-RELEASE-p9 FreeBSD 8.4-RELEASE-p9 #13 r265131: Wed Apr 30 02:18:42 EDT 2014 [email protected]:/usr/obj/usr/src/sys/DEVEL4 amd64 | |
allen@dev2 % ruby -v ~ | |
ruby 2.2.3p173 (2015-08-18 revision 51636) [x86_64-freebsd8.4] | |
allen@dev2 [1] % passenger-install-apache2-module ~ | |
Welcome to the Phusion Passenger Apache 2 module installer, v5.0.16. | |
This installer will guide you through the entire installation process. It |
allen@dev2 % passenger-install-apache2-module ~ | |
Welcome to the Phusion Passenger Apache 2 module installer, v5.0.8. | |
This installer will guide you through the entire installation process. It | |
shouldn't take more than 3 minutes in total. | |
Here's what you can expect from the installation process: | |
1. The Apache 2 module will be installed for you. | |
2. You'll learn how to configure Apache. |