forked from WinRb/rubyntlm
-
Notifications
You must be signed in to change notification settings - Fork 2
/
rubyntlm.gemspec
29 lines (22 loc) · 1001 Bytes
/
rubyntlm.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
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.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.required_ruby_version = '>= 1.8.7'
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"
end