Sha256: ba63d6b73529d398c43f5bbdb536acd5e7fb777af0e6282fff174ec704f08451

Contents?: true

Size: 1.68 KB

Versions: 6

Compression:

Stored size: 1.68 KB

Contents

module Moft
  class StaticFile
    # The cache of last modification times [path] -> mtime.
    @@mtimes = Hash.new

    # Initialize a new StaticFile.
    #
    # site - The Site.
    # base - The String path to the <source>.
    # dir  - The String path between <source> and the file.
    # name - The String filename of the file.
    def initialize(site, base, dir, name)
      @site = site
      @base = base
      @dir  = dir
      @name = name
    end

    # Returns source file path.
    def path
      File.join(@base, @dir, @name)
    end

    # Obtain destination path.
    #
    # dest - The String path to the destination dir.
    #
    # Returns destination file path.
    def destination(dest)
      if (@dir[0..1] == '..')
        File.join(dest, @dir[3..-1], @name)
      else
        File.join(dest, @dir, @name)
      end
    end

    # Returns last modification time for this file.
    def mtime
      File.stat(path).mtime.to_i
    end

    # Is source path modified?
    #
    # Returns true if modified since last write.
    def modified?
      @@mtimes[path] != mtime
    end

    # Write the static file to the destination directory (if modified).
    #
    # dest - The String path to the destination dir.
    #
    # Returns false if the file was not modified since last time (no-op).
    def write(dest)
      dest_path = destination(dest)

      return false if File.exist?(dest_path) and !modified?
      @@mtimes[path] = mtime

      FileUtils.mkdir_p(File.dirname(dest_path))
      FileUtils.cp(path, dest_path)

      true
    end

    # Reset the mtimes cache (for testing purposes).
    #
    # Returns nothing.
    def self.reset_cache
      @@mtimes = Hash.new
      nil
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
moft-1.0.5 lib/moft/static_file.rb
moft-1.0.4 lib/moft/static_file.rb
moft-1.0.3 lib/moft/static_file.rb
moft-1.0.2.1 lib/moft/static_file.rb
moft-1.0.2 lib/moft/static_file.rb
moft-1.0.1 lib/moft/static_file.rb