Sha256: b2f91e3d227965207f30eb9502e2e06690178cd41e19dc90b432d5d632e373a3

Contents?: true

Size: 471 Bytes

Versions: 14

Compression:

Stored size: 471 Bytes

Contents

# frozen_string_literal: true

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
  begin
    require 'yard'
    YARD::Rake::YardocTask.new do |task|
      task.files   = ['README.md', 'LICENSE.md', 'lib/**/*.rb']
      task.options = [
        '--output-dir', 'doc/yard',
        '--markup', 'markdown'
      ]
    end
  rescue LoadError
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
tdiary-5.2.4 vendor/bundle/ruby/3.1.0/gems/octokit-4.25.1/Rakefile
octokit-6.0.1 Rakefile
octokit-6.0.0 Rakefile
octokit-5.6.1 Rakefile
octokit-5.6.0 Rakefile
octokit-5.5.0 Rakefile
octokit-5.4.0 Rakefile
tdiary-5.2.3 vendor/bundle/ruby/3.1.0/gems/octokit-5.3.0/Rakefile
octokit-5.3.0 Rakefile
octokit-5.2.0 Rakefile
octokit-5.1.0 Rakefile
octokit-5.0.0 Rakefile
octokit-4.25.1 Rakefile
octokit-4.25.0 Rakefile