mattpolito/paratrooper

View on GitHub
lib/paratrooper.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'paratrooper/version'
require 'paratrooper/deploy'

module Paratrooper
  def self.deploy(app_name, options = {}, &block)
    Deploy.call(app_name, options, &block)
  end
end