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
#!/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 |
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
# 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' |
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 'minitest/autorun' | |
class TaxCodeBase | |
class AbstractMethod < StandardError | |
end | |
attr_accessor :user_id | |
def initialize(user_id=nil) | |
self.user_id = user_id |
NewerOlder