Sha256: 71784239998209bb2d17d13bf0b43c8d935fda08a4616b5ce055d943555a61f9

Contents?: true

Size: 710 Bytes

Versions: 1

Compression:

Stored size: 710 Bytes

Contents

ENV['APPLICATION_CLIENT_ID'] = 'dddc188f84e348ddae69f17dd63e758ded4cc24abed435a53db9525db2cd7af45f0'
ENV['APPLICATION_CLIENT_SECRET'] = 'e35b8e02901a3ca1b5b1e0c4cf3e1e6dbd1855de4684bd95175721428816ae96'
ENV['APPLICATION_SCOPES_REQUESTED'] = 'public'
ENV['OAUTH_BASE_URL'] = 'http://localhost:3000'
ENV['SESSION_KEY'] = 'Set a key'
ENV['USER_ATTRIBUTES'] = 'id full_name email'
ENV['RACK_ENV'] = 'test'

ENV['RACK_ENV'] ||= 'development'
require 'bundler'
require 'bundler/setup'

$LOAD_PATH << File.dirname(__FILE__) + '/lib'
require File.expand_path(File.join(File.dirname(__FILE__), 'lib', 'sinatra_auth_oauthed'))
require File.expand_path(File.join(File.dirname(__FILE__), 'spec', 'app'))

run Example::App

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sinatra_auth_oauthed-0.0.2 config.ru