require "fileutils" module Reciper class NoTestOutput < RuntimeError end module Helpers def copy_file(filename, options={}) destination_dir = @ruby_app_path + "/" + (options[:to] || "") unless File.directory?(destination_dir) FileUtils.mkdir_p(destination_dir) end FileUtils.cp(@recipe_path + "/" + filename, destination_dir) @operations << [:copy, (options[:to] || "") + filename] end def run_tests(options={}) Dir.chdir(@ruby_app_path) do response = `rspec spec` if response =~ /([.FE]+)/ $1.split("").reject { |char| char == "." }.size else puts "Can't get any test output" fail NoTestOutput end end end def run_rake_task(task) Dir.chdir(@ruby_app_path) do spawn("rake #{task}", :err=> "/dev/null", :out => "/dev/null") Process.wait end $?.exitstatus == 0 end def copy_line_range(from, to, options={}) if options[:from_lines] from_lines = Range.new(options[:from_lines].first - 1, options[:from_lines].last - 1) else from_lines = (0..-1) end from_file_lines = File.open(@recipe_path + "/" + from, "r").readlines output_lines = File.read(@ruby_app_path + "/" + to).split("\n") original_output = output_lines.dup to_file_output = File.open(@ruby_app_path + "/" + to, "w") to_output = output_lines.insert(options[:to_line] - 1, from_file_lines.map(&:chomp).slice(from_lines)).flatten!.join("\n") to_file_output.write(to_output) to_file_output.close @operations << [:copy_range, to, original_output.join("\n")] end def rollback @operations.reverse.each do |operation| if operation[0] == :copy FileUtils.rm(@ruby_app_path + "/" + operation[1]) elsif operation[0] == :copy_range File.open(@ruby_app_path + "/" + operation[1], "w") { |file| file.write(operation[2]) } end end end end end