File: rubyntlm.gemspec

package info (click to toggle)
ruby-ntlm 0.6.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 392 kB
  • sloc: ruby: 2,742; makefile: 6
file content (31 lines) | stat: -rw-r--r-- 1,008 bytes parent folder | download
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
require File.join(File.dirname(__FILE__), 'lib', 'net', 'ntlm', 'version')

Gem::Specification.new do |s|
  s.platform = Gem::Platform::RUBY
  s.name = 'rubyntlm'
  s.version = Net::NTLM::VERSION::STRING
  s.summary = 'Ruby/NTLM library.'
  s.description = 'Ruby/NTLM provides message creator and parser for the NTLM authentication.'

  s.authors = ['Kohei Kajimoto','Paul Morton']
  s.email = ['koheik@gmail.com','paul.e.morton@gmail.com']
  s.homepage = 'https://github.com/winrb/rubyntlm'


  s.files         = `git ls-files`.split($/)
  s.test_files    = s.files.grep(%r{^(test|spec|features)/})
  s.require_paths = ["lib"]

  s.required_ruby_version = '>= 2.6.0'

  s.license = 'MIT'

  s.add_development_dependency 'github_changelog_generator', '1.14.3'
  s.add_development_dependency "pry"
  s.add_development_dependency "rake"
  s.add_development_dependency "rspec", ">= 2.11"
  s.add_development_dependency "simplecov"
  s.add_dependency "base64"

  s.metadata["rubygems_mfa_required"] = "true"
end