Files
sass/ext/extconf.rb
2010-08-22 21:06:28 -07:00

11 lines
248 B
Ruby

root = File.expand_path("../..", __FILE__)
File.open(File.expand_path("lib/sass/root.rb", root), "w") do |f|
f << <<-RUBY
module Sass
ROOT_DIR = #{root.inspect}
end
RUBY
end
File.open('Makefile', 'w') { |f| f.puts("install:\n\t$(exit 0)") }