forked from at-import/breakpoint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbreakpoint.gemspec
More file actions
30 lines (25 loc) · 909 Bytes
/
breakpoint.gemspec
File metadata and controls
30 lines (25 loc) · 909 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
30
require './lib/breakpoint'
Gem::Specification.new do |s|
# Release Specific Information
s.version = Breakpoint::VERSION
s.date = Breakpoint::DATE
# Gem Details
s.name = "breakpoint"
s.rubyforge_project = "breakpoint"
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 = ["Mason Wendell", "Sam Richard"]
s.email = ["mason@thecodingdesigner.com", "sam@snug.ug"]
s.homepage = "https://github.com/Team-Sass/breakpoint"
s.licenses = ["MIT", "GPL-2.0"]
# Gem Files
s.files = ["README.md"]
s.files += ["CHANGELOG.md"]
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("sass", [">=3.3"])
s.add_dependency("sassy-maps", ["<1.0.0"])
end