Sha256: 1c3bdccd0fce98666b76245b74ae44885dabba6e3d2acb014f887f8c29ebcc46

Contents?: true

Size: 493 Bytes

Versions: 8

Compression:

Stored size: 493 Bytes

Contents

# frozen_string_literal: true

require 'bundler'
Bundler::GemHelper.install_tasks

task test: :spec
task default: :spec

desc 'Run RSpec'
task :spec do
  if Process.respond_to?(:fork)
    sh('rspec-queue')
  else
    sh('rspec')
  end
end

namespace :doc do
  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

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
octokit-9.2.0 Rakefile
octokit-9.1.0 Rakefile
octokit-9.0.0 Rakefile
octokit-8.1.0 Rakefile
octokit-8.0.0 Rakefile
octokit-7.2.0 Rakefile
octokit-7.1.0 Rakefile
octokit-7.0.0 Rakefile