With coffee-includer you can finally include files with proper intendation.
npm install coffee-includer -g
main.coffee
foo = ->
bar()
#intend include statement according to current scope
#=include <path/to/file.coffee>
file.coffee
do awsome_things in coding unless
awsome_things is boring
output.coffee
foo = ->
bar()
#file.coffee contents is placed, where you need it!
do awsome_things in coding unless
awsome_things is boring
coffee-includer main.coffee ./build/output.coffee