Sha256: 51833665ebef77cdee81cd45e53ea5b2257005505f1e9fc06c3206759b53963c

Contents?: true

Size: 628 Bytes

Versions: 29

Compression:

Stored size: 628 Bytes

Contents

require 'rubygems'
require 'rake'
require 'bundler'
Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.rcov = true
end

task :default => :spec

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

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

require 'install.rb'
task :install do
  InstallMetricTrackingTables.new
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
mountain-goat-1.0.6pre1 Rakefile
mountain-goat-1.0.5 Rakefile
mountain-goat-1.0.4 Rakefile
mountain-goat-1.0.3 Rakefile
mountain-goat-1.0.2 Rakefile
mountain-goat-1.0.1 Rakefile
mountain-goat-1.0.0 Rakefile
mountain-goat-0.1.8 Rakefile
mountain-goat-0.1.7 Rakefile
mountain-goat-0.1.6 Rakefile
mountain-goat-0.1.5 Rakefile
mountain-goat-0.1.4 Rakefile
mountain-goat-0.1.3 Rakefile
mountain-goat-0.1.2 Rakefile
mountain-goat-0.1.1 Rakefile
mountain-goat-0.1.0 Rakefile
mountain-goat-0.0.20 Rakefile
mountain-goat-0.0.19 Rakefile
mountain-goat-0.0.18 Rakefile
mountain-goat-0.0.17 Rakefile