Sha256: de222fa4e9e857fb864b082521744314152f1ae6b69bf248719848882e72e364
Contents?: true
Size: 658 Bytes
Versions: 4
Compression:
Stored size: 658 Bytes
Contents
require 'bundler/gem_tasks' require 'rspec/core/rake_task' require 'yard' def shell(*args) puts "running: #{args.join(' ')}" system(args.join(' ')) end task :permissions do shell('rm -rf pkg/ tmp/' ) shell("chmod -v o+r,g+r * */* */*/* */*/*/* */*/*/*/* */*/*/*/*/*") shell("find . -type d -exec chmod o+x,g+x {} \\;") end task :build => :permissions YARD::Rake::YardocTask.new(:doc) do |t| t.files = %w(lib/**/*.rb exe/*.rb - README.md LICENSE) t.options.unshift('--title','"Sym – Symmetric Key Encryption for Your Data"') t.after = ->() { exec('open doc/index.html') } end RSpec::Core::RakeTask.new(:spec) task :default => :spec
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
arli-0.8.3 | Rakefile |
arli-0.7.0 | Rakefile |
arli-0.6.2 | Rakefile |
arli-0.6.1 | Rakefile |