Sha256: 7f19c903af161c8433b0849b59615d9862828c567ea02ceeffcb68c3c022cad1

Contents?: true

Size: 555 Bytes

Versions: 8

Compression:

Stored size: 555 Bytes

Contents

# frozen_string_literal: true

$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'app_info'
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'

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

task default: %w[spec rubocop]

task :doc do
  require 'yard'

  YARD::Rake::YardocTask.new do |t|
    t.files   = ['lib/**/*.rb', 'README.md', 'LICENSE']
    # t.options = ['--any', '--extra', '--opts'] # optional
    # t.stats_options = ['--list-undoc']         # optional
  end
end

task :rubocop do
  RuboCop::RakeTask.new
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
app-info-3.3.0 Rakefile
app-info-3.2.0 Rakefile
app-info-3.2.0.beta1 Rakefile
app-info-3.1.4 Rakefile
app-info-3.1.3 Rakefile
app-info-3.1.2 Rakefile
app-info-3.1.1 Rakefile
app-info-3.1.0 Rakefile