Sha256: 9e695318e22f3fd67379403cba2507e2e98278bdca1a07f86dd589579eb66d8a

Contents?: true

Size: 631 Bytes

Versions: 9

Compression:

Stored size: 631 Bytes

Contents

#!/usr/bin/env rake

# frozen_string_literal: true

require "rspec/core/rake_task"
require "rubocop/rake_task"

begin
  require "bundler/setup"
rescue LoadError
  puts "You must `gem install bundler` and `bundle install` to run rake tasks"
end
begin
  require "yard"
  YARD::Rake::YardocTask.new do |t|
    t.files = ["lib/**/*.rb"]
    t.options = [
      "--no-private",
    ]
  end
rescue LoadError
  warn "Could not require() YARD! Install with 'gem install yard' to get the 'yardoc' task"
end

Bundler::GemHelper.install_tasks

RSpec::Core::RakeTask.new(:spec)

RuboCop::RakeTask.new(:rubocop)

task default: %i[spec rubocop]

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
lumberaxe-0.1.5 Rakefile
lumberaxe-0.1.4 Rakefile
lumberaxe-0.1.3 Rakefile
lumberaxe-0.1.2 Rakefile
nitro_config-0.2.0 Rakefile
lumberaxe-0.1.1 Rakefile
lumberaxe-0.1.0 Rakefile
nitro_config-0.1.1 Rakefile
nitro_config-0.1.0 Rakefile