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.446 Rakefile
cryptum-0.0.445 Rakefile
cryptum-0.0.444 Rakefile
cryptum-0.0.443 Rakefile
cryptum-0.0.442 Rakefile
cryptum-0.0.441 Rakefile
cryptum-0.0.440 Rakefile
cryptum-0.0.439 Rakefile
cryptum-0.0.438 Rakefile
cryptum-0.0.437 Rakefile
cryptum-0.0.436 Rakefile
cryptum-0.0.435 Rakefile
cryptum-0.0.434 Rakefile
cryptum-0.0.433 Rakefile
cryptum-0.0.432 Rakefile
cryptum-0.0.431 Rakefile
cryptum-0.0.430 Rakefile
cryptum-0.0.429 Rakefile
cryptum-0.0.428 Rakefile
cryptum-0.0.427 Rakefile