Sha256: eaeb8629e5d36b745486de6c27527566a47c9e8bd5aa9f51421aa1e5ae7474e1
Contents?: true
Size: 1.08 KB
Versions: 46
Compression:
Stored size: 1.08 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.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' end
Version data entries
46 entries across 38 versions & 5 rubygems