Sha256: 6ad63313f27ec867469c5ac5befd0f80bf6164546d15f4f42578043d359c5569

Contents?: true

Size: 617 Bytes

Versions: 6

Compression:

Stored size: 617 Bytes

Contents

# frozen_string_literal: true

require 'rake/testtask'
require 'rdoc/task'
require "bundler/gem_tasks"

desc 'Test the attr_encrypted gem.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.warning = false
  t.verbose = true
end

desc 'Generate documentation for the attr_encrypted gem.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'attr_encrypted'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

desc 'Default: run unit tests.'
task :default => :test

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
attr_encrypted-4.1.1 Rakefile
attr_encrypted-4.1.0 Rakefile
attr_encrypted-4.0.0 Rakefile
powerhome-attr_encrypted-1.2.0 Rakefile
powerhome-attr_encrypted-1.1.0 Rakefile
powerhome-attr_encrypted-1.0.1 Rakefile