Skip to content

Instantly share code, notes, and snippets.

View kevinrutherford's full-sized avatar

Kevin Rutherford kevinrutherford

View GitHub Profile
import deepFreeze from 'deep-freeze'
import configureStore from '../app/store/'
export const reduce = (actions) => {
const store = configureStore()
actions.forEach(action => store.dispatch(action))
return store.getState()
}
export const reductio = (reducer, actions) => {
@kevinrutherford
kevinrutherford / bundle-bisect.sh
Created March 6, 2015 06:51
Sometimes I need to figure out which gem update broke my build.
#! /bin/sh
#
GEMFILE=Gemfile.lock
[ $# -lt 1 ] && { echo "Usage: $0 cmd" >&2; return 1; }
[ -r $GEMFILE ] || { echo "Cannot find $GEMFILE" >&2; return 1; }
cmd="$@"
@kevinrutherford
kevinrutherford / Checkout.java
Created February 9, 2015 19:31
The checkout kata after 5 stages of connascence removal
public class Checkout {
private Money balance = Money.ZERO;
private MultibuyDiscount discount;
public Checkout(MultibuyDiscount discount) {
this.discount = discount.reset();
}
public Checkout scan(String sku, Money price) {
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
public class OsheroveTests {
private Calculator calculator;
@Before
public void setUp() throws Exception {
@kevinrutherford
kevinrutherford / CalculatorFactory.java
Created December 23, 2014 15:27
Parts of a string calculator
package ocpCalc;
import java.util.HashMap;
import java.util.Map;
public class CalculatorFactory {
public Calculator create() {
BinaryInfixParser arithmeticParser = new BinaryInfixParser(operators());
Parser parser = new EmptyStringParser(arithmeticParser);
@kevinrutherford
kevinrutherford / AdjustQualityBy.java
Created December 15, 2014 08:52
Gilded rose solution
public class AdjustQualityBy implements Adjuster {
private int adjustment;
public AdjustQualityBy(int adjustment) {
this.adjustment = adjustment;
}
public void adjust(Item item) {
item.setQuality(item.getQuality() + adjustment);
if (item.getSellIn() < 0)
Pair = Struct.new(:head, :tail)
Either = Struct.new(:val)
class Left < Either
def value(pair, hylo)
pair.head
end
end
import static org.junit.Assert.*;
import org.junit.Test;
public class OcpPotterTester {
private double price(int... books) {
Basket basket = new BasketFactory().create();
return basket.bestPrice(books);
}
import static org.junit.Assert.*;
import org.junit.Test;
public class PotterTester {
private double price(int... books) {
return 0.0;
}
@Test
@kevinrutherford
kevinrutherford / event_bus_spec.rb
Last active December 17, 2015 16:28
How can I remove the duplicated Then clauses in these specs?
context 'EventBus methods cascade' do
context 'clear' do
When(:result) { EventBus.clear }
Then { result.should == EventBus }
end
context 'publish' do
When(:result) { EventBus.publish('aa123bb', {}) }
Then { result.should == EventBus }