forked from macdonst/callback-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile_helpers.rb
61 lines (47 loc) · 1.15 KB
/
file_helpers.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
require 'fileutils'
module FileHelpers
#
# Directory Paths
#
def default_input_directory
File.join root_directory, 'docs'
end
def default_output_directory
File.join root_directory, 'public'
end
def tmp_directory
File.join root_directory, 'tmp'
end
#
# Directory Operations
#
def copy_directory(source, destination)
FileUtils.rm_rf destination
FileUtils.mkdir_p File.dirname(destination)
FileUtils.cp_r source, destination
end
def move_directory(source, destination)
FileUtils.rm_rf destination
FileUtils.mkdir_p File.dirname(destination)
FileUtils.mv source, destination
end
def empty_tmp_directory
FileUtils.rm_rf tmp_directory
end
def empty_output_directory
FileUtils.rm_rf @output_directory
end
#
# File Operations
#
def each_file(directory)
directory_glob = Dir.glob(File.join(directory, '**', '*'))
directory_glob.sort.each do |entry|
yield(entry) unless File.directory?(entry) or entry !~ /md|html/
end
end
private
def root_directory
File.expand_path(File.join(File.dirname(__FILE__), '..'))
end
end