Sha256: 4f06d1ffff0993226a6bbc9e47f4454d434c1b120e50888ec4ded7644eafd770

Contents?: true

Size: 1.33 KB

Versions: 9

Compression:

Stored size: 1.33 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
  gem.name = "madowu"
  gem.homepage = "http://github.com/ippei94da/madowu"
  gem.license = "MIT"
  gem.summary = %Q{Madowu, MArkDOWn to markUp, to build html}
  gem.description = %Q{Markdown to HTML with table of contents, sidebar to neighboring directories.}
  gem.email = "ippei94da@gmail.com"
  gem.authors = ["ippei94da"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

desc "Code coverage detail"
task :simplecov do
  ENV['COVERAGE'] = "true"
  Rake::Task['test'].execute
end

task :default => :test

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "madowu #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
madowu-0.0.8 Rakefile
madowu-0.0.7 Rakefile
madowu-0.0.6 Rakefile
madowu-0.0.5 Rakefile
madowu-0.0.4 Rakefile
madowu-0.0.3 Rakefile
madowu-0.0.2 Rakefile
madowu-0.0.1 Rakefile
madowu-0.0.0 Rakefile