-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvital.gemspec
More file actions
23 lines (18 loc) · 871 Bytes
/
vital.gemspec
File metadata and controls
23 lines (18 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vital/version'
Gem::Specification.new do |spec|
spec.name = 'vital'
spec.version = Vital::VERSION
spec.authors = ['Body Taing', 'Fabio Rehm']
spec.email = ['btaing@doximity.com', 'frehm@doximity.com']
spec.summary = 'A minimally invasive CSS framework for modern web applications.'
spec.homepage = 'https://doximity.github.io/vital/'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|docs|icons)/}) }
spec.require_paths = ['lib']
spec.add_dependency 'sass', '>= 3.4'
spec.add_development_dependency "dox-style", "~> 1.0.16"
spec.add_development_dependency 'bundler', '~> 1.11'
spec.add_development_dependency 'rake', '~> 10.0'
end