diff options
author | Nat Lasseter <Nat Lasseter nathan@bytemark.co.uk> | 2019-01-09 14:24:44 +0000 |
---|---|---|
committer | Nat Lasseter <Nat Lasseter nathan@bytemark.co.uk> | 2019-01-09 14:24:44 +0000 |
commit | cf3d1823bfa1aa91b36385b07617486b634e46cc (patch) | |
tree | 6ee5cf1efa01521a41f4adc101f337966deb5286 /test |
Initial commit
Diffstat (limited to 'test')
-rw-r--r-- | test/.drumkit | 6 | ||||
-rwxr-xr-x | test/test.rb | 9 |
2 files changed, 15 insertions, 0 deletions
diff --git a/test/.drumkit b/test/.drumkit new file mode 100644 index 0000000..6b6b833 --- /dev/null +++ b/test/.drumkit @@ -0,0 +1,6 @@ +This file will be modified automatically. Only make changes if you know what you are doing. Otherwise, use drum. + +BASSDRUM ruby:alpine +KICKDRUM drum-bass-ruby_alpine-kick-test +SNAREDRUM drum-bass-ruby_alpine-kick-test-snare-test_rb +DRUMSTICK sinatra diff --git a/test/test.rb b/test/test.rb new file mode 100755 index 0000000..3df8653 --- /dev/null +++ b/test/test.rb @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby + +require 'sinatra' + +set :bind, '0.0.0.0' + +get '/' do + 'Put this in your pipe & smoke it!' +end |