current_project

in lib/google/serverless/exec/gcloud.rb [112:122]


          def current_project
            unless defined? @current_project
              params = [
                "config", "list", "core/project", "--format=value(core.project)"
              ]
              @current_project = execute params, capture: true
              @current_project = nil if @current_project.empty?
            end
            @current_project
          end