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.
# File lib/jekyll/static_file.rb, line 12 def initialize(site, base, dir, name) @site = site @base = base @dir = dir @name = name end
Obtain destination path.
dest - The String path to the destination dir.
Returns destination file path.
# File lib/jekyll/static_file.rb, line 29 def destination(dest) File.join(dest, @dir, @name) end
Is source path modified?
Returns true if modified since last write.
# File lib/jekyll/static_file.rb, line 41 def modified? @@mtimes[path] != mtime end
Returns last modification time for this file.
# File lib/jekyll/static_file.rb, line 34 def mtime File.stat(path).mtime.to_i end
Returns source file path.
# File lib/jekyll/static_file.rb, line 20 def path File.join(@base, @dir, @name) 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).
# File lib/jekyll/static_file.rb, line 50 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
Generated with the Darkfish Rdoc Generator 2.