Sha256: 21af35344bc649d14a1dfcc8aeb0b55eeaca9b3de3370d295f058cc51d46d692

Contents?: true

Size: 584 Bytes

Versions: 9

Compression:

Stored size: 584 Bytes

Contents

#!/usr/bin/env rake

require 'bundler'
Bundler::GemHelper.install_tasks

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

task :test => :spec
task :default => :spec

namespace :doc do
  require 'yard'
  YARD::Rake::YardocTask.new do |task|
    task.files   = ['HISTORY.md', 'LICENSE.md', 'lib/**/*.rb']
    task.options = [
      '--protected',
      '--output-dir', 'doc/yard',
      '--tag', 'format:Supported formats',
      '--tag', 'authenticated:Requires Authentication',
      '--tag', 'rate_limited:Rate Limited',
      '--markup', 'markdown',
    ]
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
pinboard-1.0.0 Rakefile
pinboard-0.1.1 Rakefile
pinboard-0.1.0 Rakefile
pinboard-0.0.51 Rakefile
pinboard-0.0.5 Rakefile
pinboard-0.0.4 Rakefile
pinboard-0.0.3 Rakefile
pinboard-0.0.2 Rakefile
peerindex-0.0.1 Rakefile