diff options
Diffstat (limited to 'lib/app.rb')
| -rw-r--r-- | lib/app.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/app.rb b/lib/app.rb new file mode 100644 index 0000000..3468116 --- /dev/null +++ b/lib/app.rb @@ -0,0 +1,7 @@ +require 'sinatra' +require 'github/markup' + +get '/' do + @content = IO.read("README.md") + erb :index +end |
