Sha256: 61293bef804c2678dd356dd5959918e799de4d8f618d9fedef42fe9a32688393

Contents?: true

Size: 1.35 KB

Versions: 3

Compression:

Stored size: 1.35 KB

Contents

# encoding: utf-8

# bundler/setup is managing $LOAD_PATH, any gem needed by this Rakefile must
# be listed as a development dependency in the gemspec

require 'rubygems'
require 'bundler/setup'

Bundler::GemHelper.install_tasks

def gemspec
  @gemspec ||= begin
    file = File.expand_path('../mutagem.gemspec', __FILE__)
    eval(File.read(file), binding, file)
  end
end

require 'spec'
require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.spec_files = FileList['spec/**/*_spec.rb']
end

require 'cucumber'
require 'cucumber/rake/task'
Cucumber::Rake::Task.new(:features) do |task|
  task.cucumber_opts = ["features"]
end

desc "Run specs and features"
task :test => [:spec, :features]

task :default => :test

namespace :doc do
  project_root = File.expand_path(File.dirname(__FILE__))
  doc_destination = File.join(project_root, 'rdoc')

  require 'yard'
  require 'yard/rake/yardoc_task'

  YARD::Rake::YardocTask.new(:generate) do |yt|
    yt.options = ['--output-dir', doc_destination
                 ] +
                 gemspec.rdoc_options - ['--line-numbers', '--inline-source']
  end

  desc "Remove generated documenation"
  task :clean do
    rm_r doc_destination if File.exists?(doc_destination)
  end

  desc "List undocumented objects"
  task :undocumented do
    system('yard stats --list-undoc')
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mutagem-0.2.2 Rakefile
mutagem-0.2.1 Rakefile
mutagem-0.2.0 Rakefile