Class: TTY::File::CreateFile

Inherits:
Object
  • Object
show all
Defined in:
lib/tty/file/create_file.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(base, relative_path, content, options = {}) ⇒ CreateFile

Returns a new instance of CreateFile.



11
12
13
14
15
16
17
# File 'lib/tty/file/create_file.rb', line 11

def initialize(base, relative_path, content, options = {})
  @base    = base
  @content = content
  @options = options
  @relative_path = convert_encoded_path(relative_path)
  @prompt  = TTY::Prompt.new
end

Instance Attribute Details

#baseObject (readonly)

Returns the value of attribute base.



9
10
11
# File 'lib/tty/file/create_file.rb', line 9

def base
  @base
end

#contentObject (readonly)

Returns the value of attribute content.



9
10
11
# File 'lib/tty/file/create_file.rb', line 9

def content
  @content
end

#optionsObject (readonly)

Returns the value of attribute options.



9
10
11
# File 'lib/tty/file/create_file.rb', line 9

def options
  @options
end

#promptObject (readonly)

Returns the value of attribute prompt.



9
10
11
# File 'lib/tty/file/create_file.rb', line 9

def prompt
  @prompt
end

#relative_pathObject (readonly)

Returns the value of attribute relative_path.



9
10
11
# File 'lib/tty/file/create_file.rb', line 9

def relative_path
  @relative_path
end

Instance Method Details

#callObject

Create a file



34
35
36
37
38
39
40
# File 'lib/tty/file/create_file.rb', line 34

def call
  detect_collision do
    FileUtils.mkdir_p(::File.dirname(relative_path))
    ::File.open(relative_path, 'wb') { |f| f.write(content) }
  end
  relative_path
end

#contextObject



19
20
21
# File 'lib/tty/file/create_file.rb', line 19

def context
  options[:context] || @base
end

#exist?Boolean

Returns:

  • (Boolean)


23
24
25
# File 'lib/tty/file/create_file.rb', line 23

def exist?
  ::File.exist?(relative_path)
end

#identical?Boolean

Returns:

  • (Boolean)


27
28
29
# File 'lib/tty/file/create_file.rb', line 27

def identical?
  ::File.binread(relative_path) == content
end