-require 'migrate'
+require "migrate"
class RemoveSegments < ActiveRecord::Migration
def self.up
cmd = "db/migrate/008_remove_segments_helper"
src = "#{cmd}.cc"
if !File.exist?(cmd) || File.mtime(cmd) < File.mtime(src)
- system('c++ -O3 -Wall `mysql_config --cflags --libs` ' +
+ system("c++ -O3 -Wall `mysql_config --cflags --libs` " +
"#{src} -o #{cmd}") || fail
end