Sha256: 6c73fca26d473608e03679f5618cfa13991941f86a5a67ec7b7c011c12c89ec2

Contents?: true

Size: 1.24 KB

Versions: 6

Compression:

Stored size: 1.24 KB

Contents

#
# Author:: Joshua Timberman (<joshua@getchef.com>)
# Author:: Graeme Mathieson (<mathie@woss.name>)
#
# Copyright 2011-2013, Opscode, Inc.
# Copyright 2014, Chef Software, Inc <legal@getchef.com>
#
# 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 'chef/provider/package'
require 'chef/resource/package'

class Chef
  class Resource
    class HomebrewPackage < Chef::Resource::Package

      provides :homebrew_package, os: "mac_os_x"

      def initialize(name, run_context=nil)
        super
        @resource_name = :homebrew_package
        @homebrew_user = nil
      end

      def homebrew_user(arg=nil)
        set_or_return(
            :homebrew_user,
            arg,
            :kind_of => [ String, Integer ]
        )
      end

    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
chef-12.0.1-x86-mingw32 lib/chef/resource/homebrew_package.rb
chef-12.0.1 lib/chef/resource/homebrew_package.rb
chef-12.0.0-x86-mingw32 lib/chef/resource/homebrew_package.rb
chef-12.0.0 lib/chef/resource/homebrew_package.rb
chef-12.0.0.rc.0-x86-mingw32 lib/chef/resource/homebrew_package.rb
chef-12.0.0.rc.0 lib/chef/resource/homebrew_package.rb