Sha256: f4def4af69b3f9f54051c794f980a220688a1d38e9b0acd26dedd141442cd5a5

Contents?: true

Size: 427 Bytes

Versions: 224

Compression:

Stored size: 427 Bytes

Contents

# frozen_string_literal: true

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rdoc/task'
require 'rubocop/rake_task'

RSpec::Core::RakeTask.new(:spec)
RuboCop::RakeTask.new do |rubocop|
  config_file = '.rubocop.yml'
  rubocop.options = ['-E', '-S', '-c', config_file]
end

RDoc::Task.new do |rdoc|
  rdoc.rdoc_files.include('lib/**/*.rb')
  rdoc.rdoc_dir = 'rdoc'
end

task default: %i[spec rubocop rdoc]

Version data entries

224 entries across 224 versions & 1 rubygems

Version Path
cryptum-0.0.406 Rakefile
cryptum-0.0.405 Rakefile
cryptum-0.0.404 Rakefile
cryptum-0.0.403 Rakefile
cryptum-0.0.402 Rakefile
cryptum-0.0.401 Rakefile
cryptum-0.0.400 Rakefile
cryptum-0.0.399 Rakefile
cryptum-0.0.398 Rakefile
cryptum-0.0.397 Rakefile
cryptum-0.0.396 Rakefile
cryptum-0.0.395 Rakefile
cryptum-0.0.394 Rakefile
cryptum-0.0.393 Rakefile
cryptum-0.0.392 Rakefile
cryptum-0.0.389 Rakefile
cryptum-0.0.388 Rakefile
cryptum-0.0.387 Rakefile
cryptum-0.0.386 Rakefile
cryptum-0.0.385 Rakefile