Method: Spaceship::Client#load_session_from_file
- Defined in:
- spaceship/lib/spaceship/client.rb
#load_session_from_file ⇒ Object
627 628 629 630 631 632 633 634 635 636 637 638 639 |
# File 'spaceship/lib/spaceship/client.rb', line 627 def load_session_from_file begin if File.exist?() puts("Loading session from '#{}'") if Spaceship::Globals.verbose? @cookie.load() return true end rescue => ex puts(ex.to_s) puts("Continuing with normal login.") end return false end |