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

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(project_path) ⇒ Workflow

Returns a new instance of Workflow.



8
9
10
11
12
13
14
15
# File 'lib/haml-i18n-extractor/workflow.rb', line 8

def initialize(project_path)
  @extractors = []
  @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 Attribute Details

#extractorsObject (readonly)

Returns the value of attribute extractors.



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

def extractors
  @extractors
end

Instance Method Details

#filesObject



17
18
19
20
21
# File 'lib/haml-i18n-extractor/workflow.rb', line 17

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

#process_file?(file) ⇒ Boolean

Returns:

  • (Boolean)


29
30
31
32
# File 'lib/haml-i18n-extractor/workflow.rb', line 29

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

#runObject



34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/haml-i18n-extractor/workflow.rb', line 34

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



23
24
25
26
27
# File 'lib/haml-i18n-extractor/workflow.rb', line 23

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