Sha256: 34e2a4aa0eee80a8b15bc87074a21dbb42457a705f1ec24118d15244d9ef45f5
Contents?: true
Size: 1.15 KB
Versions: 1
Compression:
Stored size: 1.15 KB
Contents
require 'aptible/auth' module Aptible module Api class Account < Resource has_many :apps has_many :databases has_many :disks has_many :services field :id field :type field :name field :handle field :number field :type field :activated, type: Aptible::Resource::Boolean field :syslog_host field :syslog_port field :created_at, type: Time field :updated_at, type: Time field :stripe_subscription_id def production? type == 'production' end # rubocop:disable PredicateName def has_subscription? !stripe_subscription_id.nil? end # rubocop:enable PredicateName def operations # TODO: Implement /accounts/:id/operations [] end def organization auth = Aptible::Auth::Organization.new(token: token, headers: headers) auth.find_by_url(links['organization'].href) end def self.generate_handle(organization_name, plan_id) rand = ('a'..'z').to_a.shuffle[0, 8].join "#{organization_name.parameterize}-#{plan_id}-#{rand}" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
aptible-api-0.5.4 | lib/aptible/api/account.rb |