mirror of
https://github.com/zhigang1992/sass.git
synced 2026-04-29 01:35:35 +08:00
11 lines
248 B
Ruby
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)") }
|