-
Notifications
You must be signed in to change notification settings - Fork 0
/
semantic-rainbow.gemspec
26 lines (21 loc) · 998 Bytes
/
semantic-rainbow.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'semantic-rainbow/version'
Gem::Specification.new do |s|
s.name = "semantic-rainbow"
s.version = Semantic::Rainbow::VERSION
s.authors = ["Brandon J McKay"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/brandonjmckay/semantic-rainbow"
s.summary = %q{Simple SASS colour variables.}
s.description = %q{A full range of HSL, and Pantone values made into easy-to-use SASS variables.}
s.license = "MIT"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "bundler", "~> 1.3"
s.add_development_dependency "rake"
s.add_runtime_dependency 'railties', '>= 3.1.1'
s.add_runtime_dependency 'sass-rails', '>= 3.1.1'
end