chef/cookbooks/poise-git/files/halite_gem/poise_git/git_client_providers/dummy.rb
Sebastian Kippe 54332db8de Use ruby-build for Mastodon, update cookbooks
This uses the ruby_build provider for Mastodon, installing Ruby 2.4.1
currently. It also updates some other cookbooks and the runlists.
2017-04-17 11:40:31 +02:00

80 lines
2.0 KiB
Ruby

#
# Copyright 2017, Noah Kantrowitz
#
# 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.
#
require 'poise_git/git_client_providers/base'
module PoiseGit
module GitClientProviders
# Inversion provider for the `poise_git_client` resource to use a fake Git,
# for use in unit tests.
#
# @since 1.0.0
# @see PoiseGit::Resources::PoiseGitClient::Resource
# @provides poise_git_client
class Dummy < Base
provides(:dummy)
# Enable by default on ChefSpec.
#
# @api private
def self.provides_auto?(node, _resource)
node.platform?('chefspec')
end
# Manual overrides for dummy data.
#
# @api private
def self.default_inversion_options(node, resource)
super.merge({
git_binary: '/git',
git_environment: nil,
})
end
# The `install` action for the `poise_git_client` resource.
#
# @return [void]
def action_install
# This space left intentionally blank.
end
# The `uninstall` action for the `poise_git_client` resource.
#
# @return [void]
def action_uninstall
# This space left intentionally blank.
end
# Path to the non-existent Git.
#
# @return [String]
def git_binary
options['git_binary']
end
# Environment for the non-existent Git.
#
# @return [String]
def git_environment
options['git_environment'] || super
end
end
end
end