Sha256: f31f3cbeead2b2da171336c97afeeb7e4817e98e9579af6288e6ea18c2585387

Contents?: true

Size: 511 Bytes

Versions: 2

Compression:

Stored size: 511 Bytes

Contents

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   = ['LICENSE.mkd', 'lib/**/*.rb']
    task.options = [
      '--no-private',
      '--protected',
      '--output-dir', 'doc/yard',
      '--tag', 'format:Supported formats',
      '--tag', 'key:Requires API key',
      '--markup', 'markdown',
    ]
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
open311-0.1.2 Rakefile
open311-0.1.1 Rakefile