forked from at-import/Singularity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
singularitygs.gemspec
32 lines (27 loc) · 1.23 KB
/
singularitygs.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- encoding: utf-8 -*-
require './lib/singularitygs'
Gem::Specification.new do |s|
# General Project Information
s.name = "singularitygs"
s.version = SingularityGS::VERSION
s.date = SingularityGS::DATE
s.rubyforge_project = "singularitygs"
s.rubygems_version = "1.7.2"
s.required_rubygems_version = Gem::Requirement.new(">= 1.2")
# Author Information
s.authors = ["Scott Kellum", "Sam Richard"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://singularity.gs"
s.licenses = ["MIT", "GPL-3.0"]
# Project Description
s.description = "Advanced responsive grid system for Sass and Compass"
s.summary = "Singularity is a fluid grid system that can generate uniform columns as well as asymmetric and compound grids. It is designed to be extensable, adding additional outputs or grid generators are easy, and the core syntax is simple to build upon for custom input syntaxes."
# Files to Include
s.files = Dir.glob("lib/*.*")
s.files += Dir.glob("stylesheets/**/*.*")
s.files += Dir.glob("templates/**/*.*")
# Dependent Gems
s.add_dependency 'sass', ">= 3.2.1"
s.add_dependency 'compass', ">= 0.12.2"
s.add_dependency 'breakpoint', ">= 2.0.1"
end