Sha256: fb991993cd41d724b8b0eff29dc38d3cb438131ffdd6cd2408ef4f58e637ab0e
Contents?: true
Size: 379 Bytes
Versions: 4
Compression:
Stored size: 379 Bytes
Contents
module Beanstalkify class DeploymentInfo def initialize(environment, archive) @environment, @archive = environment, archive end def to_yaml { 'app_name' => @archive.app_name, 'app_version' => @archive.version, 'env_name' => @environment.name, 'env_url' => @environment.url }.to_yaml end end end
Version data entries
4 entries across 4 versions & 1 rubygems