Sha256: aa51433b02c8e4a3f629b5a6c289afaeb8eae67daff08c7a75dd0ae148c1997f

Contents?: true

Size: 581 Bytes

Versions: 2

Compression:

Stored size: 581 Bytes

Contents

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

class BibOpsworks

  def initialize
    puts "Bib-Opsworks says: hello world"
  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 version
    Bib::Opsworks::VERSION
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
BibOpsworks-0.0.9.3 lib/bib/opsworks.rb
BibOpsworks-0.0.9.2 lib/bib/opsworks.rb