Class: ThemeCheck::FileSystemStorage

Inherits:
Storage
  • Object
show all
Defined in:
lib/theme_check/file_system_storage.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Storage

#versioned?

Constructor Details

#initialize(root, ignored_patterns: []) ⇒ FileSystemStorage

Returns a new instance of FileSystemStorage.



8
9
10
11
12
# File 'lib/theme_check/file_system_storage.rb', line 8

def initialize(root, ignored_patterns: [])
  @root = Pathname.new(root)
  @ignored_patterns = ignored_patterns
  @files = {}
end

Instance Attribute Details

#rootObject (readonly)

Returns the value of attribute root.



6
7
8
# File 'lib/theme_check/file_system_storage.rb', line 6

def root
  @root
end

Instance Method Details

#directoriesObject



50
51
52
53
54
# File 'lib/theme_check/file_system_storage.rb', line 50

def directories
  @directories ||= glob('*')
    .select { |f| File.directory?(f) }
    .map { |f| f.relative_path_from(@root).to_s }
end

#filesObject



44
45
46
47
48
# File 'lib/theme_check/file_system_storage.rb', line 44

def files
  @file_array ||= glob("**/*")
    .reject { |path| File.directory?(path) }
    .map { |path| path.relative_path_from(@root).to_s }
end

#mkdir(relative_path) ⇒ Object



38
39
40
41
42
# File 'lib/theme_check/file_system_storage.rb', line 38

def mkdir(relative_path)
  return if file_exists?(relative_path)
  reset_memoizers
  file(relative_path).mkpath
end

#path(relative_path) ⇒ Object



18
19
20
# File 'lib/theme_check/file_system_storage.rb', line 18

def path(relative_path)
  @root.join(relative_path)
end

#read(relative_path) ⇒ Object



22
23
24
# File 'lib/theme_check/file_system_storage.rb', line 22

def read(relative_path)
  file(relative_path).read(mode: 'rb', encoding: 'UTF-8')
end

#relative_path(absolute_path) ⇒ Object



14
15
16
# File 'lib/theme_check/file_system_storage.rb', line 14

def relative_path(absolute_path)
  Pathname.new(absolute_path).relative_path_from(@root).to_s
end

#remove(relative_path) ⇒ Object



33
34
35
36
# File 'lib/theme_check/file_system_storage.rb', line 33

def remove(relative_path)
  file(relative_path).delete
  reset_memoizers
end

#write(relative_path, content) ⇒ Object



26
27
28
29
30
31
# File 'lib/theme_check/file_system_storage.rb', line 26

def write(relative_path, content)
  reset_memoizers unless file_exists?(relative_path)

  file(relative_path).dirname.mkpath unless file(relative_path).dirname.directory?
  file(relative_path).write(content, mode: 'w+b', encoding: 'UTF-8')
end