forked from at-import/breakpoint
-
Notifications
You must be signed in to change notification settings - Fork 6
/
breakpoint.gemspec
29 lines (24 loc) · 879 Bytes
/
breakpoint.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
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 = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/Team-Sass/breakpoint"
# Gem Files
s.files = ["README.markdown"]
s.files += ["CHANGELOG.markdown"]
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.2.0"])
s.add_dependency("compass", [">= 0.12.1"])
end