Merge commit 'f6948d1d58818ef8babce8f8f9d775562d7cd7ef' into edge

* commit 'f6948d1d58818ef8babce8f8f9d775562d7cd7ef':
  rails 2.3 compass installer template. makes installing and configuring compass a breeze.
This commit is contained in:
Chris Eppstein 2009-06-20 13:52:26 -07:00
commit 4c609f7764

View File

@ -0,0 +1,101 @@
# =================================================================
# Compass Ruby on Rails Installer (template) v.1.0
# written by Derek Perez (derek@derekperez.com)
# -----------------------------------------------------------------
# NOTE: This installer is designed to work as a Rails template,
# and can only be used with Rails 2.3+.
# -----------------------------------------------------------------
# Copyright (c) 2009 Derek Perez
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
# =================================================================
logo = <<LOGO
MMMMMMMMMMHMt
MMMMMj=+=+=Mt
MMi++=+=+=+Mt
~;;!!!;!!;!= :;!!;!!;!;;> !!;!H!!;;!!;!;!i!!;!!;!! !!;!Xj;!!;!!;;t !!;;!!;!!;;!! ;;!!;!!;!;! !;!;!;!!;!;Y M=+=iK=X+++Mt
;!!!;j! +!;!!;> ;!;!;i! !i!;!;> ;;;!;!= c!;!;;!!i i;;!;! ;!;!;;>! c;!!;; ;;!;j t;!;! ~!;!! c!;!; ;!!; !!;!!c N+=YXMMt++=Mt
;!!;> ;!;; ;!;!! ;;!;i !;!;; ;!;;!> ';!!; ;;!!; =!;!; ;;> ;!;!' ';!!;c ;t! =!!;!+ >: M=+=+j++++MMt
;!;; ;!;;> +!!;! ;!;;; >!!;! ;;!;; ;!;;j ;!;; ic!;!;!;!;!t >!;!;!!!;;c Y;!;!;!;;;c! MMMc++++KMMMt
i!!;; ~!;!;+ +!;!; ;!;!+ >!;;! ;!!;; ;!;!j ;!;; ;!;!;!>i; ;;!;t :c;!;!;!;!+ 'c!;!!;!;!>
;!;;i j!;! ;;!;> >;!;! ;;!;+ >!!;; ;!;!; ;;!!; j!;!; ;;!;t ;!;!' >! +;!!; :;: J;;!;:
=!;!;> :!;!;> ;;!;!;! !!;!;! ;!;!> >!;!; ;;!!; ;!;;!;> ;!;!;;~ ;!!;= !!;!!! +!;;t Y!;;! =;!;+ !!;;;c
!!;!!;!;!;!;Y i;!!;!!;!;;!c !;;!= c!;!; +;!!; ;!;!N!;!;!;!;!! ~!;!!;!;!;!K!;;!' i;!;!;!;!!;!! i;;!;!;!;!;!;~
i'jcJ> ;tct! ''~ ': ': ;;!!i :''! >ccc+ !j !:tct~c ;tcc!>
;!;;i
;!;!i
;!+
Welcome to the Compass Installer for Ruby on Rails!
LOGO
puts logo
# css framework prompt
css_framework = ask("What CSS Framework do you want to use with Compass? (default: 'blueprint')")
css_framework = "blueprint" if css_framework.blank?
# sass storage prompt
sass_dir = ask("Where would you like to keep your sass files within your project? (default: 'app/stylesheets')")
sass_dir = "app/stylesheets" if sass_dir.blank?
# compiled css storage prompt
css_dir = ask("Where would you like Compass to store your compiled css files? (default: 'public/stylesheets/compiled')")
css_dir = "public/stylesheets/compiled" if css_dir.blank?
# define dependencies
gem "haml-edge", :lib => "haml"
gem "chriseppstein-compass", :source => "http://gems.github.com/", :lib => "compass"
# install and unpack
rake "gems:install GEM=haml-edge", :sudo => true
rake "gems:install GEM=chriseppstein-compass", :sudo => true
rake "gems:unpack GEM=chriseppstein-compass", :sudo => true
# load any compass framework plugins
if css_framework =~ /960/
gem "chriseppstein-compass-960-plugin", :source => "http://gems.github.com", :lib => "ninesixty"
rake "gems:install GEM=chriseppstein-compass-960-plugin", :sudo => true
rake "gems:unpack GEM=chriseppstein-compass-960-plugin", :sudo => true
css_framework = "960" # rename for command
plugin_require = "-r ninesixty"
end
# build out compass command
compass_command = "compass --rails -f #{css_framework} . --css-dir=#{css_dir} --sass-dir=#{sass_dir} "
compass_command << plugin_require if plugin_require
# integrate it!
run "haml --rails ."
run compass_command
puts "Compass (with #{css_framework}) is all setup, have fun!"