# File lib/pry/default_commands/gist.rb, line 106
        def process
          return Jist.login! if opts.present?(:login)

          if self.content =~ /\A\s*\z/
            raise CommandError, "Found no code to gist."
          end

          if opts.present?(:clip)
            perform_clipboard
          else
            perform_gist
          end
        end