Sha256: b98dd9d80b140402992fc17d7ae84b8f3f7b5e512f8376636c78a41b572b8518
Contents?: true
Size: 1.26 KB
Versions: 1
Compression:
Stored size: 1.26 KB
Contents
require 'rubygems' require 'rbconfig' Gem::Specification.new do |spec| spec.name = 'rslp' spec.version = '0.0.1' spec.license = 'Apache-2.0' spec.author = 'Daniel J. Berger' spec.email = 'djberg96@gmail.com' spec.homepage = 'https://github.com/djberg96/rslp' spec.summary = 'Interface for the OpenSLP library' spec.test_files = Dir['spec/*.rb'] spec.files = Dir['**/*'].reject{ |f| f.include?('git') } spec.cert_chain = ['certs/djberg96_pub.pem'] spec.extra_rdoc_files = ['README.md', 'CHANGES.md', 'MANIFEST.md', 'LICENSE'] spec.add_dependency('ffi', "~> 1.1") spec.add_development_dependency('rake') spec.add_development_dependency('rspec', "~> 3.9") spec.metadata = { 'homepage_uri' => 'https://github.com/djberg96/rslp', 'bug_tracker_uri' => 'https://github.com/djberg96/rslp/issues', 'changelog_uri' => 'https://github.com/djberg96/rslp/blob/main/CHANGES.md', 'documentation_uri' => 'https://github.com/djberg96/rslp/wiki', 'source_code_uri' => 'https://github.com/djberg96/rslp', 'wiki_uri' => 'https://github.com/djberg96/rslp/wiki' } spec.description = <<-EOF The rslp library is an FFI interface for the OpenSLP service location protocol library. EOF end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rslp-0.0.1 | rslp.gemspec |