module RakeGPG
Constants
- VERSION
Public Class Methods
define_decrypt_task(opts = {}, &block)
click to toggle source
# File lib/rake_gpg.rb, line 9 def self.define_decrypt_task(opts = {}, &block) RakeGPG::Tasks::Encryption::Decrypt.define(opts, &block) end
define_encrypt_task(opts = {}, &block)
click to toggle source
# File lib/rake_gpg.rb, line 5 def self.define_encrypt_task(opts = {}, &block) RakeGPG::Tasks::Encryption::Encrypt.define(opts, &block) end
define_generate_key_task(opts = {}, &block)
click to toggle source
# File lib/rake_gpg.rb, line 13 def self.define_generate_key_task(opts = {}, &block) RakeGPG::Tasks::Keys::Generate.define(opts, &block) end
define_import_key_task(opts = {}, &block)
click to toggle source
# File lib/rake_gpg.rb, line 17 def self.define_import_key_task(opts = {}, &block) RakeGPG::Tasks::Keys::Import.define(opts, &block) end