ruby-wordexp.git  about / heads / tags
perform word expansions (interface to the wordexp(3) POSIX function)
blob 8487a19374632bd32e3449af723cff0f029c95c9 796 bytes (raw)
$ git show v1.0.1:wordexp.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
 
# -*- encoding: binary -*-
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{wordexp}
  s.version = ENV["VERSION"].dup

  s.authors = ["Eric Wong"]
  s.date = Time.now.utc.strftime('%Y-%m-%d')
  s.description = readme_description
  s.email = %q{normalperson@yhbt.net}
  s.extra_rdoc_files = extra_rdoc_files(manifest)
  s.extensions = %w(ext/wordexp/extconf.rb)
  s.files = manifest
  s.homepage = Wrongdoc.config[:rdoc_url]
  s.summary = summary
  s.rdoc_options = rdoc_options
  s.test_files = Dir['test/test_*.rb']
  s.licenses = %w(LGPLv2.1+)
  s.add_development_dependency('wrongdoc', '~> 1.7')
end

git clone https://yhbt.net/ruby-wordexp.git