kgio.git  about / heads / tags
kinder, gentler I/O for Ruby
blob 38f7b900f347e0a7c1e4bfefc165f6832c356577 903 bytes (raw)
$ git show 2.4-stable:kgio.gemspec	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 
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.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.5')
  s.add_development_dependency('strace_me', '~> 1.0')

  # s.license = %w(LGPL) # disabled for compatibility with older RubyGems
end

git clone git://yhbt.net/kgio.git
git clone https://yhbt.net/kgio.git