Sha256: 7d084a7439c1d238eb0fae7f129d90106286fe21806effa66731136105e26cb5

Contents?: true

Size: 1.31 KB

Versions: 104

Compression:

Stored size: 1.31 KB

Contents

#
# Author:: Adam Jacob (<adam@opscode.com>)
# Copyright:: Copyright (c) 2008 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.
#

require 'chef/resource/file'
require 'chef/provider/cookbook_file'

class Chef
  class Resource
    class CookbookFile < Chef::Resource::File
      
      def initialize(name, run_context=nil)
        super
        @provider = Chef::Provider::CookbookFile
        @resource_name = :cookbook_file
        @action = "create"
        @source = ::File.basename(name)
        @cookbook = nil
      end
      
      def source(source_filename=nil)
        set_or_return(:source, source_filename, :kind_of => String)
      end
      
      def cookbook(cookbook_name=nil)
        set_or_return(:cookbook, cookbook_name, :kind_of => String)
      end

    end
  end
end

Version data entries

104 entries across 104 versions & 8 rubygems

Version Path
chef-0.10.4 lib/chef/resource/cookbook_file.rb
chef-0.10.4.rc.6 lib/chef/resource/cookbook_file.rb
chef-0.10.4.rc.5 lib/chef/resource/cookbook_file.rb
chef-0.10.4.rc.4 lib/chef/resource/cookbook_file.rb
chef-0.10.4.rc.3 lib/chef/resource/cookbook_file.rb
chef-0.10.4.rc.2 lib/chef/resource/cookbook_file.rb
chef-0.10.4.rc.1 lib/chef/resource/cookbook_file.rb
chef-0.10.2 lib/chef/resource/cookbook_file.rb
chef-0.9.18 lib/chef/resource/cookbook_file.rb
chef-0.10.0.qs.1 lib/chef/resource/cookbook_file.rb
chef-0.10.0.qs.0 lib/chef/resource/cookbook_file.rb
naked-chef-0.9.15.3 lib/chef/resource/cookbook_file.rb
chef-0.10.0 lib/chef/resource/cookbook_file.rb
chef-0.10.0.rc.2 lib/chef/resource/cookbook_file.rb
chef-0.10.0.rc.1 lib/chef/resource/cookbook_file.rb
rmm-chef-0.10.0.rc.0 lib/chef/resource/cookbook_file.rb
chef-0.10.0.rc.0 lib/chef/resource/cookbook_file.rb
chef-0.9.16 lib/chef/resource/cookbook_file.rb
chef-0.10.0.beta.10 lib/chef/resource/cookbook_file.rb
chef-0.10.0.beta.9 lib/chef/resource/cookbook_file.rb