10 строки
134 Б
Ruby
10 строки
134 Б
Ruby
require 'rubygems'
|
|
require 'bundler/setup'
|
|
|
|
require './app/store'
|
|
|
|
use Rack::ShowExceptions
|
|
|
|
map '/store' do
|
|
run StoreApp.new
|
|
end
|