Class: Transpec::CLI

Inherits:
Object
  • Object
show all
Defined in:
lib/transpec/cli.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCLI

Returns a new instance of CLI.



21
22
23
24
25
# File 'lib/transpec/cli.rb', line 21

def initialize
  @project = Project.new
  @configuration = Configuration.new
  @report = Report.new
end

Instance Attribute Details

#configurationObject (readonly)

Returns the value of attribute configuration.



15
16
17
# File 'lib/transpec/cli.rb', line 15

def configuration
  @configuration
end

#projectObject (readonly)

Returns the value of attribute project.



15
16
17
# File 'lib/transpec/cli.rb', line 15

def project
  @project
end

#reportObject (readonly)

Returns the value of attribute report.



15
16
17
# File 'lib/transpec/cli.rb', line 15

def report
  @report
end

Class Method Details

.run(args = ARGV) ⇒ Object



17
18
19
# File 'lib/transpec/cli.rb', line 17

def self.run(args = ARGV)
  new.run(args)
end

Instance Method Details

#convert_file(file_path, runtime_data = nil) ⇒ Object



62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/transpec/cli.rb', line 62

def convert_file(file_path, runtime_data = nil)
  puts "Converting #{file_path}"

  converter = Converter.new(@configuration, @project.rspec_version, runtime_data, @report)
  converter.convert_file!(file_path)

  @report.context_errors.concat(converter.context_errors)

  converter.context_errors.each do |error|
    warn_invalid_context_error(error)
  end
rescue Parser::SyntaxError => error
  @report.syntax_errors << error
  warn_syntax_error(error)
end

#process(paths) ⇒ Object



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/transpec/cli.rb', line 45

def process(paths)
  runtime_data = nil

  unless @configuration.skip_dynamic_analysis?
    puts 'Copying the project for dynamic analysis...'
    DynamicAnalyzer.new(rspec_command: @configuration.rspec_command) do |analyzer|
      puts "Running dynamic analysis with command \"#{analyzer.rspec_command}\"..."
      runtime_data = analyzer.analyze(paths)
    end
    puts
  end

  FileFinder.find(paths).each do |file_path|
    convert_file(file_path, runtime_data)
  end
end

#run(args) ⇒ Object



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/transpec/cli.rb', line 27

def run(args)
  begin
    paths = OptionParser.new(@configuration).parse(args)
    fail_if_should_not_continue!
  rescue => error
    warn error.message
    return false
  end

  process(paths)

  display_summary
  generate_commit_message
  display_final_guide

  true
end