-
Notifications
You must be signed in to change notification settings - Fork 5
/
ustyle.gemspec
31 lines (26 loc) · 1.18 KB
/
ustyle.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "ustyle/version"
Gem::Specification.new do |spec|
spec.name = "ustyle"
spec.version = Ustyle::VERSION
spec.authors = ["uSwitch Limited", "David Annez", "Ricardo Cerqueira", "Joe Green", "Thomas Britton", "Ivo Reis"]
spec.email = ["[email protected]", "[email protected]"]
spec.description = %q{uSwitch style guide}
spec.summary = %q{Pattern library for uSwitch}
spec.homepage = "http://ustyle.guide"
spec.license = "Apache-2.0"
spec.platform = Gem::Platform::RUBY
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "sass"
spec.add_dependency "autoprefixer-rails"
spec.add_dependency "mime-types"
spec.add_development_dependency "rake"
spec.add_development_dependency "aws-sdk", "~> 2.0"
spec.add_development_dependency "rb-fsevent"
spec.add_development_dependency "scss-lint", "0.35.0"
end