Sha256: 2969f61fa663fdfb32d484b2b530dc9423e19626255d27cc4ce1068bf143f2c6

Contents?: true

Size: 602 Bytes

Versions: 5

Compression:

Stored size: 602 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',
      '--tag', 'format:Supported formats',
      '--tag', 'authenticated:Requires Authentication',
      '--tag', 'rate_limited:Rate Limited',
      '--markup', 'markdown',
    ]
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rainmaker-0.1.5 Rakefile
rainmaker-0.1.4 Rakefile
rainmaker-0.1.3 Rakefile
rainmaker-0.1.1 Rakefile
rainmaker-0.0.1 Rakefile