-
Notifications
You must be signed in to change notification settings - Fork 50
/
gssapi.gemspec
36 lines (29 loc) · 1.13 KB
/
gssapi.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
35
36
# -*- encoding: utf-8 -*-
lib = File.expand_path('lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'date'
Gem::Specification.new do |gem|
gem.name = "gssapi"
gem.version = File.open('VERSION').readline.chomp
gem.date = Date.today.to_s
gem.platform = Gem::Platform::RUBY
gem.rubyforge_project = nil
gem.author = "Dan Wanek"
gem.email = "[email protected]"
gem.homepage = "https://github.com/zenchild/gssapi"
gem.license = "MIT"
gem.summary = "A FFI wrapper around the system GSSAPI library."
gem.description = <<-EOF
A FFI wrapper around the system GSSAPI library. Please make sure and read the
Yard docs or standard GSSAPI documentation if you have any questions.
There is also a class called GSSAPI::Simple that wraps many of the common features
used for GSSAPI.
EOF
gem.files = `git ls-files`.split(/\n/)
gem.require_path = "lib"
gem.rdoc_options = %w(-x test/ -x examples/)
gem.extra_rdoc_files = %w(README.md COPYING Changelog.md)
gem.required_ruby_version = '>= 1.8.7'
gem.add_runtime_dependency 'ffi', '>= 1.0.1'
gem.add_development_dependency "pry-byebug"
end