Sha256: 5e15e1b2621b63f41056457546a418a5435e557aa11c37651a7af1220e584499
Contents?: true
Size: 1.28 KB
Versions: 3
Compression:
Stored size: 1.28 KB
Contents
require 'rest_client' require 'hashie' require 'active_support' require 'active_support/core_ext' module BugherdClient autoload :VERSION, 'bugherd_client/version' autoload :Client, 'bugherd_client/client' autoload :Errors, 'bugherd_client/errors' module Resources module V1 autoload :Base, 'bugherd_client/resources/v1/base' autoload :Organization, 'bugherd_client/resources/v1/organization' autoload :User, 'bugherd_client/resources/v1/user' autoload :Project, 'bugherd_client/resources/v1/project' autoload :Task, 'bugherd_client/resources/v1/task' autoload :Comment, 'bugherd_client/resources/v1/comment' end module V2 autoload :Base, 'bugherd_client/resources/v2/base' autoload :Organization, 'bugherd_client/resources/v2/organization' autoload :User, 'bugherd_client/resources/v2/user' autoload :Project, 'bugherd_client/resources/v2/project' autoload :Task, 'bugherd_client/resources/v2/task' autoload :Comment, 'bugherd_client/resources/v2/comment' autoload :Webhook, 'bugherd_client/resources/v2/webhook' autoload :Attachment, 'bugherd_client/resources/v2/attachment' end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
bugherd_client-0.0.10 | lib/bugherd_client.rb |
bugherd_client-0.0.9 | lib/bugherd_client.rb |
bugherd_client-0.0.8 | lib/bugherd_client.rb |