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.384 Rakefile
cryptum-0.0.383 Rakefile
cryptum-0.0.382 Rakefile
cryptum-0.0.381 Rakefile
cryptum-0.0.380 Rakefile
cryptum-0.0.379 Rakefile
cryptum-0.0.378 Rakefile
cryptum-0.0.377 Rakefile
cryptum-0.0.376 Rakefile
cryptum-0.0.375 Rakefile
cryptum-0.0.374 Rakefile
cryptum-0.0.373 Rakefile
cryptum-0.0.372 Rakefile
cryptum-0.0.370 Rakefile
cryptum-0.0.369 Rakefile
cryptum-0.0.368 Rakefile
cryptum-0.0.367 Rakefile
cryptum-0.0.366 Rakefile
cryptum-0.0.365 Rakefile
cryptum-0.0.364 Rakefile