Class: Vx::ServiceConnector::GitlabV6::Files

Inherits:
Struct
  • Object
show all
Defined in:
lib/vx/service_connector/gitlab_v6/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



4
5
6
# File 'lib/vx/service_connector/gitlab_v6/files.rb', line 4

def repo
  @repo
end

#sessionObject

Returns the value of attribute session

Returns:

  • (Object)

    the current value of session



4
5
6
# File 'lib/vx/service_connector/gitlab_v6/files.rb', line 4

def session
  @session
end

Instance Method Details

#get(sha, path) ⇒ Object



6
7
8
9
10
11
12
13
# File 'lib/vx/service_connector/gitlab_v6/files.rb', line 6

def get(sha, path)
  begin
    session.get("/projects/#{repo.id}/repository/commits/#{sha}/blob", filepath: path)
  rescue RequestError => e
    $stderr.puts "ERROR: #{e.inspect}"
    nil
  end
end