-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrack-auth-cheat.gemspec
25 lines (21 loc) · 1.05 KB
/
rack-auth-cheat.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'rubygems'
Gem::Specification.new do |gem|
gem.name = 'rack-auth-cheat'
gem.version = '0.1.0'
gem.authors = ["Daniel Berger", "Charlie O'Keefe"]
gem.email = '[email protected]'
gem.homepage = 'http://www.github.com/rack-auth-cheat'
gem.summary = 'Rack middleware that authenticates requests with matching username and password'
gem.test_file = 'test/test_rack_auth_cheat.rb'
gem.files = Dir['**/*'].delete_if{ |item| item.include?('git') }
gem.extra_rdoc_files = ['CHANGES', 'README', 'MANIFEST']
gem.add_dependency('rack', '>= 1.0.0')
gem.description = <<-EOF
The rack-auth-cheat library provides a Rack middleware interface which authenticates
any request with a matching username and password. This is useful in development
environments, especially as a way to stub out an external authentication system. Be
sure to include this from an environment-specific file such as
config/environments/development.rb rather than from a global configuration file such
as config/environment.rb
EOF
end