Sha256: 59f7d7fb26259440ed648062741efc3c4fec5aaa65907c2653e85e2b71fb2c68

Contents?: true

Size: 487 Bytes

Versions: 4

Compression:

Stored size: 487 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new do |t|
  t.pattern = "#{File.dirname(__FILE__)}/spec/**/*_spec.rb"
end

task :doc => [:'doc:yard']

namespace :doc do
  require 'yard'
  YARD::Rake::YardocTask.new do |task|
    task.files = ['lib/**/*.rb', '-', 'LICENSE']
    task.options = [
      '--protected',
      '--output-dir', 'doc/yard',
      '--markup', 'markdown'
    ]
  end
end

task :default => [:spec, :doc]

Version data entries

4 entries across 4 versions & 3 rubygems

Version Path
panops-0.0.1alpha1 Rakefile
panops-core-0.0.1alpha Rakefile
opapp-0.0.1alpha Rakefile
panops-0.0.1alpha Rakefile