Method: Bl::Project#show

Defined in:
lib/bl/project.rb

#show(id) ⇒ Object



24
25
26
27
28
29
30
31
# File 'lib/bl/project.rb', line 24

def show(id)
  begin
    res = client.get("#{@url}/#{id}")
    print_response(res)
  rescue => e
    puts e.message
  end
end