Class: KRL_CMD::Deploy

Inherits:
Object
  • Object
show all
Defined in:
lib/deploy.rb

Class Method Summary collapse

Class Method Details

.go(options) ⇒ Object



3
4
5
6
7
8
# File 'lib/deploy.rb', line 3

def self.go(options)
  app = KRL_COMMON::get_app
  prod_version = options["version"] ? options["version"] : app.version
  app.production_version = prod_version
  puts "Deployed version: #{app.production_version}"
end