Sha256: e7cfe7897d91d1b19166d8d5eae02f883764e642a01df3ded0366e17d299b71b

Contents?: true

Size: 1.03 KB

Versions: 7

Compression:

Stored size: 1.03 KB

Contents

ENV["VERSION"] or abort "VERSION= must be specified"
manifest = File.readlines('.manifest').map! { |x| x.chomp! }
summary = File.readlines("README")[0].gsub(/\A=\s+\S+[^\w]+/, '').strip
description = File.read("README").split(/\n\n/)[1].strip

Gem::Specification.new do |s|
  s.name = %q{kgio}
  s.version = ENV["VERSION"]

  s.homepage = 'http://unicorn.bogomips.org/kgio/'
  s.authors = ["kgio hackers"]
  s.date = Time.now.utc.strftime('%Y-%m-%d')
  s.description = description
  s.email = %q{mongrel-unicorn@rubyforge.org}

  s.extra_rdoc_files = File.readlines('.document').map! do |x|
    x.chomp!
    if File.directory?(x)
      manifest.grep(%r{\A#{x}/})
    elsif File.file?(x)
      x
    else
      nil
    end
  end.flatten.compact

  s.files = manifest
  s.rdoc_options = [ "-t", summary ]
  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.license = %w(LGPL) # disabled for compatibility with older RubyGems
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
kgio-1.3.1 kgio.gemspec
kgio-1.3.0.1.gd225 kgio.gemspec
kgio-1.3.0 kgio.gemspec
kgio-1.2.1 kgio.gemspec
kgio-1.2.0 kgio.gemspec
kgio-1.1.0 kgio.gemspec
kgio-1.0.1 kgio.gemspec