class Heroploy::Config::RemoteConfig
Attributes
files[RW]
name[RW]
repository[RW]
Public Class Methods
new(name, attrs = {})
click to toggle source
# File lib/heroploy/config/remote_config.rb, line 8 def initialize(name, attrs = {}) @name = name @repository = attrs['repository'] @files = attrs['file'] ? [attrs['file']] : attrs['files'] end