Sha256: 68ed5d1b1dfcf7c20becabc992fb332b1c5becfc452681ea25fd0f89770ee88c
Contents?: true
Size: 883 Bytes
Versions: 1
Compression:
Stored size: 883 Bytes
Contents
ENV["VERSION"] or abort "VERSION= must be specified" manifest = File.readlines('.manifest').map! { |x| x.chomp! } require 'wrongdoc' extend Wrongdoc::Gemspec name, summary, title = readme_metadata Gem::Specification.new do |s| s.name = %q{kgio} s.version = ENV["VERSION"].dup s.homepage = Wrongdoc.config[:rdoc_url] s.authors = ["#{name} hackers"] s.date = Time.now.utc.strftime('%Y-%m-%d') s.description = readme_description s.email = %q{kgio@librelist.org} s.extra_rdoc_files = extra_rdoc_files(manifest) s.files = manifest s.rdoc_options = rdoc_options s.require_paths = %w(lib ext) s.rubyforge_project = %q{rainbows} s.summary = summary s.test_files = Dir['test/test_*.rb'] s.extensions = %w(ext/kgio/extconf.rb) s.add_development_dependency('wrongdoc', '~> 1.0.1') # s.license = %w(LGPL) # disabled for compatibility with older RubyGems end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kgio-2.1.1 | kgio.gemspec |