Sha256: ad8bab91a9669b3399943220b0f773b7950576a2c27d48ad6d16d199d23b4bae
Contents?: true
Size: 1.3 KB
Versions: 1
Compression:
Stored size: 1.3 KB
Contents
require "rake/gempackagetask" require "rake/rdoctask" require "spec/rake/spectask" Spec::Rake::SpecTask.new do |t| t.spec_opts = ["--color"] end Rake::RDocTask.new do |t| t.main = "README.rdoc" t.rdoc_dir = "doc" t.rdoc_files.add("README.rdoc", "lib/**/*.rb") end specification = Gem::Specification.new do |s| s.name = "doc_storage" s.version = "1.0" s.summary = "Simple Ruby library for manipulating documents containing a " + "text and metadata." s.description = "DocStorage is a simple Ruby library for manipulating " + "documents containing a text and metadata. These documents " + "can be used to implement a blog, wiki, or similar " + "application without a relational database." s.required_ruby_version = ">= 1.8.6" s.author = "David Majda" s.email = "david@majda.cz" s.homepage = "http://bitbucket.org/dmajda/doc_storage/" s.files = FileList[ "Rakefile", "README.rdoc", "LICENSE", "VERSION", Dir["lib/**/*.rb"], Dir["spec/**/*.rb"], Dir["examples/**/*"] ] s.has_rdoc = true s.extra_rdoc_files = ["README.rdoc"] s.rdoc_options = ["--main", "README.rdoc"] end Rake::GemPackageTask.new(specification) do |t| end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
doc_storage-1.0 | Rakefile |