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.466 Rakefile
cryptum-0.0.465 Rakefile
cryptum-0.0.464 Rakefile
cryptum-0.0.463 Rakefile
cryptum-0.0.462 Rakefile
cryptum-0.0.461 Rakefile
cryptum-0.0.460 Rakefile
cryptum-0.0.459 Rakefile
cryptum-0.0.458 Rakefile
cryptum-0.0.457 Rakefile
cryptum-0.0.456 Rakefile
cryptum-0.0.455 Rakefile
cryptum-0.0.454 Rakefile
cryptum-0.0.453 Rakefile
cryptum-0.0.452 Rakefile
cryptum-0.0.451 Rakefile
cryptum-0.0.450 Rakefile
cryptum-0.0.449 Rakefile
cryptum-0.0.448 Rakefile
cryptum-0.0.447 Rakefile