Sha256: 5d7213c69c2c93dea546b32f306bbd7a1ee3236f50d93f39cc707477863abd08
Contents?: true
Size: 1.66 KB
Versions: 4
Compression:
Stored size: 1.66 KB
Contents
# # Copyright 2013-2014 Chef Software, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # module Omnibus class Command::Publish < Command::Base namespace :publish # # Publish to S3. # # $ omnibus publish s3 buckethands pkg/chef* # method_option :acl, type: :string, desc: 'The accessibility of the uploaded packages', enum: %w(public private), default: 'private' desc 's3 BUCKET PATTERN', 'Publish to an S3 bucket' def s3(bucket, pattern) options[:bucket] = bucket publish(S3Publisher, pattern, options) end # # Publish to artifactory. # # $ omnibus publish artifactory libs-omnibus-local pkg/chef* # desc 'artifactory REPOSITORY PATTERN', 'Publish to an Artifactory instance' def artifactory(repository, pattern) options[:repository] = repository publish(ArtifactoryPublisher, pattern, options) end private # # Shortcut method for executing a publisher. # # @return [void] # def publish(klass, pattern, options) klass.publish(pattern, options) do |package| say("Uploaded '#{package.name}'", :green) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
omnibus-3.2.0 | lib/omnibus/cli/publish.rb |
omnibus-3.2.0.rc.3 | lib/omnibus/cli/publish.rb |
omnibus-3.2.0.rc.2 | lib/omnibus/cli/publish.rb |
omnibus-3.2.0.rc.1 | lib/omnibus/cli/publish.rb |