forked from at-import/Singularity-extras
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingularity-extras.gemspec
More file actions
29 lines (24 loc) · 1.03 KB
/
singularity-extras.gemspec
File metadata and controls
29 lines (24 loc) · 1.03 KB
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
# -*- encoding: utf-8 -*-
require './lib/singularity-extras'
Gem::Specification.new do |s|
# General Project Information
s.name = "singularity-extras"
s.version = SingularityExtras::VERSION
s.date = SingularityExtras::DATE
s.rubyforge_project = "singularity-extras"
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 = ["scott@scottkellum.com", "snugug@gmail.com"]
s.homepage = "http://singularity.gs"
# 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 with tools to write grids as functions, mixins, or class based objects."
# Files to Include
s.files = Dir.glob("lib/*.*")
s.files += Dir.glob("stylesheets/**/*.*")
# Dependent Gems
s.add_dependency 'singularitygs', "~> 1.2"
s.add_dependency 'modular-scale', "~> 2.0"
end