Sha256: 454f1c6d6ffa21844c5330882c25c660b923dd0a09a17f73c87eb366a35a67db
Contents?: true
Size: 1.72 KB
Versions: 10
Compression:
Stored size: 1.72 KB
Contents
# # Copyright:: Copyright (c) 2012 Opscode, Inc. # License:: Apache License, Version 2.0 # # 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 # Fetcher implementation for projects on the filesystem class PathFetcher < Fetcher name :path def initialize(software) @name = software.name @source = software.source @project_dir = software.project_dir @version = software.version end def description s=<<-E source path: #{@source[:path]} local location: #{@project_dir} E end def rsync if OHAI.platform == "windows" # Robocopy's return code is 1 if it succesfully copies over the # files and 0 if the files are already existing at the destination sync_cmd = "robocopy #{@source[:path]}\\ #{@project_dir}\\ /MIR /S" shell = Mixlib::ShellOut.new(sync_cmd, :returns => [0, 1]) else sync_cmd = "rsync --delete -a #{@source[:path]}/ #{@project_dir}/" shell = Mixlib::ShellOut.new(sync_cmd) end shell.run_command end def clean # Here, clean will do the same as fetch: reset source to pristine state rsync end def fetch rsync end def fetch_required? true end end end
Version data entries
10 entries across 10 versions & 2 rubygems