public
Description: Sass Port of 960.gs as part of the Compass Stylesheet Framework.
Homepage: http://compass-style.org/
Clone URL: git://github.com/chriseppstein/compass-960-plugin.git
compass-960-plugin / Rakefile
100644 22 lines (18 sloc) 0.75 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'fileutils'
require 'sass'
 
begin
  require 'echoe'
 
  Echoe.new('compass-960-plugin', open('VERSION').read) do |p|
    # p.rubyforge_name = '960'
    p.summary = "Compass compatible Sass port of 960.gs."
    p.description = "The 960 Grid System is an effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. http://960.gs/"
    p.url = "http://github.com/chriseppstein/compass-960-plugin"
    p.author = ['Chris Eppstein']
    p.email = "chris@eppsteins.net"
    p.dependencies = ["chriseppstein-compass"]
    p.has_rdoc = false
  end
 
rescue LoadError => boom
  puts "You are missing a dependency required for meta-operations on this gem."
  puts "#{boom.to_s.capitalize}."
end