Sha256: 6e8cf7d63baa3c90e8ab9babc9bfb2677fa28bcf80292e56a7c2b5715d4d481f
Contents?: true
Size: 1.08 KB
Versions: 4
Compression:
Stored size: 1.08 KB
Contents
module Match class ChangePassword def self.update(params: nil, from: nil, to: nil) to ||= ChangePassword.ask_password(message: "New passphrase for Git Repo: ", confirm: false) from ||= ChangePassword.ask_password(message: "Old passphrase for Git Repo: ", confirm: true) GitHelper.clear_changes workspace = GitHelper.clone(params[:git_url], params[:shallow_clone], manual_password: from) Encrypt.new.clear_password(params[:git_url]) Encrypt.new.store_password(params[:git_url], to) message = "[fastlane] Changed passphrase" GitHelper.commit_changes(workspace, message, params[:git_url]) end def self.ask_password(message: "Passphrase for Git Repo: ", confirm: true) loop do password = ask(message.yellow) { |q| q.echo = "*" } if confirm password2 = ask("Type passphrase again: ".yellow) { |q| q.echo = "*" } if password == password2 return password end else return password end UI.error("Passhprases differ. Try again") end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
match-0.3.0 | lib/match/change_password.rb |
match-0.2.5 | lib/match/change_password.rb |
match-0.2.4 | lib/match/change_password.rb |
match-0.2.3 | lib/match/change_password.rb |