Sha256: ad9ef22e53c1cf47814137f555c208b9a879123d2ba8f16525ec7b9a826c0fd1

Contents?: true

Size: 751 Bytes

Versions: 1

Compression:

Stored size: 751 Bytes

Contents

require 'bib/opsworks/composer'
require 'bib/opsworks/newrelic'
require 'bib/opsworks/google'
require 'bib/opsworks/version'

class BibOpsworks

  def initialize
  end
  
  def copy_composer(release_path, deploy_user)
    composer = Bib::Opsworks::Composer.new
    composer.copy_vendor(release_path, deploy_user)
  end

  def newrelic_publish_deployment(app_name, deploy_data, newrelic_api_key)
    newrelic = Bib::Opsworks::Newrelic.new
    newrelic.publish_deployment(app_name, deploy_data, newrelic_api_key)
  end

  def google_publish_deployment(app_name, deploy_data, google_ident)
    google = Bib::Opsworks::Google.new
    google.publish_deployment(app_name, deploy_data, google_ident)
  end

  def version
    Bib::Opsworks::VERSION
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
BibOpsworks-0.1.2 lib/bib/opsworks.rb