Class: Producer::Core::Actions::FileReplaceContent

Inherits:
Producer::Core::Action show all
Defined in:
lib/producer/core/actions/file_replace_content.rb

Constant Summary

Constants inherited from Producer::Core::Action

Producer::Core::Action::INSPECT_ARGUMENTS_SUM_LEN

Instance Attribute Summary

Attributes inherited from Producer::Core::Action

#arguments, #env, #options

Instance Method Summary collapse

Methods inherited from Producer::Core::Action

#initialize, #to_s

Constructor Details

This class inherits a constructor from Producer::Core::Action

Instance Method Details

#applyObject



14
15
16
# File 'lib/producer/core/actions/file_replace_content.rb', line 14

def apply
  fs.file_write @path, replaced_content
end

#nameObject



10
11
12
# File 'lib/producer/core/actions/file_replace_content.rb', line 10

def name
  'file_replace_content'
end

#replaced_contentObject



18
19
20
# File 'lib/producer/core/actions/file_replace_content.rb', line 18

def replaced_content
  fs.file_read(@path).gsub @pattern, @replacement
end

#setupObject



5
6
7
8
# File 'lib/producer/core/actions/file_replace_content.rb', line 5

def setup
  check_arguments_size! 3
  @path, @pattern, @replacement = arguments
end