Class: Haml::I18n::Extractor::Workflow

Inherits:
Object
  • Object
show all
Defined in:
lib/haml-i18n-extractor/workflow.rb

Instance Method Summary collapse

Constructor Details

#initialize(project_path) ⇒ Workflow

Returns a new instance of Workflow.



6
7
8
9
10
11
12
# File 'lib/haml-i18n-extractor/workflow.rb', line 6

def initialize(project_path)
  @project_path = project_path
  @prompter = Haml::I18n::Extractor::Prompter.new
  unless File.directory?(@project_path)
    raise Extractor::NotADirectory, "#{@project_path} needs to be a directory!"
  end
end

Instance Method Details

#filesObject



14
15
16
17
18
# File 'lib/haml-i18n-extractor/workflow.rb', line 14

def files
  @haml_files ||= Dir.glob(@project_path + "/**/*").select do |file|
   file.match /.haml$/
  end
end

#process_file?(file) ⇒ Boolean

Returns:

  • (Boolean)


26
27
28
29
# File 'lib/haml-i18n-extractor/workflow.rb', line 26

def process_file?(file)
  file_index = index_for(file)
  @prompter.process_file?(file, file_index)
end

#runObject



31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/haml-i18n-extractor/workflow.rb', line 31

def run
  start_message
  files.each do |haml_path|
    type = process_file?(haml_path)
    if type
      process(haml_path, type)
    else
      @prompter.not_processing(haml_path)
    end
  end
end_message
end

#start_messageObject



20
21
22
23
24
# File 'lib/haml-i18n-extractor/workflow.rb', line 20

def start_message
  file_count = files.size
  file_names = files.join("\n")
  @prompter.start_message(file_count, file_names)
end