-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathgrid-coordinates.gemspec
More file actions
25 lines (21 loc) · 944 Bytes
/
grid-coordinates.gemspec
File metadata and controls
25 lines (21 loc) · 944 Bytes
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
require './lib/grid-coordinates'
Gem::Specification.new do |s|
# Release Specific Information
s.version = GridCoordinates::VERSION
s.date = GridCoordinates::DATE
# Gem Details
s.name = "grid-coordinates"
s.description = %q{Highly configurable CSS Grid Framework written in Sass.}
s.summary = %q{Grid Coordinates is a highly configurable CSS Grid Framework written in Sass, and was inspired by 960.gs and The 1kb CSS Grid. Just plug-in your grid's coordinates (grid columns, grid width, gutter width) and Grid Coordinates will generate the styles.}
s.authors = ["Adam Stacoviak"]
s.email = "adam@stacoviak.com"
s.homepage = "http://grid-coordinates.com/"
# Gem Files
s.files = ["ABOUT.mdown"]
s.files += Dir.glob("lib/**/*.*")
s.files += Dir.glob("stylesheets/**/*.*")
# Gem Bookkeeping
s.required_rubygems_version = ">= 1.3.6"
s.rubygems_version = %q{1.3.6}
s.add_dependency("compass", [">= 0.11.5"])
end