Sha256: a7bb432434288b7ae8114329344cdfc20a051a4c5c7b97394813f7df7d4936a5
Contents?: true
Size: 840 Bytes
Versions: 1
Compression:
Stored size: 840 Bytes
Contents
# -*- encoding: binary -*- ENV["VERSION"] or abort "VERSION= must be specified" manifest = File.readlines('.manifest').map! { |x| x.chomp! } $LOAD_PATH << 'lib' require 'wrongdoc' extend Wrongdoc::Gemspec name, summary, title = readme_metadata Gem::Specification.new do |s| s.name = %q{wrongdoc} s.version = ENV["VERSION"].dup s.authors = ["#{name} hackers"] s.date = Time.now.utc.strftime('%Y-%m-%d') s.description = readme_description s.email = %q{wrongdoc@librelist.org} s.executables = %w(wrongdoc) s.extra_rdoc_files = extra_rdoc_files(manifest) s.files = manifest s.homepage = Wrongdoc.config[:rdoc_url] s.summary = summary s.rdoc_options = rdoc_options s.require_paths = %w(lib) s.rubyforge_project = %q{rainbows} s.add_dependency(%q<nokogiri>, ['~> 1.5']) s.add_dependency(%q<rdoc>, ['~> 4.0']) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wrongdoc-1.7.0 | wrongdoc.gemspec |