Skip to content

Instantly share code, notes, and snippets.

View bravoecho's full-sized avatar

Luca bravoecho

  • UK
  • 03:30 (UTC +01:00)
View GitHub Profile
@bravoecho
bravoecho / chef_solo_bootstrap.sh
Created April 14, 2012 09:59 — forked from ryanb/chef_solo_bootstrap.sh
Bootstrap Chef Solo
#!/usr/bin/env bash
apt-get -y update
apt-get -y install build-essential zlib1g-dev libssl-dev libreadline6-dev libyaml-dev
cd /tmp
rm ruby-1.9.3-p125.tar.gz
rm -r ruby-1.9.3-p125
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p125.tar.gz
tar -xvzf ruby-1.9.3-p125.tar.gz
cd ruby-1.9.3-p125/
./configure --prefix=/usr/local
@bravoecho
bravoecho / active_model_lint.rb
Created March 6, 2012 11:17 — forked from mikegehard/active_model_lint.rb
RSpec shared examples for ActiveModel::Lint
# adapted from rspec-rails http://github.com/rspec/rspec-rails/blob/master/spec/rspec/rails/mocks/mock_model_spec.rb
# put this in a file in your spec/support directory, or add the code to the spec_helper.rb
# USAGE:
#
# context "ActiveModel Lint" do
# it_behaves_like "an ActiveModel", YourModel.new
# end
shared_examples "an ActiveModel" do |model|
require 'test/unit/assertions'
@bravoecho
bravoecho / dependency_injection_example.rb
Created November 20, 2011 15:57 — forked from mperham/gist:1379464
Flexibility with and without Dependency Injection
require 'minitest/autorun'
class TaxCodeBase
class AbstractMethod < StandardError
end
attr_accessor :user_id
def initialize(user_id=nil)
self.user_id = user_id