forked from karmi/clearance_http_auth
-
Notifications
You must be signed in to change notification settings - Fork 2
/
clearance_http_auth.gemspec
34 lines (26 loc) · 1.08 KB
/
clearance_http_auth.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
26
27
28
29
30
31
32
33
34
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
require "clearance_http_auth/version"
Gem::Specification.new do |s|
s.name = "clearance_http_auth"
s.version = Clearance::HttpAuth::VERSION
s.platform = Gem::Platform::RUBY
s.summary = "HTTP Basic Authentication for Clearance"
s.homepage = "http://github.com/karmi/clearance_http_auth"
s.authors = [ 'Karel Minarik' ]
s.email = '[email protected]'
s.files = %w( README.rdoc Rakefile MIT-LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("test/**/*")
s.files += Dir.glob("examples/**/*")
s.require_path = 'lib'
s.extra_rdoc_files = [ "README.rdoc", "MIT-LICENSE" ]
s.rdoc_options = [ "--charset=UTF-8" ]
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "clearance", "> 0.16"
s.add_dependency "rack", "> 1.2"
s.add_development_dependency "bundler", "~> 1.1.0"
s.description = <<-DESC
Simple, instant HTTP Basic Authentication for applications using Clearance.
DESC
end