Sha256: a23458538e7cdd2909f8c8cec8e03e530f7a2f04ddf801a8a59aeaa0b1169f15

Contents?: true

Size: 258 Bytes

Versions: 1

Compression:

Stored size: 258 Bytes

Contents

module RodeoClown
  module Deploy

    def self.on(options = {})
      deploy(options)
    end

    private

    def self.deploy(options)
      strategy = DeployStrategy.by_name(options[:strategy])
      strategy.do(options)
      strategy
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rodeo_clown-0.1.0 lib/rodeo_clown/deploy.rb