An open API service indexing awesome lists of open source software.

https://github.com/willianvdv/hackerone-ruby

Get HackerOne resources in your app
https://github.com/willianvdv/hackerone-ruby

hackerone

Last synced: 10 months ago
JSON representation

Get HackerOne resources in your app

Awesome Lists containing this project

README

          

# Hackerone Ruby Bindings

HackerOne resources in your Ruby app. This is an experiment, don't use it.

## Installation

There are no installation instructions yet.

## Usage

To get an user from HackerOne you can do:
```lang=ruby
irb(main):001:0> Hackerone::User.find_by(username: 'wvdv')
=> #
```

To get a team from HackerOne you can do:
```lang=ruby
irb(main):001:0> Hackerone::Team.find_by(handle: 'security')
=> #
```

Fetch a published report
```lang=ruby
irb(main):001:0> Hackerone::Report.find_by(id: 192127)
=> #
```