Sha256: 12d099567524a825f1ebd3f30b4d4df5be9414a79ba4270f27bbdcdab9e58e61
Contents?: true
Size: 897 Bytes
Versions: 5
Compression:
Stored size: 897 Bytes
Contents
require 'rake' require 'rake/rdoctask' desc "Run all specs by default" task :default => [:spec] desc "Run all specs" task :spec do sh 'bacon test/*_spec.rb' end namespace :documentation do Rake::RDocTask.new(:generate) do |rd| rd.main = "README.rdoc" rd.rdoc_files.include("README.rdoc", "LICENSE", "bin/**/*.rb", "lib/**/*.rb", "templates/**/*.rb") rd.options << "--all" << "--charset" << "utf-8" end end begin require 'jeweler' Jeweler::Tasks.new do |s| s.name = "saga" s.summary = s.description = "Saga is a tool to convert stories syntax to a nicely formatted document." s.homepage = "http://fingertips.github.com" s.email = "manfred@fngtps.com" s.authors = ["Manfred Stienstra"] s.add_dependency('erubis', '>= 2.6') s.add_dependency('activesupport', '>= 2.3') s.add_development_dependency('mocha-on-bacon') end rescue LoadError end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
saga-0.8.1 | Rakefile |
saga-0.8.0 | Rakefile |
saga-0.7.1 | Rakefile |
saga-0.7.0 | Rakefile |
saga-0.6.0 | Rakefile |