forked from thoughtbot/bourbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bourbon.gemspec
39 lines (38 loc) · 1.26 KB
/
bourbon.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
30
31
32
33
34
35
36
37
38
39
$:.push File.expand_path("../lib", __FILE__)
require "bourbon/version"
Gem::Specification.new do |s|
s.add_development_dependency "aruba", "~> 0.6.2"
s.add_development_dependency "css_parser", "~> 1.4.1"
s.add_development_dependency "rake", "~> 11.1.2"
s.add_development_dependency "rspec", "~> 3.4.0"
s.add_development_dependency "scss_lint", "0.48.0"
s.add_runtime_dependency "sass", "~> 3.4.22"
s.add_runtime_dependency "thor", "~> 0.19.1"
s.authors = [
"Christian Reuter",
"Damian Galarza",
"Gabe Berke-Williams",
"Hugo Giraudel",
"Joshua Ogle",
"Kyle Fiedler",
"Phil LaPier",
"Reda Lemeden",
"Tyson Gach",
"Will McMahan"
]
s.description = <<-DESC
Bourbon is a library of pure Sass mixins and functions that are designed to
make you a more efficient developer.
DESC
s.email = "[email protected]"
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.files = `git ls-files`.split("\n")
s.homepage = "http://bourbon.io"
s.license = "MIT"
s.name = "bourbon"
s.platform = Gem::Platform::RUBY
s.require_paths = ["lib"]
s.summary = "A lightweight Sass tool set."
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.version = Bourbon::VERSION
end