13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# File 'lib/ploy/command/publish.rb', line 13
def help
return <<helptext
usage: ploy publish [config.yml]
Examples:
$ ploy publish
$ ploy publish something.yml
Config Example:
---
bucket: bucketname
deploy_name: some-project
dist_dir: spec/resources/dist
prep_cmd: lineman build
prefix: /usr/local/someproject
upstart_files:
- spec/resources/conf/some-project-initfile
Summary:
The publish command takes a config YAML file as input, and uses that to construct a
debian package file and push it into a particular location in S3
helptext
end
|