blob: dc0a2600df23bd440675749c3bd79e97fbc61a9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'sinatra'
require 'omniauth'
class MyApplication < Sinatra::Base
use Rack::Session::Cookie, secret: 'hashie integration tests'
use OmniAuth::Strategies::Developer
get '/' do
'Hello World'
end
end
|