gulp-compass uses the config css and scss to determine the input files and output files, but a more-gulp way should be:
gulp.src('path/to/*.scss')
.pipe(compass({ /* settings other than input and output folder */)
.pipe(gulp.dest('path/to/.css')
I highly recommend gulp-compass change to this paradigm.