Skip to content

Instantly share code, notes, and snippets.

View nicholasjhenry's full-sized avatar

Nicholas Henry nicholasjhenry

View GitHub Profile
# config/routes.rb
resources :documents do
scope module: 'documents' do
resources :versions do
post :restore, on: :member
end
resource :lock
end
end
# MODEL
class Case < ActiveRecord::Base
include Eventable
has_many :tasks
concerning :Assignment do
def assign_to(new_owner:, details:)
transaction do
# Goal: put a non-Rails-aware Ruby library using normal `require`s in
# lib/sim. Have it transparently reloaded between requests like Rails app
# code is.
#
# The code here goes inside of your configure block in
# config/environments/development.rb. There are two parts, commented inline.
# Reload code whenever the simulator changes.
config.watchable_dirs["lib/sim"] = [:rb]
config.watchable_files << "lib/sim.rb"
@nicholasjhenry
nicholasjhenry / original.rb
Last active January 3, 2016 14:29
Refactoring of a Policy example from DAS
# session_controller.rb
class SessionsController
def create
user = log_user_in
AccountStandingPolicy.new(@user).enforce!
end
end
# account_standing_policy.rb
@nicholasjhenry
nicholasjhenry / foo_curry.rb
Last active December 31, 2015 07:39
Make a service class support currying, uh partial application?
module Curryable
def curry(arity=nil)
method(:call).to_proc.curry(arity)
end
end
class Foo
include Curryable
def call(x, y, z)
@xaviershay
xaviershay / build_frontend.sh
Last active December 24, 2015 20:49
SASS + Coffee + Concatenation in prod
#!/bin/bash
set -exo pipefail
BUILD_ENV=$1
if [ `uname` == 'Darwin' ]; then
OSX=1
JSCOMPRESSOR="yuicompressor --type js"
else
OSX=
@chris-zwickilton
chris-zwickilton / gist:6625578
Last active December 23, 2015 10:59
A flavor of Hexagonal Rails with factory created use cases
class UsersController < ApplicationController
def create
create_user = UserUseCaseFactory.create_user(Responder.new(self)
create_user.do(params[:email], params[:password[)
end
class Responder < SimpleDelegator
def success(user)
render json: UserSerializer.new(user)
@ralfw
ralfw / pipelineOf.cs
Last active January 5, 2021 22:01
Pipes and filters à la Steve Bate - but with a twist :-) Not just classes are filters, but also objects and functions.
public class PipelineOf<T> : IFilterOf<T>
{
public class Result
{
public static Result Success(T value)
{
return new Result {IsSuccess = true, Value = value};
}
public static Result Failure(Exception exception)
@henrik
henrik / big_decimal_inspect.rb
Created August 20, 2013 11:52
Better BigDecimal#inspect. Great with tests. By @aalin.
class BigDecimal
def inspect
format("#<BigDecimal:%x %s>", object_id, to_s('F'))
end
end
@croaky
croaky / .travis.yml
Created July 31, 2013 18:25
This is our current Travis configuration for our standard Rails 4 + Ruby 2 projects that have Capybara Webkit test suites and Postgres databases. It relies on the bundle_cache.rb and bundle_install.sh files from http://randomerrata.com/post/45827813818/travis-s3 to cache gem bundles for much faster test suite setup time.
---
rvm:
- 2.0.0
before_install:
- "echo 'gem: --no-document' > ~/.gemrc"
- "echo '--colour' > ~/.rspec"
- gem install fog
- "./script/travis/bundle_install.sh"
- export DISPLAY=:99.0