Skip to content

Instantly share code, notes, and snippets.

View StupidCodeFactory's full-sized avatar
🏠
Working from home

Yann Marquet StupidCodeFactory

🏠
Working from home
View GitHub Profile
### R code from vignette source 'Presentation.Rnw'
### Encoding: UTF-8
###################################################
### code chunk number 1: init
###################################################
options(width=60)
###################################################
# How Clearance / Hoptoad does it
module Clearance
class << self
attr_accessor :configuration
end
def self.configure
self.configuration ||= Configuration.new
yield(configuration)
end