Class: Vx::ServiceConnector::Github::Files

Inherits:
Struct
  • Object
show all
Defined in:
lib/vx/service_connector/github/files.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#repoObject

Returns the value of attribute repo

Returns:

  • (Object)

    the current value of repo



6
7
8
# File 'lib/vx/service_connector/github/files.rb', line 6

def repo
  @repo
end

#sessionObject

Returns the value of attribute session

Returns:

  • (Object)

    the current value of session



6
7
8
# File 'lib/vx/service_connector/github/files.rb', line 6

def session
  @session
end

Instance Method Details

#get(sha, path) ⇒ Object



8
9
10
11
12
13
14
15
16
# File 'lib/vx/service_connector/github/files.rb', line 8

def get(sha, path)
  begin
    file = session.contents repo.full_name, ref: sha, path: path
    ::Base64.decode64 file.content
  rescue ::Exception => e
    $stderr.puts "ERROR: #{e.inspect}"
    nil
  end
end