Sha256: 2234a7652854f1fa7759901670df78a809b23a75763b1b2cda7f3e1d77a5c908
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 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{kgio@bogomips.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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kgio-2.0.0pre1 | kgio.gemspec |