Module: RubyGitCrypt::ClassMethods
- Included in:
- RubyGitCrypt
- Defined in:
- lib/ruby_git_crypt.rb
Instance Method Summary collapse
- #add_gpg_user(parameters = {}, invocation_options = {}) ⇒ Object
- #export_key(parameters = {}, invocation_options = {}) ⇒ Object
- #init(parameters = {}, invocation_options = {}) ⇒ Object
- #lock(parameters = {}, invocation_options = {}) ⇒ Object
- #status(parameters = {}, invocation_options = {}) ⇒ Object
- #unlock(parameters = {}, invocation_options = {}) ⇒ Object
Instance Method Details
#add_gpg_user(parameters = {}, invocation_options = {}) ⇒ Object
24 25 26 27 |
# File 'lib/ruby_git_crypt.rb', line 24 def add_gpg_user(parameters = {}, = {}) exec(RubyGitCrypt::Commands::AddGPGUser, parameters, ) end |
#export_key(parameters = {}, invocation_options = {}) ⇒ Object
29 30 31 32 |
# File 'lib/ruby_git_crypt.rb', line 29 def export_key(parameters = {}, = {}) exec(RubyGitCrypt::Commands::ExportKey, parameters, ) end |
#init(parameters = {}, invocation_options = {}) ⇒ Object
34 35 36 37 |
# File 'lib/ruby_git_crypt.rb', line 34 def init(parameters = {}, = {}) exec(RubyGitCrypt::Commands::Init, parameters, ) end |
#lock(parameters = {}, invocation_options = {}) ⇒ Object
39 40 41 42 |
# File 'lib/ruby_git_crypt.rb', line 39 def lock(parameters = {}, = {}) exec(RubyGitCrypt::Commands::Lock, parameters, ) end |
#status(parameters = {}, invocation_options = {}) ⇒ Object
44 45 46 47 |
# File 'lib/ruby_git_crypt.rb', line 44 def status(parameters = {}, = {}) exec(RubyGitCrypt::Commands::Status, parameters, ) end |
#unlock(parameters = {}, invocation_options = {}) ⇒ Object
49 50 51 52 |
# File 'lib/ruby_git_crypt.rb', line 49 def unlock(parameters = {}, = {}) exec(RubyGitCrypt::Commands::Unlock, parameters, ) end |