From 0147f5d28425fc63a7c2c6c31f6702782d437ef6 Mon Sep 17 00:00:00 2001 From: David Dollar Date: Sun, 29 Jan 2012 13:56:22 -0500 Subject: [PATCH] set up example procfile with utf8 item --- data/example/Procfile | 1 + data/example/utf8 | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100755 data/example/utf8 diff --git a/data/example/Procfile b/data/example/Procfile index 7e64be2..6dd4b4e 100644 --- a/data/example/Procfile +++ b/data/example/Procfile @@ -1,2 +1,3 @@ ticker: ruby ./ticker $PORT error: ruby ./error +utf8: ruby ./utf8 diff --git a/data/example/utf8 b/data/example/utf8 new file mode 100755 index 0000000..00b90a2 --- /dev/null +++ b/data/example/utf8 @@ -0,0 +1,11 @@ +#!/usr/bin/env ruby +# encoding: BINARY + +$stdout.sync = true + +while true + puts "\u65e5\u672c\u8a9e\u6587\u5b57\u5217" + puts "\u0915\u0932\u094d\u0907\u0928\u0643\u0637\u0628\u041a\u0430\u043b\u0438\u043d\u0430" + puts "\xff\x03" + sleep 1 +end