module XcodeInstaller::Helpers
Public Instance Methods
agent()
click to toggle source
# File lib/xcode-installer/helpers.rb, line 12 def agent unless @agent @agent = XcodeInstaller::Agent.new @agent.instance_eval do def username @username ||= ask "Username:" end def password @password ||= pw "Password:" end # def team # teams_by_name = {} # page.form_with(:name => 'saveTeamSelection').radiobuttons.each do |radio| # name = page.search("label[for=\"#{radio.dom_id}\"]").first.text.strip # teams_by_name[name] = radio.value # end # name = choose "Select a team:", *teams_by_name.keys # @team ||= teams_by_name[name] # end end end @agent end
password()
click to toggle source
# File lib/xcode-installer/helpers.rb, line 21 def password @password ||= pw "Password:" end
pluralize(n, singular, plural = nil)
click to toggle source
# File lib/xcode-installer/helpers.rb, line 41 def pluralize(n, singular, plural = nil) n.to_i == 1 ? "1 #{singular}" : "#{n} #{plural || singular + 's'}" end
try() { || ... }
click to toggle source
# File lib/xcode-installer/helpers.rb, line 45 def try return unless block_given? begin yield rescue UnsuccessfulAuthenticationError say_error "Could not authenticate with Apple Developer Center. Check that your username & password are correct, and that your membership is valid and all pending Terms of Service & agreements are accepted. If this problem continues, try logging into https://developer.apple.com/membercenter/ from a browser to see what's going on." and abort end end
username()
click to toggle source
# File lib/xcode-installer/helpers.rb, line 17 def username @username ||= ask "Username:" end