Sha256: f572ec47ade5171238d75441c93b2f6bfbee01a95844d1a50a7dcc3df28ef69f
Contents?: true
Size: 410 Bytes
Versions: 3
Compression:
Stored size: 410 Bytes
Contents
#!/usr/bin/env ruby require 'deploy-context' require 'deploy-context/deploy' deployer = Context::DeployContext.new(Dir.pwd) if ARGV[0].nil? deployer.cycle else case ARGV[0] when 'once' puts "Parameter passe #{ARGV[0]}" deployer.cycle when 'always' while true do deployer.cycle end when 'bump' deployer.minor_bump else puts "Unkonown setting #{ARGV[0]}" end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
deploy-context-0.11.3 | bin/deploy-context |
deploy-context-0.11.2 | bin/deploy-context |
deploy-context-0.11.1 | bin/deploy-context |