diff --git a/README.md b/README.md index 9154447..28542da 100644 --- a/README.md +++ b/README.md @@ -2,5 +2,4 @@ Auth ==== A high performance OAuth2 authorization server using Sinatra and Redis, -inspired by Resque. Can be run both as a standalone server or as a rack -middleware. +inspired by Resque. diff --git a/auth.gemspec b/auth.gemspec index 41ffed6..d5fbc6a 100644 --- a/auth.gemspec +++ b/auth.gemspec @@ -5,7 +5,7 @@ Gem::Specification.new do |s| s.name = 'auth' s.version = Auth::Version s.summary = 'Auth is a Redis-backed high performance OAuth2 authorization server.' - s.description = 'A high performance OAuth2 authorization server using Sinatra and Redis, inspired by Resque. Can be run both as a standalone server or as a rack middleware.' + s.description = 'A high performance OAuth2 authorization server using Sinatra and Redis, inspired by Resque.' s.author = 'Niklas Holmgren' s.email = 'niklas@sutajio.se' diff --git a/config.ru b/config.ru deleted file mode 100644 index 3fa8180..0000000 --- a/config.ru +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env ruby - -$LOAD_PATH.unshift ::File.expand_path(::File.dirname(__FILE__) + '/lib') -require 'auth/server' - -if ENV['REDISTOGO_URL'] || ENV['REDIS_URL'] - Auth.redis = ENV['REDISTOGO_URL'] || ENV['REDIS_URL'] -end - -use Rack::ShowExceptions -run Auth::Server.new