File: httpauth.gemspec

package info (click to toggle)
ruby-httpauth 0.2.1%2Bgh-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 192 kB
  • ctags: 127
  • sloc: ruby: 925; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 735 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |spec|
  spec.name      = 'httpauth'
  spec.version   = '0.2.1'

  spec.author   = 'Manfred Stienstra'
  spec.email    = 'manfred@fngtpspec.com'
  spec.homepage = 'https://github.com/Manfred/HTTPauth'

  spec.summary = 'HTTPauth is a library supporting the full HTTP Authentication protocol as specified in RFC 2617; both Digest Authentication and Basic Authentication.'
  spec.description = 'Library for the HTTP Authentication protocol (RFC 2617)'

  spec.files = %w(README.md LICENSE) + Dir.glob('lib/**/*')

  spec.add_development_dependency 'bundler', '~> 1.0'

  spec.has_rdoc = true
  spec.extra_rdoc_files = ['README.md', 'LICENSE']
  spec.license = 'MIT'
  spec.rdoc_options << '--charset=utf-8'
end