Sha256: d84d71ca81d1c0bcb805daf6a515b78a66c2026df34141192c714e38bd6c06df

Contents?: true

Size: 425 Bytes

Versions: 1

Compression:

Stored size: 425 Bytes

Contents

ENV['RACK_ENV'] ||= 'development'

begin
  require File.expand_path('../.bundle/environment', __FILE__)
rescue LoadError
  require 'rubygems'
  require 'bundler'
  Bundler.setup
end

Bundler.require(:runtime)

file_dir = File.dirname(__FILE__)
$LOAD_PATH << file_dir + '/lib'
require File.expand_path(File.join(file_dir, 'lib', 'warden-oauthed'))
require File.expand_path(File.join(file_dir, 'spec', 'app'))

run Example.app

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
warden-oauthed-0.0.4 config.ru