kgio.git  about / heads / tags
kinder, gentler I/O for Ruby
blob edba39ffd161fd191855020ab4b1d34561fa99e3 888 bytes (raw)
$ git show HEAD: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
 
ENV["VERSION"] or abort "VERSION= must be specified"
manifest = File.readlines('.manifest').map! { |x| x.chomp! }

Gem::Specification.new do |s|
  s.name = %q{kgio}
  s.version = (ENV["VERSION"] || '2.11.4').dup
  s.homepage = 'https://yhbt.net/kgio/'
  s.authors = ['kgio hackers']
  summary, desc = *(File.read('README').split("\n\n"))
  s.description = desc.strip
  s.email = %q{kgio-public@yhbt.net}
  s.extra_rdoc_files = IO.readlines('.document').map!(&:chomp!).keep_if do |f|
    File.exist?(f)
  end
  s.files = manifest
  s.summary = summary.sub(/\A[^-]+ - /, '').strip
  s.test_files = Dir['test/test_*.rb']
  s.extensions = %w(ext/kgio/extconf.rb)

  s.add_development_dependency('test-unit', '~> 3.0')
  # s.add_development_dependency('strace_me', '~> 1.0') # Linux only

  s.licenses = %w(LGPL-2.1+)
  s.required_ruby_version = '>= 1.9.3' # kgio is deprecated anyways...
end

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