Sha256: dc0937e552fbfba54852104e24f82ba0cd5d41a26544dc33824597d1530d659d
Contents?: true
Size: 1.03 KB
Versions: 2
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{kcar} s.version = ENV["VERSION"] s.homepage = 'http://bogomips.org/kcar/' s.authors = ["kcar hackers"] s.date = Time.now.utc.strftime('%Y-%m-%d') s.description = description s.email = %q{kcar@librelist.com} 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 = [ "-a", "-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/kcar/extconf.rb) # s.license = %w(GPL Ruby) # disabled for compatibility with older RubyGems end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
kcar-0.1.2 | kcar.gemspec |
kcar-0.1.1 | kcar.gemspec |