blindgaenger / sinatra-auth

use the basic HTTP authentication of rack in your sinatra application

This URL has Read+Write access

sinatra-auth / sinatra-auth.gemspec
100644 24 lines (20 sloc) 0.577 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Gem::Specification.new do |s|
  s.platform = Gem::Platform::RUBY
  s.name = "sinatra-auth"
  s.version = "0.1"
  s.date = "2009-02-01"
  s.authors = ["blindgaenger"]
  s.email = "blindgaenger@gmail.com"
  s.homepage = "http://github.com/blindgaenger/sinatra-auth"
  s.summary = "use the basic HTTP authentication of rack in your sinatra application"
 
  s.files = [
    "Rakefile",
    "README.textile",
    "lib/auth.rb",
    "spec/auth_spec.rb",
    "examples/simple.erb"
  ]
  s.require_paths = ["lib"]
  s.add_dependency "sinatra", [">= 0.3.2"]
 
  s.has_rdoc = "false"
end