Sha256: 36e4277424e0962074e26893de63c128fa0d539380f117d55b40809bd86dee6e

Contents?: true

Size: 1.06 KB

Versions: 5

Compression:

Stored size: 1.06 KB

Contents

# encoding: utf-8

module Nanoc::Extra

  # @deprecated Create a File instance directly and use that instead.
  class FileProxy

    instance_methods.each { |m| undef_method m unless m =~ /^__/ || m.to_s == 'object_id' }

    @@deprecation_warning_shown = false

    def initialize(path)
      @path = path
    end

    def freeze
    end

    def respond_to?(meth, include_all=false)
      file_instance_methods.include?(meth.to_sym)
    end

    def method_missing(sym, *args, &block)
      if !@@deprecation_warning_shown
        $stderr.puts 'WARNING: The :file attribute is deprecated and will be removed in a future version of nanoc. Instead of using this :file attribute, consider manually creating a File object when it’s needed, using the :content_filename, :meta_filename or :filename attributes.'
        @@deprecation_warning_shown = true
      end

      File.open(@path, 'r') { |io| io.__send__(sym, *args, &block) }
    end

  private

    def file_instance_methods
      @@file_instance_methods ||= Set.new(File.instance_methods.map { |m| m.to_sym })
    end

  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
nanoc-3.6.7 lib/nanoc/extra/file_proxy.rb
nanoc-3.6.6 lib/nanoc/extra/file_proxy.rb
nanoc-3.6.5 lib/nanoc/extra/file_proxy.rb
nanoc-3.6.4 lib/nanoc/extra/file_proxy.rb
nanoc-3.6.3 lib/nanoc/extra/file_proxy.rb