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.363 Rakefile
cryptum-0.0.362 Rakefile
cryptum-0.0.361 Rakefile
cryptum-0.0.360 Rakefile
cryptum-0.0.355 Rakefile
cryptum-0.0.354 Rakefile
cryptum-0.0.353 Rakefile
cryptum-0.0.352 Rakefile
cryptum-0.0.351 Rakefile
cryptum-0.0.350 Rakefile
cryptum-0.0.349 Rakefile
cryptum-0.0.348 Rakefile
cryptum-0.0.347 Rakefile
cryptum-0.0.346 Rakefile
cryptum-0.0.345 Rakefile
cryptum-0.0.344 Rakefile
cryptum-0.0.343 Rakefile
cryptum-0.0.342 Rakefile
cryptum-0.0.341 Rakefile
cryptum-0.0.339 Rakefile