This file contains hidden or 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 'test/unit' | |
require './tiny_frp.rb' | |
module TinyFRP | |
module UnitTest | |
module Util | |
def lift(&proc) | |
TinyFRP::Lift.new(&proc) | |
end |
This file contains hidden or 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
# | |
# - 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 |