forked from north/north
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnorth.gemspec
More file actions
29 lines (24 loc) · 770 Bytes
/
north.gemspec
File metadata and controls
29 lines (24 loc) · 770 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
26
27
28
29
require './lib/north'
Gem::Specification.new do |s|
# Release Specific Information
s.version = North::VERSION
s.date = North::DATE
# Gem Details
s.name = "north"
s.rubyforge_project = "north"
s.description = %q{Really simple media queries in Sass}
s.summary = %q{An easy to use system for writing and managing media queries.}
s.authors = ["Sam Richard"]
s.email = ["sam@snug.ug"]
s.homepage = "https://github.com/snugug/north"
s.licenses = ["MIT"]
# Gem Files
s.files = ["README.md"]
s.files += ["CHANGELOG.md"]
s.files += Dir.glob("lib/**/*.*")
s.files += Dir.glob("north/**/*.*")
# Gem Bookkeeping
s.required_rubygems_version = ">= 1.3.6"
s.rubygems_version = %q{1.3.6}
s.add_dependency("sass", ["~>3.3.0.rc.3"])
end