Sha256: 667cc49745d96d589bf0815ec1b6660e30c6fbe3c5d48cee4f32405b3c092043
Contents?: true
Size: 1.05 KB
Versions: 3
Compression:
Stored size: 1.05 KB
Contents
# -*- 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 = "dan.wanek@gmail.com" gem.homepage = "http://github.com/zenchild/gssapi" 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.textile COPYING) gem.required_ruby_version = '>= 1.8.7' gem.add_runtime_dependency 'ffi', '>= 1.0.1' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
gssapi-1.1.2 | gssapi.gemspec |
gssapi-1.1.1 | gssapi.gemspec |
gssapi-1.1.0 | gssapi.gemspec |