Class: Jekyll::StaticFile

Inherits:
Object
  • Object
show all
Defined in:
lib/jekyll/static_file.rb

Constant Summary collapse

@@mtimes =

The cache of last modification times [path] -> mtime.

Hash.new

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(site, base, dir, name) ⇒ StaticFile

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.



12
13
14
15
16
17
# File 'lib/jekyll/static_file.rb', line 12

def initialize(site, base, dir, name)
  @site = site
  @base = base
  @dir  = dir
  @name = name
end

Class Method Details

.reset_cacheObject

Reset the mtimes cache (for testing purposes).

Returns nothing.



65
66
67
68
# File 'lib/jekyll/static_file.rb', line 65

def self.reset_cache
  @@mtimes = Hash.new
  nil
end

Instance Method Details

#destination(dest) ⇒ Object

Obtain destination path.

dest - The String path to the destination dir.

Returns destination file path.



29
30
31
# File 'lib/jekyll/static_file.rb', line 29

def destination(dest)
  File.join(dest, @dir, @name)
end

#modified?Boolean

Is source path modified?

Returns true if modified since last write.

Returns:

  • (Boolean)


41
42
43
# File 'lib/jekyll/static_file.rb', line 41

def modified?
  @@mtimes[path] != mtime
end

#mtimeObject

Returns last modification time for this file.



34
35
36
# File 'lib/jekyll/static_file.rb', line 34

def mtime
  File.stat(path).mtime.to_i
end

#pathObject

Returns source file path.



20
21
22
# File 'lib/jekyll/static_file.rb', line 20

def path
  File.join(@base, @dir, @name)
end

#write(dest) ⇒ Object

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).



50
51
52
53
54
55
56
57
58
59
60
# 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