Sha256: 02526a4f8dbab30c6205cdb23fc69c980e19dc7b7ec8374b74acf49482d69072

Contents?: true

Size: 564 Bytes

Versions: 13

Compression:

Stored size: 564 Bytes

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

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

desc 'Test the attr_encrypted gem.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  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.markdown')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

13 entries across 13 versions & 3 rubygems

Version Path
sevenwire-attr_encrypted-1.0.8 Rakefile
sevenwire-attr_encrypted-1.1.0 Rakefile
shuber-attr_encrypted-1.0.0 Rakefile
shuber-attr_encrypted-1.0.1 Rakefile
shuber-attr_encrypted-1.0.2 Rakefile
shuber-attr_encrypted-1.0.3 Rakefile
shuber-attr_encrypted-1.0.4 Rakefile
shuber-attr_encrypted-1.0.5 Rakefile
shuber-attr_encrypted-1.0.6 Rakefile
shuber-attr_encrypted-1.0.7 Rakefile
shuber-attr_encrypted-1.0.8 Rakefile
attr_encrypted-1.0.9 Rakefile
attr_encrypted-1.0.8 Rakefile