# File lib/kwala/actions/cyclomatic_complexity.rb, line 51
  def build_action(context)
    args = [ "-o #{context.output_directory}" ]
    args << [ "-c -t"]
    args << [ "-y 0 -w 11 -e 15"]
    args << [ "-k 0 -s 30 -d 35"]
    args << [ "-i #{context.project_directory}" ]

    stdout_data = stderr_data = Array.new
    system("/usr/bin/env saikuro #{args.join(" ")}")
    @cyclo_count = get_cyclo_violations(context)
    @bound = context.ruby_files.size + context.test_files.size
  end