Sha256: 653270b5762e183a981259598b3db81fd421c28e45d95bd96206eb83961d5c23

Contents?: true

Size: 408 Bytes

Versions: 13

Compression:

Stored size: 408 Bytes

Contents

require 'bundler/gem_tasks'

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

require 'rubocop/rake_task'
RuboCop::RakeTask.new

task test: :spec
task default: [:spec, :rubocop]

namespace :doc do
  require 'yard'
  YARD::Rake::YardocTask.new do |task|
    task.files = %w(LICENSE.md lib/**/*.rb)
    task.options = %w(--output-dir doc/yard --markup markdown)
  end
  task default: :yard
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
oktakit-0.1.5 Rakefile
oktakit-0.1.4 Rakefile
buildkit-1.2.0 Rakefile
buildkit-1.1.1 Rakefile
buildkit-1.0.0 Rakefile
buildkit-0.4.0 Rakefile
oktakit-0.1.3 Rakefile
oktakit-0.1.2 Rakefile
oktakit-0.1.1 Rakefile
oktakit-0.1.0 Rakefile
buildkit-0.3.0 Rakefile
buildkit-0.2.0 Rakefile
buildkit-0.1.0 Rakefile