Sha256: 25a93451424904a1cf0b7c309475387580d1e5c7d0203e886d8bd974a0d4b603
Contents?: true
Size: 800 Bytes
Versions: 10
Compression:
Stored size: 800 Bytes
Contents
if config['compass'] if recipes.include? 'rails 3.1' gem 'compass', :version => '~> 0.12.alpha.0' after_bundler do remove_file 'app/assets/stylesheets/application.css' create_file 'app/assets/stylesheets/application.css.sass' do <<-SASS //= require_self //= require_tree . @import compass @import _blueprint SASS end end else gem 'compass', :version => '~> 0.11' after_bundler do run 'compass init rails' end end else receipes.delete('compass') end __END__ name: Compass description: "Utilize Compass framework for SASS." author: ashley_woodard requires: [sass] run_after: [sass] exclusive: css_framework category: assets tags: [css] config: - compass: type: boolean prompt: Would you like to use Compass for stylesheets?
Version data entries
10 entries across 10 versions & 1 rubygems