Sha256: bb76b8e915757d35144c0d9a752971dffe15a1a0e9cefa5f063c4596c00c03d2
Contents?: true
Size: 1.05 KB
Versions: 7
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.txt) gem.required_ruby_version = '>= 1.9.1' gem.add_runtime_dependency 'ffi', '>= 1.0.1' end
Version data entries
7 entries across 7 versions & 1 rubygems