Sha256: 4887bb11417fe4ece3d49cacedab47c7e73b7b0ab2a22dcd1ca82ce83329537c
Contents?: true
Size: 800 Bytes
Versions: 1
Compression:
Stored size: 800 Bytes
Contents
module HackerOne module Client class Program delegate :handle, to: :attributes def self.find(program_handle_we_want) my_programs.find do |program| program.handle == program_handle_we_want end end def initialize(program) @program = program end def id @program[:id] end def attributes OpenStruct.new(@program[:attributes]) end private def self.my_programs @my_programs ||= begin response = HackerOne::Client::Api.hackerone_api_connection.get do |req| req.url "me/programs" end data = HackerOne::Client::Api.parse_response(response) data.map { |program| self.new(program) } end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hackerone-client-0.4.0 | lib/hackerone/client/program.rb |