Sha256: 41bc22ee55f8f603ce047e1773d37d551c03b72d63a5f4ad896d17a1f775f0f8
Contents?: true
Size: 372 Bytes
Versions: 5
Compression:
Stored size: 372 Bytes
Contents
module AirbrakeAPI class Project < AirbrakeAPI::Base def self.find(*args) setup options = args.extract_options! results = fetch(collection_path, options) raise AirbrakeError.new(results.errors.error) if results.errors results.projects.project end def self.collection_path '/data_api/v1/projects.xml' end end end
Version data entries
5 entries across 5 versions & 1 rubygems