Skip to content

Instantly share code, notes, and snippets.

require 'test/unit'
require './tiny_frp.rb'
module TinyFRP
module UnitTest
module Util
def lift(&proc)
TinyFRP::Lift.new(&proc)
end
@qiukun
qiukun / jdk8.sh
Last active August 29, 2015 14:10 — forked from leon/Dockerfile
#
# - install jdk8 from oracle
#
add-apt-repository -y ppa:webupd8team/java
apt-get update
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections
apt-get install -y oracle-java8-installer
apt-get install oracle-java8-set-default